diff --git a/main.js b/main.js
index 8b8f37a..2fe6642 100644
--- a/main.js
+++ b/main.js
@@ -1,5 +1,62 @@
import App from './App'
+// 全局拦截选择图片,在文件进入上传列表前进行预过滤,从根本上解决“不合规图片在列表里转圈卡死”的问题
+uni.addInterceptor('chooseImage', {
+ success(res) {
+ const allowedExtensions = ['bmp', 'gif', 'jpg', 'jpeg', 'png'];
+ const validTempFilePaths = [];
+ const validTempFiles = [];
+ let hasInvalid = false;
+ let invalidExt = '';
+
+ res.tempFiles.forEach((file, index) => {
+ const path = file.path || res.tempFilePaths[index];
+ const cleanPath = path.split('?')[0];
+ const ext = cleanPath.split('.').pop().toLowerCase();
+
+ if (allowedExtensions.includes(ext)) {
+ validTempFiles.push(file);
+ validTempFilePaths.push(res.tempFilePaths[index]);
+ } else {
+ hasInvalid = true;
+ invalidExt = ext;
+ }
+ });
+
+ if (hasInvalid) {
+ uni.showToast({
+ title: `已过滤不支持的 .${invalidExt} 格式图片,请上传 png/jpg/jpeg/gif/bmp`,
+ icon: 'none',
+ duration: 3500
+ });
+ }
+
+ res.tempFilePaths = validTempFilePaths;
+ res.tempFiles = validTempFiles;
+ }
+});
+
+// 全局拦截文件上传,校验文件后缀是否在后端白名单中,预防非法格式报错
+uni.addInterceptor('uploadFile', {
+ invoke(args) {
+ const filePath = args.filePath;
+ if (filePath) {
+ const cleanPath = filePath.split('?')[0];
+ const ext = cleanPath.split('.').pop().toLowerCase();
+ const allowedExtensions = ['bmp', 'gif', 'jpg', 'jpeg', 'png', 'doc', 'docx', 'xls', 'xlsx', 'ppt', 'pptx', 'html', 'htm', 'txt', 'rar', 'zip', 'gz', 'bz2', 'mp4', 'avi', 'rmvb', 'pdf'];
+ if (!allowedExtensions.includes(ext)) {
+ uni.showToast({
+ title: `不支持 .${ext} 格式,请上传合规的文件或图片`,
+ icon: 'none',
+ duration: 3000
+ });
+ return false; // 拦截请求
+ }
+ }
+ return args;
+ }
+});
+
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json
index fb801c1..ee4e147 100644
--- a/node_modules/.package-lock.json
+++ b/node_modules/.package-lock.json
@@ -1,6 +1,6 @@
{
- "name": "sanchayibaoguang",
- "lockfileVersion": 2,
+ "name": "threeonecheck_小程序",
+ "lockfileVersion": 3,
"requires": true,
"packages": {
"node_modules/@babel/helper-string-parser": {
@@ -660,6 +660,18 @@
"resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
"dev": true
+ },
+ "node_modules/wot-design-uni": {
+ "version": "1.14.0",
+ "resolved": "https://registry.npmmirror.com/wot-design-uni/-/wot-design-uni-1.14.0.tgz",
+ "integrity": "sha512-FaBXtmxxAkZNZUxR2xeKBg/Agck+SPaFFFeCvbBzAFeqM/5m2Y/v/7te7rhMJpZFkMoAgtJR1yaWR0DnjOmTnA==",
+ "license": "MIT",
+ "engines": {
+ "HBuilderX": "^3.8.7"
+ },
+ "peerDependencies": {
+ "vue": ">=3.2.47"
+ }
}
}
}
diff --git a/node_modules/wot-design-uni/LICENSE b/node_modules/wot-design-uni/LICENSE
new file mode 100644
index 0000000..2cc76e8
--- /dev/null
+++ b/node_modules/wot-design-uni/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2023 weisheng
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/wot-design-uni/README.md b/node_modules/wot-design-uni/README.md
new file mode 100644
index 0000000..43f13e8
--- /dev/null
+++ b/node_modules/wot-design-uni/README.md
@@ -0,0 +1,148 @@
+
+
+
+Wot UI
+
+
+
+📱 一个基于vue3+Typescript构建,参照wot-design打造的uni-app组件库
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 🚀 文档网站 (推荐)
+ ✈️ 文档网站(cloudflare)
+ 🔥 文档网站 (Netlify)
+
+
+## ✨ 特性
+
+- 🎯 多平台覆盖,支持 微信小程序、支付宝小程序、钉钉小程序、H5、APP 等.
+- 🚀 70+ 个高质量组件,覆盖移动端主流场景.
+- 💪 使用 Typescript 构建,提供良好的组件类型系统.
+- 🌍 支持国际化,内置 15 种语言包.
+- 📖 提供丰富的文档和组件示例.
+- 🎨 支持修改 CSS 变量实现主题定制.
+- 🍭 支持暗黑模式.
+
+## 📱 预览
+
+扫描二维码访问演示,注意:因微信审核机制限制,当前的微信小程序示例可能不是最新版本,可以 clone 代码到本地预览。
+
+
+
+
+
+
+
+
+
+## 快速上手
+
+详细说明见 [快速上手](https://wot-ui.cn/guide/quick-use.html)。
+
+## 链接
+
+- [常见问题](https://wot-ui.cn/guide/common-problems.html)
+- [更新日志](https://wot-ui.cn/guide/changelog.html)
+- [Discussions 讨论区](https://github.com/Moonofweisheng/wot-design-uni/discussions)
+- [QQ 群](https://wot-ui.cn/guide/join-group.html)
+
+## 优秀案例
+
+[这里](https://wot-ui.cn/guide/cases.html)我们收集了一些优秀的案例,欢迎大家体验!
+
+我们也非常欢迎大家一起贡献优秀的 Demo 与案例,欢迎在此 [issue](https://github.com/Moonofweisheng/wot-design-uni/issues/16) 提交案例。
+
+## 周边生态
+
+| 项目 | 描述 |
+| ----------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- |
+| [wot-starter](https://github.com/wot-ui/wot-starter) | 基于 [vitesse-uni-app](https://github.com/uni-helper/vitesse-uni-app) 的 wot-ui 快速起手项目 |
+| [wot-ui-intellisense](https://github.com/wot-ui/wot-ui-intellisense) | wot-ui vscode 代码提示插件 |
+| [awesome-uni-app](https://github.com/uni-helper/awesome-uni-app) | 多端统一开发框架 uni-app 优秀开发资源汇总 |
+| [create-uni](https://github.com/uni-helper/create-uni) | 快速创建 uni-app 项目 |
+| [wot-starter-retail](https://github.com/Moonofweisheng/wot-starter-retail) | 基于 wot-ui 的 uni-app 零售行业模板 |
+| [Wot UI Snippets](https://marketplace.visualstudio.com/items?itemName=kiko.wot-design-uni-snippets) | wot-ui 代码块提示 |
+| [uni-mini-ci](https://github.com/Moonofweisheng/uni-mini-ci) | 一个 uni-app 小程序端构建后支持 CI(持续集成)的插件 |
+| [uni-mini-router](https://github.com/Moonofweisheng/uni-mini-router) | 一个基于 vue3 和 Typescript 的轻量级 uni-app 路由库 |
+| [unibest](https://github.com/unibest-tech/unibest) | 基于 wot-ui 的 uni-app 模板 |
+| [wot-design-uni AI 助手](https://www.coze.cn/store/bot/7347916532258701363) | 一个能回答你关于 wot-ui 组件库问题的智能助手 |
+| [uni-ku-root](https://github.com/uni-ku/root) | 一个模拟 App.vue 原有能力的根组件插件 |
+
+## 贡献指南
+
+修改代码请阅读我们的 [贡献指南](./.github/CONTRIBUTING.md)。
+
+使用过程中发现任何问题都可以提 [Issue](https://github.com/Moonofweisheng/wot-design-uni/issues) 给我们,当然,我们也非常欢迎你给我们发 [PR](https://github.com/Moonofweisheng/wot-design-uni/pulls)。
+
+## 贡献者们
+
+感谢以下所有给 Wot UI 贡献过代码的 [开发者](https://github.com/Moonofweisheng/wot-design-uni/graphs/contributors)。
+
+
+
+
+
+## 捐赠本项目
+
+开发一个 UI 组件库是一项耗时的工作,尤其是要多端适配。为此 Wot UI 经常肝到深夜 ……
+
+如果您认为 Wot UI 帮助到了您的开发工作,您可以捐赠 Wot UI 的研发工作,捐赠无门槛,哪怕是一杯可乐也好。
+
+捐赠后您的昵称、留言等将会展示在[捐赠榜单](https://wot-ui.cn/reward/donor.html)中。
+
+
+### 爱发电捐赠
+
+https://afdian.com/a/weisheng233
+
+### 扫码捐赠
+
+
+
+
+
+
+## 鸣谢
+
+- [wot-design](https://github.com/jd-ftf/wot-design-mini) - 感谢 wot-design 团队多年来的不断维护,让 wot-design-uni 能够站在巨人的肩膀上。
+- [uni-helper](https://github.com/uni-helper) - 感谢 uni-helper 团队提供的 uni-app 工具库,让 wot-design-uni 能够更方便地使用。
+- [捐赠者](https://wot-ui.cn/reward/donor.html) - 感谢所有捐赠者,是你们的捐赠让 wot-design-uni 能够更好地发展。
+
+
+## 开源协议
+
+本项目基于 [MIT](https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89) 协议,请自由地享受和参与开源。
+
+
+[](https://star-history.com/#Moonofweisheng/wot-design-uni&Date)
diff --git a/node_modules/wot-design-uni/attributes.json b/node_modules/wot-design-uni/attributes.json
new file mode 100644
index 0000000..20c7515
--- /dev/null
+++ b/node_modules/wot-design-uni/attributes.json
@@ -0,0 +1 @@
+{"wd-action-sheet/v-model":{"type":"boolean","description":"设置菜单显示隐藏\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/actions":{"type":"array","description":"菜单选项, default: [].\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/panels":{"type":"array","description":"自定义面板项,可以为字符串数组,也可以为对象数组,如果为二维数组,则为多行展示, default: [].\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/title":{"type":"string","description":"标题\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/cancel-text":{"type":"string","description":"取消按钮文案\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/close-on-click-action":{"type":"boolean","description":"点击选项后是否关闭菜单, default: true.\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/duration":{"type":"number","description":"动画持续时间, default: 200(ms).\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/z-index":{"type":"number","description":"菜单层级, default: 10.\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/lazy-render":{"type":"boolean","description":"弹层内容懒渲染,触发展示时才渲染内容, default: true.\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: true.\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#attributes)"},"wd-action-sheet/select":{"type":"event","description":"点击选项时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/open":{"type":"event","description":"弹出层打开时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/opened":{"type":"event","description":"弹出层打开动画结束时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/close":{"type":"event","description":"弹出层关闭时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/closed":{"type":"event","description":"弹出层关闭动画结束时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/click-modal":{"type":"event","description":"点击遮罩时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-action-sheet/cancel":{"type":"event","description":"点击取消按钮时触发\n\n[Docs](https://wot-ui.cn/component/action-sheet.html#events)"},"wd-avatar/src":{"type":"string","description":"图片地址\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/text":{"type":"string","description":"文本内容\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/icon":{"type":"string","description":"图标名称,使用 wd-icon 组件\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/size":{"type":"string | number","options":["large","medium","normal","small"],"description":"头像尺寸,支持预设尺寸或带单位的字符串, default: normal.\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/shape":{"type":"string","options":["round","square"],"description":"头像形状, default: round.\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/bg-color":{"type":"string","description":"背景颜色\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/color":{"type":"string","description":"文字颜色\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/alt":{"type":"string","description":"图片加载失败时的占位文本\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/mode":{"type":"string","description":"图片填充模式,同 uni-app image 组件的 mode, default: aspectFill.\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-attributes)"},"wd-avatar/click":{"type":"event","description":"点击头像时触发\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-events)"},"wd-avatar/error":{"type":"event","description":"图片加载失败时触发\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatar-events)"},"wd-avatar-group/max-count":{"type":"number","description":"最大显示数量\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup-attributes)"},"wd-avatar-group/cascading":{"type":"string","options":["left-up","right-up"],"description":"叠层方向\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup-attributes)"},"wd-avatar-group/shape":{"type":"string","options":["round","square"],"description":"统一设置头像形状, default: round.\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup-attributes)"},"wd-avatar-group/size":{"type":"string | number","options":["large","medium","normal","small"],"description":"统一设置头像尺寸, default: normal.\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup-attributes)"},"wd-avatar-group/collapse-avatar":{"type":"string","description":"超出最大数量时折叠头像显示的内容\n\n[Docs](https://wot-ui.cn/component/avatar.html#avatargroup-attributes)"},"wd-backtop/scroll-top":{"type":"number","description":"页面滚动距离\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/top":{"type":"number","description":"距离顶部多少距离时显示,单位`px`, default: 300.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/duration":{"type":"number","description":"返回顶部滚动时间,单位`ms`, default: 100.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/z-index":{"type":"number","description":"组件z-index属性, default: 10.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/icon-style":{"type":"string","description":"自定义`icon`样式\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/shape":{"type":"string","options":["square"],"description":"按钮形状, default: circle.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/bottom":{"type":"number","description":"距离屏幕底部的距离,单位`px`, default: 100.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-backtop/right":{"type":"number","description":"距离屏幕右边距离,单位`px`, default: 20.\n\n[Docs](https://wot-ui.cn/component/backtop.html#attributes)"},"wd-badge/v-model":{"type":"string | number","description":"显示值\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/max":{"type":"number","description":"最大值,超过最大值会显示 '{max}+',要求 value 是 Number 类型\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/top":{"type":"number","description":"为正时,角标向下偏移对应的像素\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/right":{"type":"number","description":"为正时,角标向左偏移对应的像素\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/is-dot":{"type":"boolean","description":"红色点状标注, default: false.\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/hidden":{"type":"boolean","description":"隐藏 badge, default: false.\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/type":{"type":"string","options":["primary","success","warning","danger","info"],"description":"类型\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/bg-color":{"type":"string","options":["各种颜色的css写法"],"description":"背景色\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-badge/show-zero":{"type":"boolean","description":"是否显示0, default: false.\n\n[Docs](https://wot-ui.cn/component/badge.html#attributes)"},"wd-button/type":{"type":"string","options":["primary","success","info","warning","error","text","icon"],"description":"按钮类型, default: primary.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/round":{"type":"boolean","description":"圆角按钮, default: true.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/plain":{"type":"boolean","description":"幽灵按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/hairline":{"type":"boolean","description":"是否细边框, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/loading":{"type":"boolean","description":"加载中按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/block":{"type":"boolean","description":"块状按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/size":{"type":"string","options":["small","medium","large"],"description":"按钮尺寸, default: medium.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/disabled":{"type":"boolean","description":"禁用按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/icon":{"type":"string","description":"图标类名\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/loading-color":{"type":"string","description":"加载图标颜色\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/open-type":{"type":"string","description":"微信开放能力\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/hover-stop-propagation":{"type":"boolean","description":"指定是否阻止本节点的祖先节点出现点击态, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/lang":{"type":"string","options":["zh_CN","zh_TW"],"description":"指定返回用户信息的语言,zh_CN 简体中文,zh_TW 繁体中文,en 英文, default: en.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/session-from":{"type":"string","description":"会话来源,open-type=\"contact\"时有效\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/send-message-title":{"type":"string","description":"会话内消息卡片标题,open-type=\"contact\"时有效, default: 当前标题.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/send-message-path":{"type":"string","description":"会话内消息卡片点击跳转小程序路径,open-type=\"contact\"时有效, default: 当前分享路径.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/send-message-img":{"type":"string","description":"会话内消息卡片图片,open-type=\"contact\"时有效, default: 截图.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/app-parameter":{"type":"string","description":"打开 APP 时,向 APP 传递的参数,open-type=launchApp 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/show-message-card":{"type":"boolean","description":"是否显示会话内消息卡片,设置此参数为 true,用户进入客服会话会在右下角显示\"可能要发送的小程序\"提示,用户点击后可以快速发送小程序消息,open-type=\"contact\"时有效, default: false.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/class-prefix":{"type":"string","description":"类名前缀,用于使用自定义图标,参见[icon](/component/icon#自定义图标), default: wd-icon.\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/button-id":{"type":"string","description":"按钮的唯一标识,可用于设置隐私同意授权按钮的 id\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/scope":{"type":"ButtonScope","options":["phoneNumber","userInfo"],"description":"支付宝小程序使用,当 open-type 为 getAuthorize 时有效。\n\n[Docs](https://wot-ui.cn/component/button.html#attributes)"},"wd-button/click":{"type":"event","description":"点击事件\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/getuserinfo":{"type":"event","description":"获取用户信息\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/contact":{"type":"event","description":"客服消息回调,open-type=\"contact\"时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/getphonenumber":{"type":"event","description":"获取用户手机号回调,open-type=getPhoneNumber 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/getrealtimephonenumber":{"type":"event","description":"实时获取用户手机号回调,open-type=getRealtimePhoneNumber 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/error":{"type":"event","description":"当使用开放能力时,发生错误的回调,open-type=launchApp 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/launchapp":{"type":"event","description":"打开 APP 成功的回调,open-type=launchApp 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/opensetting":{"type":"event","description":"在打开授权设置页后回调,open-type=openSetting 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/chooseavatar":{"type":"event","description":"获取用户头像回调,open-type=chooseAvatar 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-button/agreeprivacyauthorization":{"type":"event","description":"用户同意隐私协议回调,open-type=agreePrivacyAuthorization 时有效\n\n[Docs](https://wot-ui.cn/component/button.html#events)"},"wd-calendar-view/v-model":{"type":"null | number | array","description":"选中值,为 13 位时间戳或时间戳数组\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/type":{"type":"string","options":["date","dates","datetime","week","month","daterange","datetimerange","weekrange","monthrange"],"description":"日期类型, default: date.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/min-date":{"type":"number","description":"最小日期,为 13 位时间戳, default: 当前日期往前推 6 个月.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/max-date":{"type":"number","description":"最大日期,为 13 位时间戳, default: 当前日期往后推 6 个月.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/first-day-of-week":{"type":"number","description":"周起始天, default: 0.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/formatter":{"type":"function","description":"日期格式化函数\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/max-range":{"type":"number","description":"type 为范围选择时有效,最大日期范围\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/range-prompt":{"type":"string","description":"type 为范围选择时有效,选择超出最大日期范围时的错误提示文案, default: 选择天数不能超过 x 天.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/allow-same-day":{"type":"boolean","description":"type 为范围选择时有效,是否允许选择同一天, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/show-panel-title":{"type":"boolean","description":"是否展示面板标题,自动计算当前滚动的日期月份, default: true.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/default-time":{"type":"string | array","description":"选中日期所使用的当日内具体时刻, default: 00:00:00.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/panel-height":{"type":"number","description":"可滚动面板的高度, default: 378.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/time-filter":{"type":"function","description":"type 为 'datetime' 或 'datetimerange' 时有效,用于过滤时间选择器的数据\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/hide-second":{"type":"boolean","description":"type 为 'datetime' 或 'datetimerange' 时有效,是否不展示秒修改, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/immediate-change":{"type":"boolean","description":"type 为 'datetime' 或 'datetimerange' 时有,是否在手指松开时立即触发 picker-view 的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25 版本起提供,仅微信小程序和支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#attributes)"},"wd-calendar-view/change":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/calendar-view.html#events)"},"wd-calendar/v-model":{"type":"null | number | array","description":"选中值,为 13 位时间戳或时间戳数组\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/type":{"type":"string","options":["date","dates","datetime","week","month","daterange","datetimerange","weekrange","monthrange"],"description":"日期类型, default: date.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/min-date":{"type":"number","description":"最小日期,为 13 位时间戳, default: 当前日期往前推 6 个月.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/max-date":{"type":"number","description":"最大日期,为 13 位时间戳, default: 当前日期往后推 6 个月.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/first-day-of-week":{"type":"number","description":"周起始天, default: 0.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/formatter":{"type":"function","description":"日期格式化函数\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/max-range":{"type":"number","description":"type 为范围选择时有效,最大日期范围\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/range-prompt":{"type":"string","description":"type 为范围选择时有效,选择超出最大日期范围时的错误提示文案, default: 选择天数不能超过 x 天.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/allow-same-day":{"type":"boolean","description":"type 为范围选择时有效,是否允许选择同一天, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/default-time":{"type":"string | array","description":"选中日期所使用的当日内具体时刻, default: 00:00:00.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/time-filter":{"type":"function","description":"type 为 'datetime' 或 'datetimerange' 时有效,用于过滤时间选择器的数据\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/hide-second":{"type":"boolean","description":"type 为 'datetime' 或 'datetimerange' 时有效,是否不展示秒修改, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/show-confirm":{"type":"boolean","description":"是否显示确定按钮, default: true.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/show-type-switch":{"type":"boolean","description":"是否显示类型切换功能, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/shortcuts":{"type":"array","description":"快捷选项,为对象数组,其中对象的 `text` 必传\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/title":{"type":"string","description":"弹出层标题, default: 选择日期.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/label":{"type":"string","description":"选择器左侧文案\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/placeholder":{"type":"string","description":"选择器占位符, default: 请选择.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/display-format":{"type":"function","description":"自定义展示文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/inner-display-format":{"type":"function","description":"自定义范围选择类型的面板内部回显,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/size":{"type":"string","options":["large"],"description":"设置选择器大小\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/error":{"type":"boolean","description":"是否为错误状态,错误状态时右侧内容为红色, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/required":{"type":"boolean","description":"必填样式, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/marker-side":{"type":"string","options":["before","after"],"description":"必填标记位置, default: before.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/center":{"type":"boolean","description":"是否垂直居中, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/ellipsis":{"type":"boolean","description":"是否超出隐藏, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/align-right":{"type":"boolean","description":"选择器的值靠右展示, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/before-confirm":{"type":"function","description":"确定前校验函数,接收 { value, resolve } 参数,通过 resolve 继续执行,resolve 接收 1 个 boolean 参数\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/suse-default-slots":{"type":"boolean","description":"使用默认插槽时设置该选项,已废弃直接使用默认插槽即可。, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/suse-label-slots":{"type":"boolean","description":"使用 label 插槽时设置该选项,已废弃直接使用 label 插槽即可。, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/z-index":{"type":"number","description":"弹窗层级, default: 15.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: true.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/immediate-change":{"type":"boolean","description":"type 为 'datetime' 或 'datetimerange' 时有,是否在手指松开时立即触发 picker-view 的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25 版本起提供,仅微信小程序和支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/with-cell":{"type":"boolean","description":"是否使用内置 cell 选择器, default: true.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/calendar.html#attributes)"},"wd-calendar/confirm":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/calendar.html#events)"},"wd-calendar/change":{"type":"event","description":"点击面板日期时触发\n\n[Docs](https://wot-ui.cn/component/calendar.html#events)"},"wd-calendar/cancel":{"type":"event","description":"点击关闭按钮或者蒙层时触发\n\n[Docs](https://wot-ui.cn/component/calendar.html#events)"},"wd-calendar/open":{"type":"event","description":"日历打开时触发\n\n[Docs](https://wot-ui.cn/component/calendar.html#events)"},"wd-calendar/clear":{"type":"event","description":"点击清空按钮时触发\n\n[Docs](https://wot-ui.cn/component/calendar.html#events)"},"wd-card/title":{"type":"string","description":"卡片标题\n\n[Docs](https://wot-ui.cn/component/card.html#attributes)"},"wd-card/type":{"type":"string","options":["rectangle"],"description":"卡片类型\n\n[Docs](https://wot-ui.cn/component/card.html#attributes)"},"wd-cell-group/title":{"type":"string","description":"分组标题\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup-attributes)"},"wd-cell-group/value":{"type":"string","description":"分组右侧内容\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup-attributes)"},"wd-cell-group/border":{"type":"boolean","description":"是否展示边框线\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup-attributes)"},"wd-cell-group/insert":{"type":"boolean","description":"是否展示为圆角卡片风格, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup-attributes)"},"wd-cell-group/use-slot":{"type":"boolean","description":"分组启用插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cellgroup-attributes)"},"wd-cell/title":{"type":"string","description":"标题\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/value":{"type":"string","description":"右侧内容\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/icon":{"type":"string","description":"图标类名\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/icon-size":{"type":"string | number","description":"图标大小\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/label":{"type":"string","description":"描述信息\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/is-link":{"type":"boolean","description":"是否为跳转链接, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/to":{"type":"string","description":"跳转地址\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/clickable":{"type":"boolean","description":"点击反馈,开启 is-link 时,默认开启此选项, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/replace":{"type":"boolean","description":"跳转时是否替换栈顶页面, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/size":{"type":"string","options":["large"],"description":"设置单元格大小\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/title-width":{"type":"string","description":"设置左侧标题宽度\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/center":{"type":"boolean","description":"是否垂直居中,默认顶部居中, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/required":{"type":"boolean","description":"表单属性,必填, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/marker-side":{"type":"string","options":["before","after"],"description":"必填标记的位置, default: before.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/arrow-direction":{"type":"string","options":["left","up","down"],"description":"箭头方向,只在 is-link 为 true 时生效\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/vertical":{"type":"boolean","description":"表单属性,上下结构, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/ellipsis":{"type":"boolean","description":"内容省略,右侧内容超出时会以省略号显示, default: false.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/use-title-slot":{"type":"boolean","description":"是否启用title插槽,默认启用,用来解决插槽传递时v-slot和v-if冲突问题, default: true.\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/border":{"type":"boolean","description":"是否展示边框线,优先级高于`cell-group`的`border`\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-attributes)"},"wd-cell/click":{"type":"event","description":"当 clickable 或 is-link 为 true 时点击单元格触发\n\n[Docs](https://wot-ui.cn/component/cell.html#cell-events)"},"wd-checkbox/v-model":{"type":"string | number | boolean","description":"单选框选中时的值\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/shape":{"type":"string","options":["circle","square","button"],"description":"单选框形状, default: circle.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/checked-color":{"type":"string","description":"选中的颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/max-width":{"type":"string","description":"文字位置最大宽度\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/true-value":{"type":"string | number","description":"选中值,在 checkbox-group 中使用无效,需同 false-value 一块使用, default: true.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/false-value":{"type":"string |number","description":"非选中时的值,在 checkbox-group 中使用无效,需同 true-value 一块使用, default: false.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/size":{"type":"string","options":["large"],"description":"设置大小\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-attributes)"},"wd-checkbox/change":{"type":"event","description":"绑定值变化时触发,当为复选框组时参数为 boolean,表示该复选框是否选中\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkbox-events)"},"wd-checkbox-group/v-model":{"type":"Array","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/shape":{"type":"string","options":["circle","square","button"],"description":"单选框形状, default: circle.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/cell":{"type":"boolean","description":"表单模式, default: false.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/checked-color":{"type":"string","description":"选中的颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/min":{"type":"number","description":"最小选中的数量, default: 0.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/max":{"type":"number","description":"最大选中的数量,0 为无限数量,默认为 0, default: 0.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/inline":{"type":"boolean","description":"同行展示, default: false.\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/size":{"type":"string","options":["large"],"description":"设置大小\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-attributes)"},"wd-checkbox-group/change":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/checkbox.html#checkboxgroup-events)"},"wd-circle/v-model":{"type":"number","description":"当前进度, default: 0.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/custom-class":{"type":"string","description":"自定义class\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/custom-style":{"type":"string","description":"自定义style\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/size":{"type":"number","description":"圆环直径,默认单位为 px, default: 100.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/color":{"type":"string | Record","description":"进度条颜色, default: #4d80f0.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/layer-color":{"type":"string","description":"轨道颜色, default: #EBEEF5.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/fill":{"type":"string","description":"填充颜色, default: #ffffff.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/speed":{"type":"number","description":"动画速度(单位为 rate/s), default: 50.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/text":{"type":"string","description":"文字\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/stroke-width":{"type":"number","description":"进度条宽度,单位px, default: 10.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/stroke-linecap":{"type":"string","options":["butt","round","square"],"description":"进度条端点的形状, default: round.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-circle/clockwise":{"type":"boolean","description":"是否顺时针增加, default: true.\n\n[Docs](https://wot-ui.cn/component/circle.html#attributes)"},"wd-col-picker/v-model":{"type":"array","description":"选中项\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/columns":{"type":"array","description":"选择器数据,二维数组\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/value-key":{"type":"string","description":"选项对象中,value 对应的 key, default: value.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/label-key":{"type":"string","description":"选项对象中,展示的文本对应的 key, default: label.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/tip-key":{"type":"string","description":"选项对象中,提示文案对应的 key, default: tip.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/title":{"type":"string","description":"弹出层标题\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/label":{"type":"string","description":"选择器左侧文案\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/placeholder":{"type":"string","description":"选择器占位符, default: 请选择.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/display-format":{"type":"function","description":"自定义展示文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/column-change":{"type":"function","description":"接收当前列的选中项 item、当前列下标、当前列选中项下标下一列数据处理函数 resolve、结束选择 finish\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/size":{"type":"string","options":["large"],"description":"设置选择器大小\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/error":{"type":"boolean","description":"是否为错误状态,错误状态时右侧内容为红色, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/required":{"type":"boolean","description":"必填样式, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/marker-side":{"type":"string","options":["before","after"],"description":"必填标记位置, default: before.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/align-right":{"type":"boolean","description":"选择器的值靠右展示, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/before-confirm":{"type":"function","description":"确定前校验函数,接收 (value, resolve) 参数,通过 resolve 继续执行 picker,resolve 接收 1 个 boolean 参数\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/loading-color":{"type":"string","description":"loading 图标的颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/use-default-slot":{"type":"boolean","description":"使用默认插槽时设置该选项, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/use-label-slot":{"type":"boolean","description":"使用 label 插槽时设置该选项, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/auto-complete":{"type":"-","options":["false"],"description":"自动触发 column-change 事件来补全数据,当 columns 为空数组或者 columns 数组长度小于 value 数组长度时,会自动触发 column-change\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/z-index":{"type":"number","description":"弹窗层级, default: 15.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: true.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/ellipsis":{"type":"boolean","description":"是否超出隐藏, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/line-width":{"type":"number","description":"底部条宽度,单位像素\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/line-height":{"type":"number","description":"底部条高度,单位像素\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/col-picker.html#attributes)"},"wd-col-picker/confirm":{"type":"event","description":"最后一列选项选中时触发\n\n[Docs](https://wot-ui.cn/component/col-picker.html#events)"},"wd-col-picker/close":{"type":"event","description":"点击关闭按钮或者蒙层时触发\n\n[Docs](https://wot-ui.cn/component/col-picker.html#events)"},"wd-collapse-item/name":{"type":"string","description":"折叠栏的标识符\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapseitem-attributes)"},"wd-collapse-item/title":{"type":"string","description":"折叠栏的标题, 支持同名 slot 自定义内容\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapseitem-attributes)"},"wd-collapse-item/disabled":{"type":"boolean","description":"禁用折叠栏, default: false.\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapseitem-attributes)"},"wd-collapse-item/before-expend":{"type":"Function","description":"打开前的回调函数,返回 false 可以阻止打开,支持返回 Promise\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapseitem-attributes)"},"wd-collapse/value":{"type":"string | array | boolean","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-attributes)"},"wd-collapse/accordion":{"type":"boolean","description":"手风琴, default: false.\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-attributes)"},"wd-collapse/viewmore":{"type":"boolean","description":"查看更多的折叠面板, default: false.\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-attributes)"},"wd-collapse/use-more-slot":{"type":"boolean","description":"查看更多的自定义插槽使用标志, default: false.\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-attributes)"},"wd-collapse/line-num":{"type":"number","description":"查看更多的折叠面板,收起时的显示行数, default: 2.\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-attributes)"},"wd-collapse/change":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/collapse.html#collapse-events)"},"wd-config-provider/theme":{"type":"string","options":["dark","light"],"description":"主题风格,设置为 `dark` 来开启深色模式,全局生效\n\n[Docs](https://wot-ui.cn/component/config-provider.html#attributes)"},"wd-config-provider/theme-vars":{"type":"`ConfigProviderThemeVars`","description":"自定义主题变量\n\n[Docs](https://wot-ui.cn/component/config-provider.html#attributes)"},"wd-count-down/time":{"type":"Number","description":"倒计时时长,单位毫秒, default: 0.\n\n[Docs](https://wot-ui.cn/component/count-down.html#attributes)"},"wd-count-down/millisecond":{"type":"Boolean","description":"是否开启毫秒级渲染, default: false.\n\n[Docs](https://wot-ui.cn/component/count-down.html#attributes)"},"wd-count-down/auto-start":{"type":"Boolean","description":"是否自动开始倒计时, default: true.\n\n[Docs](https://wot-ui.cn/component/count-down.html#attributes)"},"wd-count-down/format":{"type":"String","description":"倒计时格式化字符串, default: HH:mm:ss.\n\n[Docs](https://wot-ui.cn/component/count-down.html#attributes)"},"wd-count-down/finish":{"type":"event","description":"倒计时结束时触发\n\n[Docs](https://wot-ui.cn/component/count-down.html#events)"},"wd-count-down/change":{"type":"event","description":"倒计时变化时触发\n\n[Docs](https://wot-ui.cn/component/count-down.html#events)"},"wd-count-to/font-size":{"type":"number","options":["16"],"description":"字体大小, default: default.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/color":{"type":"string","description":"文本颜色\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/type":{"type":"string","options":["primary'","'error'","'warning'","'success"],"description":"主题类型, default: default.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/start-val":{"type":"number","description":"起始值, default: 0.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/end-val":{"type":"number","description":"最终值, default: 2024.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/duration":{"type":"number","description":"从起始值到结束值数字变动的时间, default: 3000.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/autoplay":{"type":"boolean","description":"是否自动播放, default: true.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/decimals":{"type":"number","options":["(需大于等于 0)"],"description":"保留的小数位数, default: 0.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/decimal":{"type":"string","description":"小数点符号, default: ..\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/separator":{"type":"string","description":"三位三位的隔开效果, default: ,.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/prefix":{"type":"string","description":"前缀\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/suffix":{"type":"string","description":"后缀\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/use-easing":{"type":"boolean","description":"是否具有连贯性, default: true.\n\n[Docs](https://wot-ui.cn/component/count-to.html#attributes)"},"wd-count-to/finish":{"type":"event","description":"动画完成时触发\n\n[Docs](https://wot-ui.cn/component/count-to.html#events)"},"wd-count-to/mounted":{"type":"event","description":"组件加载完成时时触发\n\n[Docs](https://wot-ui.cn/component/count-to.html#events)"},"wd-curtain/value":{"type":"boolean","description":"绑定值,展示/关闭幕帘(已废弃,请使用 modelValue)\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/model-value":{"type":"boolean","description":"绑定值,展示/关闭幕帘\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/src":{"type":"string","description":"幕帘图片地址,必须使用网络地址\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/width":{"type":"number","description":"幕帘图片宽度,默认单位 px\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/to":{"type":"string","description":"幕帘图片点击链接\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/close-position":{"type":"string","options":["inset","top","bottom","top-left","top-right","bottom-left","bottom-right"],"description":"关闭按钮位置, default: inset.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: false.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/hide-when-close":{"type":"boolean","description":"是否当关闭时将弹出层隐藏(display: none), default: true.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/z-index":{"type":"number","description":"设置层级, default: 10.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/show-menu-by-longpress":{"type":"boolean","description":"开启长按图片显示识别小程序码菜单,仅微信小程序支持, default: false.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/close-on-click":{"type":"boolean","description":"是否在点击图片时关闭幕帘,默认为 true, default: ture.\n\n[Docs](https://wot-ui.cn/component/curtain.html#attributes)"},"wd-curtain/click":{"type":"event","description":"点击幕帘时触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/close":{"type":"event","description":"弹出层关闭时触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/click-modal":{"type":"event","description":"点击遮罩时触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/beforeenter":{"type":"event","description":"进入前触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/enter":{"type":"event","description":"进入时触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/afterenter":{"type":"event","description":"进入后触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/beforeleave":{"type":"event","description":"离开前触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/leave":{"type":"event","description":"离开时触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/afterleave":{"type":"event","description":"离开后触发\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/load":{"type":"event","description":"图片加载完成事件\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-curtain/error":{"type":"event","description":"图片加载失败事件,若图片加载失败,则不会展示幕帘组件,即使设置 `value` 为 true\n\n[Docs](https://wot-ui.cn/component/curtain.html#events)"},"wd-datetime-picker-view/v-model":{"type":"`string` | `timestamp`","description":"选中项,当 type 为 time 时,类型为字符串,否则为 `timestamp`\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/type":{"type":"string","options":["date","year-month","time","year"],"description":"选择器类型, default: datetime.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/loading":{"type":"boolean","description":"加载中, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/loading-color":{"type":"string","description":"加载的颜色,只能使用十六进制的色值写法,且不能使用缩写, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/columns-height":{"type":"number","description":"picker内部滚筒高, default: 231.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/item-height":{"type":"number","description":"picker item的高度, default: 35.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/formatter":{"type":"function","description":"自定义弹出层选项文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/filter":{"type":"function","description":"自定义过滤选项的函数,返回列的选项数组\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/min-date":{"type":"`timestamp`","description":"最小日期,13 位的时间戳, default: 当前日期 - 10年.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/max-date":{"type":"`timestamp`","description":"最大日期,13 位的时间戳, default: 当前日期 + 10年.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/min-hour":{"type":"number","description":"最小小时,time类型时生效, default: 0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/max-hour":{"type":"number","description":"最大小时,time类型时生效, default: 23.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/min-minute":{"type":"number","description":"最小分钟,time类型时生效, default: 0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/max-minute":{"type":"number","description":"最大分钟,time类型时生效, default: 59.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/immediate-change":{"type":"boolean","description":"是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/use-second":{"type":"boolean","description":"是否显示秒选择,仅在 time 和 datetime 类型下生效, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#attributes)"},"wd-datetime-picker-view/change":{"type":"event","description":"切换选项时触发\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#events)"},"wd-datetime-picker-view/pickstart":{"type":"event","description":"当滚动选择开始时候触发事件\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#events)"},"wd-datetime-picker-view/pickend":{"type":"event","description":"当滚动选择结束时候触发事件\n\n[Docs](https://wot-ui.cn/component/datetime-picker-view.html#events)"},"wd-datetime-picker/v-model":{"type":"`string` | `timestamp` | `array`","description":"选中项,当 type 为 time 时,类型为字符串;当 type 为 Array 时,类型为范围选择;否则为 `timestamp`\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/default-value":{"type":"`string` | `timestamp` | `array`","description":"默认日期,类型保持与 value 一致,打开面板时面板自动选到默认日期\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/type":{"type":"string","options":["date","year-month","time","year"],"description":"选择器类型, default: datetime.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/loading":{"type":"boolean","description":"加载中, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/loading-color":{"type":"string","description":"加载的颜色,只能使用十六进制的色值写法,且不能使用缩写, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/columns-height":{"type":"number","description":"picker内部滚筒高, default: 231.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/item-height":{"type":"number","description":"picker item的高度, default: 35.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/title":{"type":"string","description":"弹出层标题\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/cancel-button-text":{"type":"string","description":"取消按钮文案, default: 取消.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/confirm-button-text":{"type":"string","description":"确认按钮文案, default: 完成.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/label":{"type":"string","description":"选择器左侧文案,label可以不传\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/placeholder":{"type":"string","description":"选择器占位符, default: 请选择.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/display-format":{"type":"function","description":"自定义展示文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/formatter":{"type":"function","description":"自定义弹出层选项文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/filter":{"type":"function","description":"自定义过滤选项的函数,返回列的选项数组\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/display-format-tab-label":{"type":"function","description":"在区域选择模式下,自定义展示tab标签文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/min-date":{"type":"`timestamp`","description":"最小日期,13 位的时间戳, default: 当前日期 - 10年.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/max-date":{"type":"`timestamp`","description":"最大日期,13 位的时间戳, default: 当前日期 + 10年.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/min-hour":{"type":"number","description":"最小小时,time类型时生效, default: 0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/max-hour":{"type":"number","description":"最大小时,time类型时生效, default: 23.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/min-minute":{"type":"number","description":"最小分钟,time类型时生效, default: 0.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/max-minute":{"type":"number","description":"最大分钟,time类型时生效, default: 59.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/required":{"type":"boolean","description":"表单属性,必填, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/marker-side":{"type":"string","options":["before","after"],"description":"必填标记位置, default: before.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/size":{"type":"string","options":["large"],"description":"设置选择器大小\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/error":{"type":"boolean","description":"是否为错误状态,错误状态时右侧内容为红色, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/align-right":{"type":"boolean","description":"选择器的值靠右展示, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/suse-label-slots":{"type":"boolean","description":"label 使用插槽,已废弃,直接使用label插槽即可, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/suse-default-slots":{"type":"boolean","description":"使用默认插槽,已废弃,直接使用默认插槽即可, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/before-confirm":{"type":"function","description":"确定前校验函数,接收 (value, resolve, picker) 参数,通过 resolve 继续执行 picker,resolve 接收1个boolean参数\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/z-index":{"type":"number","description":"弹窗层级, default: 15.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: true.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/ellipsis":{"type":"boolean","description":"是否超出隐藏, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/immediate-change":{"type":"boolean","description":"是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/use-second":{"type":"boolean","description":"是否显示秒选择,仅在 time 和 datetime 类型下生效, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#attributes)"},"wd-datetime-picker/confirm":{"type":"event","description":"点击右侧按钮触发\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#events)"},"wd-datetime-picker/cancel":{"type":"event","description":"点击左侧按钮触发\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#events)"},"wd-datetime-picker/toggle":{"type":"event","description":"在区域选择模式下,tab标签切换时触发\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#events)"},"wd-datetime-picker/clear":{"type":"event","description":"点击清空按钮触发\n\n[Docs](https://wot-ui.cn/component/datetime-picker.html#events)"},"wd-divider/color":{"type":"string","description":"自定义颜色,支持所有颜色的写法\n\n[Docs](https://wot-ui.cn/component/divider.html#attributes)"},"wd-divider/hairline":{"type":"boolean","description":"是否显示边框, default: true.\n\n[Docs](https://wot-ui.cn/component/divider.html#attributes)"},"wd-divider/dashed":{"type":"boolean","description":"是否显示为虚线, default: false.\n\n[Docs](https://wot-ui.cn/component/divider.html#attributes)"},"wd-divider/content-position":{"type":"string","options":["left","center","right"],"description":"内容位置, default: center.\n\n[Docs](https://wot-ui.cn/component/divider.html#attributes)"},"wd-divider/vertical":{"type":"boolean","description":"是否显示为垂直分割线, default: false.\n\n[Docs](https://wot-ui.cn/component/divider.html#attributes)"},"wd-drop-menu/direction":{"type":"string","options":["up","down"],"description":"菜单展开方向,可选值为`up` 或 `down`, default: down.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenu-attributes)"},"wd-drop-menu/modal":{"type":"boolean","description":"是否展示蒙层, default: true.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenu-attributes)"},"wd-drop-menu/close-on-click-modal":{"type":"boolean","description":"是否点击蒙层时关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenu-attributes)"},"wd-drop-menu/duration":{"type":"number","description":"菜单展开收起动画时间,单位 ms, default: 200.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenu-attributes)"},"wd-drop-menu-item/v-model":{"type":"string | number","description":"当前选中项对应选中的 value\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/disabled":{"type":"boolean","description":"禁用菜单, default: false.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/options":{"type":"array","description":"列表数据,对应数据结构 `[{label: '标题', value: '0', tip: '提示文字'}]`\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/icon-name":{"type":"string","description":"选中的图标名称(可选名称在 wd-icon 组件中), default: check.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/title":{"type":"string","description":"菜单标题\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/icon":{"type":"string","description":"菜单图标, default: arrow-down.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/icon-size":{"type":"string","description":"菜单图标尺寸, default: 14px.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/before-toggle":{"type":"function({ status, resolve })","description":"下拉菜单打开或者关闭前触发,`reslove(true)`时继续执行打开或关闭操作\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/value-key":{"type":"string","description":"选项对象中,value 对应的 key, default: value.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/label-key":{"type":"string","description":"选项对象中,展示的文本对应的 key, default: label.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/tip-key":{"type":"string","description":"选项对象中,选项说明对应的 key, default: tip.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/popup-height":{"type":"string","description":"popup弹出容器的高度,不设置默认为80%\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-drop-menu-item/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/drop-menu.html#dropmenuitem-attributes)"},"wd-fab/v-model:active":{"type":"boolean","description":"是否激活, default: false.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/type":{"type":"FabType","options":["primary' | 'success' | 'info' | 'warning' | 'error' | 'default"],"description":"类型, default: primary.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/position":{"type":"FabPosition","options":["left-top' | 'right-top' | 'left-bottom' | 'right-bottom' | left-center | right-center | top-center | bottom-center"],"description":"悬浮按钮位置, default: right-bottom.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/draggable":{"type":"boolean","description":"按钮能否拖动, default: false.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/direction":{"type":"FabDirection","options":["top' | 'right' | 'bottom' | 'left"],"description":"悬浮按钮菜单弹出方向, default: top.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/inactive-icon":{"type":"string","description":"悬浮按钮未展开时的图标, default: add.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/active-icon":{"type":"string","description":"悬浮按钮展开时的图标, default: close.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/z-index":{"type":"number","description":"自定义悬浮按钮层级, default: 99.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/gap":{"type":"FabGap","description":"自定义悬浮按钮与可视区域边缘的间距, default: \\{ top: 16, left: 16, right: 16, bottom: 16 \\}.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/custom-style":{"type":"string","description":"自定义样式\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/expandable":{"type":"boolean","description":"用于控制点击时是否展开菜单,设置为 false 时触发 click, default: true.\n\n[Docs](https://wot-ui.cn/component/fab.html#attributes)"},"wd-fab/click":{"type":"event","description":"expandable 设置为 false 时,点击悬浮按钮触发\n\n[Docs](https://wot-ui.cn/component/fab.html#events)"},"wd-floating-panel/v-model:height":{"type":"number","description":"当前面板的显示高度, default: 0.\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-floating-panel/anchors":{"type":"number[]","description":"设置自定义锚点, 单位 `px`, default: [100, windowHeight 0.6].\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-floating-panel/duration":{"type":"number","description":"动画时长,单位`ms`,设置为 `0` 可以禁用动画, default: 300.\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-floating-panel/content-draggable":{"type":"boolean","description":"允许拖拽内容容器, default: true.\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-floating-panel/safe-area-inset-bottom":{"type":"boolean","description":"是否开启底部安全区适配, default: false.\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-floating-panel/show-scrollbar":{"type":"boolean","description":"是否开启滚动条, default: true.\n\n[Docs](https://wot-ui.cn/component/floating-panel.html#attributes)"},"wd-form/model":{"type":"`Record`","description":"表单数据对象\n\n[Docs](https://wot-ui.cn/component/form.html#attributes)"},"wd-form/rules":{"type":"`FormRules`","description":"表单验证规则\n\n[Docs](https://wot-ui.cn/component/form.html#attributes)"},"wd-form/reset-on-change":{"type":"`boolean`","description":"表单数据变化时是否重置表单提示信息(设置为 false 时需要开发者单独对变更项进行校验), default: true.\n\n[Docs](https://wot-ui.cn/component/form.html#attributes)"},"wd-form/error-type":{"type":"`toast|message|none`","description":"校验错误提示方式, default: message.\n\n[Docs](https://wot-ui.cn/component/form.html#attributes)"},"wd-form/validate":{"type":"event","description":"验证表单,支持传入一个 prop 来验证单个表单项,不传入 prop 时,会验证所有表单项,1.6.0 版本起支持传入数组\n\n[Docs](https://wot-ui.cn/component/form.html#events)"},"wd-form/reset":{"type":"event","description":"重置校验结果\n\n[Docs](https://wot-ui.cn/component/form.html#events)"},"wd-gap/height":{"type":"`string`|`number`","description":"高度, default: 15.\n\n[Docs](https://wot-ui.cn/component/gap.html#attributes)"},"wd-gap/bg-color":{"type":"string","description":"背景颜色, default: transparent.\n\n[Docs](https://wot-ui.cn/component/gap.html#attributes)"},"wd-gap/safe-area-bottom":{"type":"boolean","options":["true","false"],"description":"开启底部安全区, default: false.\n\n[Docs](https://wot-ui.cn/component/gap.html#attributes)"},"wd-grid/column":{"type":"number","description":"列数\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/border":{"type":"boolean","description":"是否显示边框, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/gutter":{"type":"number","description":"格子之间的间距,默认单位为`px`\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/square":{"type":"boolean","description":"是否将格子固定为正方形, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/clickable":{"type":"boolean","description":"是否开启格子点击反馈, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/bg-color":{"type":"string","description":"背景颜色设置, default: #ffffff.\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid/hover-class":{"type":"string","description":"指定grid-item按下去的样式类, default: wd-grid-item__content--hover.\n\n[Docs](https://wot-ui.cn/component/grid.html#grid-attributes)"},"wd-grid-item/text":{"type":"string","description":"文字 value\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/icon":{"type":"string","description":"图标名称,可选值见 `wd-icon` 组件\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/is-dot":{"type":"boolean","description":"是否显示图标右上角小红点, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/type":{"type":"string","options":["primary","success","warning","danger","info"],"description":"图标右上角显示的 `badge` 类型\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/value":{"type":"string, number","description":"图标右上角 `badge` 显示值\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/max":{"type":"number","description":"图标右上角 `badge` 最大值,超过最大值会显示 '{max}+',要求 value 是 Number 类型\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/url":{"type":"string","description":"点击后跳转的链接地址\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/link-type":{"type":"string","options":["navigateTo","switchTab","reLaunch"],"description":"页面跳转方式, 参考[微信小程序路由文档](https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/route.html)\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/suse-slots":{"type":"boolean","description":"是否开启 `GridItem` 内容插槽 **(1.12.0已废弃,直接使用默认插槽即可)**, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/suse-icon-slots":{"type":"boolean","description":"是否开启 `GridItem` icon 插槽 **(1.12.0已废弃,组件会自动检测icon插槽的存在)**, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/suse-text-slots":{"type":"boolean","description":"是否开启 `GridItem` text 内容插槽 **(1.12.0已废弃,组件会自动检测text插槽的存在)**, default: false.\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/icon-size":{"type":"string","description":"图标大小, default: 26px.\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-grid-item/badge-props":{"type":"BadgeProps","description":"自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](/component/badge#attributes)\n\n[Docs](https://wot-ui.cn/component/grid.html#griditem-attributes)"},"wd-icon/name":{"type":"string","description":"图标名称或图片链接\n\n[Docs](https://wot-ui.cn/component/icon.html#attributes)"},"wd-icon/color":{"type":"string","description":"图标的颜色, default: inherit.\n\n[Docs](https://wot-ui.cn/component/icon.html#attributes)"},"wd-icon/size":{"type":"string | number","description":"图标的字体大小, default: inherit.\n\n[Docs](https://wot-ui.cn/component/icon.html#attributes)"},"wd-icon/class-prefix":{"type":"string","description":"类名前缀,用于使用自定义图标, default: wd-icon.\n\n[Docs](https://wot-ui.cn/component/icon.html#attributes)"},"wd-icon/custom-style":{"type":"string","description":"根节点样式\n\n[Docs](https://wot-ui.cn/component/icon.html#attributes)"},"wd-icon/click":{"type":"event","description":"点击图标时触发\n\n[Docs](https://wot-ui.cn/component/icon.html#events)"},"wd-img-cropper/v-model":{"type":"boolean","description":"打开图片裁剪组件, default: false.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/img-src":{"type":"string","description":"图片资源链接\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/img-width":{"type":"number | string","description":"截屏预览图片的初始宽度; `1、设置宽度不设置高度,按照宽度等比缩放;2、如果都不设置,预览时图片大小会根据裁剪框大小进行等比缩放,进行锁边处理;`; string 类型只支持 % 单位,number 类型时单位为 px\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/img-height":{"type":"number | string","description":"截屏预览图片的初始高度; `1、设置高度不设置宽度,按照高度等比缩放;2、如果都不设置,预览时图片大小会根据裁剪框大小进行等比缩放,进行锁边处理;`; string 类型只支持 % 单位,number 类型时单位为 px\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/disabled-rotate":{"type":"boolean","description":"禁止图片旋转, default: false.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/export-scale":{"type":"number","description":"设置导出图片尺寸, default: 2.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/max-scale":{"type":"number","description":"最大缩放倍数, default: 3.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/cancel-button-text":{"type":"string","description":"取消按钮文案, default: 取消.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/confirm-button-text":{"type":"string","description":"确认按钮文案, default: 完成.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/quality":{"type":"number","options":["0","1"],"description":"生成的图片质量 [wx.canvasToTempFilePath属性介绍](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/wx.canvasToTempFilePath.html#%E5%8F%82%E6%95%B0), default: 1.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/file-type":{"type":"string","description":"目标文件的类型,[wx.canvasToTempFilePath属性介绍](https://developers.weixin.qq.com/miniprogram/dev/api/canvas/wx.canvasToTempFilePath.html#%E5%8F%82%E6%95%B0), default: png.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/aspect-ratio":{"type":"string","description":"裁剪框宽高比,格式为 width:height, default: 1:1.\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#attributes)"},"wd-img-cropper/confirm":{"type":"event","description":"完成截图时触发\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#events)"},"wd-img-cropper/cancel":{"type":"event","description":"当取消截图时触发\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#events)"},"wd-img-cropper/imgloaderror":{"type":"event","description":"当图片加载错误时触发\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#events)"},"wd-img-cropper/imgloaded":{"type":"event","description":"当图片加载完成时触发\n\n[Docs](https://wot-ui.cn/component/img-cropper.html#events)"},"wd-img/src":{"type":"string","description":"图片链接\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/width":{"type":"number | string","description":"宽度,默认单位为 px\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/height":{"type":"number | string","description":"高度,默认单位为 px\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/mode":{"type":"ImageMode","options":["top left'","'top right'","'bottom left'","'bottom right'","'right'","'left'","'center'","'bottom'","'top'","'heightFix'","'widthFix'","'aspectFill'","'aspectFit'","'scaleToFill"],"description":"填充模式, default: scaleToFill.\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/round":{"type":"boolean","description":"是否显示为圆形, default: false.\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/radius":{"type":"number | string","description":"圆角大小,默认单位为 px\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/enable-preview":{"type":"boolean","description":"是否支持点击预览, default: false.\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/show-menu-by-longpress":{"type":"boolean","description":"开启长按图片显示识别小程序码菜单,仅微信小程序支持, default: false.\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/preview-src":{"type":"string","description":"预览图片链接\n\n[Docs](https://wot-ui.cn/component/img.html#attributes)"},"wd-img/click":{"type":"event","description":"点击事件\n\n[Docs](https://wot-ui.cn/component/img.html#events)"},"wd-img/load":{"type":"event","description":"当图片载入完毕时触发\n\n[Docs](https://wot-ui.cn/component/img.html#events)"},"wd-img/error":{"type":"event","description":"当错误发生时触发\n\n[Docs](https://wot-ui.cn/component/img.html#events)"},"wd-index-anchor/index":{"type":"string | number","description":"索引字符\n\n[Docs](https://wot-ui.cn/component/index-bar.html#indexanchor-attributes)"},"wd-index-bar/sticky":{"type":"boolean","description":"索引是否吸顶, default: false.\n\n[Docs](https://wot-ui.cn/component/index-bar.html#attributes)"},"wd-input-number/v-model":{"type":"number | string","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/min":{"type":"number","description":"最小值, default: 1.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/max":{"type":"number","description":"最大值, default: Infinity.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/step":{"type":"number","description":"步数, default: 1.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/step-strictly":{"type":"boolean","description":"严格值为步数的倍数, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/precision":{"type":"number","description":"小数精度, default: 0.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/without-input":{"type":"boolean","description":"不显示输入框, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/input-width":{"type":"string","description":"输入框宽度, default: 36px.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/allow-null":{"type":"boolean","description":"是否允许输入的值为空,设置为 `true` 后允许传入空字符串, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/placeholder":{"type":"string","description":"占位文本\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/disable-input":{"type":"boolean","description":"禁用输入框, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/disable-plus":{"type":"boolean","description":"禁用增加按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/disable-minus":{"type":"boolean","description":"禁用减少按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/adjust-position":{"type":"boolean","description":"原生属性,键盘弹起时,是否自动上推页面, default: true.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/before-change":{"type":"`(value: number | string) => boolean | Promise`","description":"输入框值改变前触发,返回 false 会阻止输入框值改变,支持返回 `Promise`\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/long-press":{"type":"boolean","description":"是否允许长按进行加减, default: false.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/immediate-change":{"type":"boolean","description":"是否立即响应输入变化,false 时仅在失焦和按钮点击时更新, default: true.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/update-on-init":{"type":"boolean","description":"是否在初始化时更新 v-model 为修正后的值, default: true.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/input-type":{"type":"string","options":["number","digit"],"description":"输入框类型, default: digit.\n\n[Docs](https://wot-ui.cn/component/input-number.html#attributes)"},"wd-input-number/change":{"type":"event","description":"值修改事件\n\n[Docs](https://wot-ui.cn/component/input-number.html#events)"},"wd-input-number/focus":{"type":"event","description":"输入框获取焦点事件\n\n[Docs](https://wot-ui.cn/component/input-number.html#events)"},"wd-input-number/blur":{"type":"event","description":"输入框失去焦点事件\n\n[Docs](https://wot-ui.cn/component/input-number.html#events)"},"wd-input/type":{"type":"string","options":["text","number","digit","idcard","safe-password","nickname","tel"],"description":"类型, default: text.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/v-model":{"type":"string | number","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/placeholder":{"type":"string","description":"占位文本, default: 请输入....\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/maxlength":{"type":"number","description":"原生属性,最大长度, default: 支付宝小程序无默认值,其余平台默认为-1.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/show-password":{"type":"boolean","description":"显示为密码框, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/disabled":{"type":"boolean","description":"原生属性,禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/prefix-icon":{"type":"string","description":"前置图标,icon组件中的图标类名\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/suffix-icon":{"type":"string","description":"后置图标,icon组件中的图标类名\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/show-word-limit":{"type":"boolean","description":"显示字数限制,需要同时设置 maxlength, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/confirm-type":{"type":"string","options":["done","go","next","search","send"],"description":"设置键盘右下角按钮的文字,仅在type='text'时生效, default: done.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/confirm-hold":{"type":"Boolean","description":"点击键盘右下角按钮时是否保持键盘不收起, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/always-embed":{"type":"Boolean","description":"微信小程序原生属性,强制 input 处于同层状态,默认 focus 时 input 会切到非同层状态 (仅在 iOS 下生效), default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/placeholder-style":{"type":"string","description":"原生属性,指定 placeholder 的样式,目前仅支持color,font-size和font-weight\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/placeholder-class":{"type":"string","description":"原生属性,指定 placeholder 的样式类\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/focus":{"type":"event","description":"监听输入框focus事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/cursor-spacing":{"type":"number","description":"原生属性,指定光标与键盘的距离。取 input 距离底部的距离和cursor-spacing指定的距离的最小值作为光标与键盘的距离, default: 0.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/cursor":{"type":"number","description":"原生属性,指定focus时的光标位置, default: -1.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/selection-start":{"type":"number","description":"原生属性,光标起始位置,自动聚集时有效,需与selection-end搭配使用, default: -1.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/selection-end":{"type":"number","description":"原生属性,光标结束位置,自动聚集时有效,需与selection-start搭配使用, default: -1.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/adjust-position":{"type":"boolean","description":"原生属性,键盘弹起时,是否自动上推页面, default: true.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/label":{"type":"string","description":"设置左侧标题\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/size":{"type":"string","description":"设置输入框大小\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/error":{"type":"boolean","description":"设置输入框错误状态,错误状态时为红色, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/center":{"type":"boolean","description":"当有label属性时,设置标题和输入框垂直居中,默认为顶部居中, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/required":{"type":"boolean","description":"cell 类型下必填样式, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/marker-side":{"type":"string","options":["before","after"],"description":"必填标记的位置, default: before.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/no-border":{"type":"boolean","description":"非 cell 类型下是否隐藏下划线, default: false.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/clear-trigger":{"type":"`InputClearTrigger`","options":["focus","always"],"description":"显示清除图标的时机,always 表示输入框不为空时展示,focus 表示输入框聚焦且不为空时展示, default: always.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/focus-when-clear":{"type":"boolean","description":"是否在点击清除按钮时聚焦输入框, default: true.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/ignore-composition-event":{"type":"boolean","description":"是否忽略组件内对文本合成系统事件的处理。为 false 时将触发 compositionstart、compositionend、compositionupdate 事件,且在文本合成期间会触发 input 事件。, default: true.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/enable-native":{"type":"boolean","description":"支付宝小程序,可以在 input 组件中加上 enableNative=\"false\",避免弹出键盘后出现内容上移, default: true.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/inputmode":{"type":"InputMode","description":"提供用户在编辑元素或其内容时可能输入的数据类型的提示。, default: text.\n\n[Docs](https://wot-ui.cn/component/input.html#attributes)"},"wd-input/input":{"type":"event","description":"监听输入框input事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/blur":{"type":"event","description":"监听输入框blur事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/clear":{"type":"event","description":"监听输入框清空按钮事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/confirm":{"type":"event","description":"点击完成时, 触发 confirm 事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/keyboardheightchange":{"type":"event","description":"键盘高度发生变化的时候触发此事件\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/clickprefixicon":{"type":"event","description":"点击前置图标时触发\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-input/clicksuffixicon":{"type":"event","description":"点击后置图标时触发\n\n[Docs](https://wot-ui.cn/component/input.html#events)"},"wd-keyboard/v-model:visible":{"type":"`boolean`","description":"是否展开, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/v-model":{"type":"`string`","description":"绑定的值\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/title":{"type":"`string`","description":"标题\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/mode":{"type":"`string`","options":["default, car, custom"],"description":"键盘模式, default: default.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/z-index":{"type":"`number`","description":"层级, default: 100.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/maxlength":{"type":"`number`","description":"最大长度, default: Infinity.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/show-delete-key":{"type":"`boolean`","description":"是否显示删除键, default: true.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/random-key-order":{"type":"`boolean`","description":"是否随机键盘按键顺序, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/close-text":{"type":"`string`","description":"确认按钮文本\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/delete-text":{"type":"`string`","description":"删除按钮文本\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/close-button-loading":{"type":"`boolean`","description":"关闭按钮是否显示加载状态, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/modal":{"type":"`boolean`","description":"是否显示蒙层遮罩, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/hide-on-click-outside":{"type":"`boolean`","description":"是否在点击外部时收起键盘, default: true.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/lock-scroll":{"type":"`boolean`","description":"是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/safe-area-inset-bottom":{"type":"`boolean`","description":"是否在底部安全区域内, default: true.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/extra-key":{"type":"`string` | `string[]`","description":"额外按键\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/root-portal":{"type":"`boolean`","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/v-model:car-lang":{"type":"`string`","options":["zh, en"],"description":"车牌键盘语言模式,当 mode=car 时生效\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/auto-switch-lang":{"type":"`boolean`","description":"是否自动切换车牌键盘语言,当 mode=car 且 car-lang 是非受控状态时生效, default: false.\n\n[Docs](https://wot-ui.cn/component/keyboard.html#attributes)"},"wd-keyboard/input":{"type":"event","description":"点击按键时触发\n\n[Docs](https://wot-ui.cn/component/keyboard.html#events)"},"wd-keyboard/delete":{"type":"event","description":"点击删除键时触发\n\n[Docs](https://wot-ui.cn/component/keyboard.html#events)"},"wd-keyboard/close":{"type":"event","description":"点击关闭按钮或非键盘区域时触发\n\n[Docs](https://wot-ui.cn/component/keyboard.html#events)"},"wd-row/gutter":{"type":"number","description":"列元素之间的间距(单位为px), default: 0.\n\n[Docs](https://wot-ui.cn/component/layout.html#row-attributes)"},"wd-col/span":{"type":"number","description":"列元素宽度, default: 24.\n\n[Docs](https://wot-ui.cn/component/layout.html#col-attributes)"},"wd-col/offset":{"type":"number","description":"列元素偏移距离, default: 0.\n\n[Docs](https://wot-ui.cn/component/layout.html#col-attributes)"},"wd-loading/type":{"type":"string","options":["ring","outline","spinner"],"description":"加载指示器类型, default: ring.\n\n[Docs](https://wot-ui.cn/component/loading.html#attributes)"},"wd-loading/color":{"type":"string","description":"设置加载指示器颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/loading.html#attributes)"},"wd-loading/size":{"type":"number | string","description":"设置加载指示器大小, default: 32px.\n\n[Docs](https://wot-ui.cn/component/loading.html#attributes)"},"wd-loadmore/state":{"type":"string","options":["loading","finished","error"],"description":"加载状态\n\n[Docs](https://wot-ui.cn/component/loadmore.html#attributes)"},"wd-loadmore/loading-text":{"type":"string","description":"加载提示文案, default: 加载中....\n\n[Docs](https://wot-ui.cn/component/loadmore.html#attributes)"},"wd-loadmore/finished-text":{"type":"string","description":"全部加载完的提示文案, default: 没有更多了.\n\n[Docs](https://wot-ui.cn/component/loadmore.html#attributes)"},"wd-loadmore/error-text":{"type":"string","description":"加载失败的提示文案, default: 加载失败,点击重试.\n\n[Docs](https://wot-ui.cn/component/loadmore.html#attributes)"},"wd-loadmore/loading-props":{"type":"`Partial`","description":"loading加载组件属性\n\n[Docs](https://wot-ui.cn/component/loadmore.html#attributes)"},"wd-loadmore/reload":{"type":"event","description":"state 为 error 加载错误时,点击文案触发 reload 事件\n\n[Docs](https://wot-ui.cn/component/loadmore.html#events)"},"wd-message-box/selector":{"type":"string","description":"指定唯一标识\n\n[Docs](https://wot-ui.cn/component/message-box.html#attributes)"},"wd-message-box/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/message-box.html#attributes)"},"wd-navbar/title":{"type":"string","description":"卡片标题\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/left-text":{"type":"string","description":"左侧文案\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/right-text":{"type":"string","description":"右侧文案\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/left-arrow":{"type":"boolean","options":["true, false"],"description":"显示左侧箭头, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/bordered":{"type":"boolean","options":["true, false"],"description":"显示下边框, default: true.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/fixed":{"type":"boolean","options":["true, false"],"description":"固定到顶部, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/placeholder":{"type":"boolean","options":["true, false"],"description":"固定在顶部时,在标签位置生成一个等高的占位元素, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/z-index":{"type":"number","description":"导航栏 z-index, default: 1.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/safe-area-inset-top":{"type":"boolean","options":["true, false"],"description":"开启顶部安全区适配, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/left-disabled":{"type":"boolean","options":["true, false"],"description":"禁用左侧按钮,禁用时透明度降低,且无法点击, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/right-disabled":{"type":"boolean","options":["true, false"],"description":"禁用右侧按钮,禁用时透明度降低,且无法点击, default: false.\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-attributes)"},"wd-navbar/click-left":{"type":"event","description":"点击左侧按钮时触发\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-events)"},"wd-navbar/click-right":{"type":"event","description":"点击右侧按钮时触发\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbar-events)"},"wd-navbar-capsule/back":{"type":"event","description":"点击返回按钮时触发\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbarcapsule-events)"},"wd-navbar-capsule/back-home":{"type":"event","description":"点击返回首页按钮时触发\n\n[Docs](https://wot-ui.cn/component/navbar.html#navbarcapsule-events)"},"wd-notice-bar/text":{"type":"`string` `string[]`","description":"设置通知栏文案\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/type":{"type":"`string`","options":["info","warning","danger"],"description":"设置通知栏类型, default: warning.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/prefix":{"type":"`string`","description":"设置左侧图标,使用 icon 章节中的图标名\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/scrollable":{"type":"`boolean`","description":"是否可以滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/delay":{"type":"`number`","description":"滚动动画初始延时,单位 秒(s), default: 1.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/speed":{"type":"`number`","description":"滚动速度,单位 px/s, default: 50.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/closable":{"type":"`boolean`","description":"是否可以关闭, default: false.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/wrapable":{"type":"`boolean`","description":"是否换行展示, default: false.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/color":{"type":"`string`","description":"文字、图标颜色\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/background-color":{"type":"`string`","description":"背景颜色\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/direction":{"type":"`NoticeBarScrollDirection`","options":["horizontal vertical"],"description":"滚动方向, default: horizontal.\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#attributes)"},"wd-notice-bar/close":{"type":"event","description":"关闭按钮点击时\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#events)"},"wd-notice-bar/next":{"type":"event","description":"下一次滚动前触发\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#events)"},"wd-notice-bar/click":{"type":"event","description":"点击时触发\n\n[Docs](https://wot-ui.cn/component/notice-bar.html#events)"},"wd-notify/type":{"type":"NotifyType","options":["primary success warning danger"],"description":"类型, default: danger.\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/message":{"type":"string","description":"展示文案,支持通过`\\n`换行\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/duration":{"type":"number","description":"展示时长(ms),值为 0 时,notify 不会消失, default: 3000.\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/z-index":{"type":"number","description":"层级, default: 99.\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/position":{"type":"NotifyPosition","options":["top bottom"],"description":"弹出位置, default: top.\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/color":{"type":"string","description":"字体颜色\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/background":{"type":"string","description":"背景颜色\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/safe-height":{"type":"number | string","description":"顶部安全高度\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/selector":{"type":"number","description":"指定唯一标识\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-notify/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/notify.html#attributes)"},"wd-number-keyboard/v-model:visible":{"type":"`boolean`","description":"是否展开, default: false.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/v-model":{"type":"`string`","description":"绑定的值\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/title":{"type":"`string`","description":"标题\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/mode":{"type":"`string`","options":["default, custom"],"description":"键盘模式, default: default.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/z-index":{"type":"`number`","description":"层级, default: 100.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/maxlength":{"type":"`number`","description":"最大长度, default: Infinity.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/show-delete-key":{"type":"`boolean`","description":"是否显示删除键, default: true.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/random-key-order":{"type":"`boolean`","description":"是否随机键盘按键顺序, default: false.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/close-text":{"type":"`string`","description":"确认按钮文本\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/delete-text":{"type":"`string`","description":"删除按钮文本\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/close-button-loading":{"type":"`boolean`","description":"关闭按钮是否显示加载状态, default: false.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/modal":{"type":"`boolean`","description":"是否显示蒙层遮罩, default: false.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/hide-on-click-outside":{"type":"`boolean`","description":"是否在点击外部时收起键盘, default: true.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/lock-scroll":{"type":"`boolean`","description":"是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/safe-area-inset-bottom":{"type":"`boolean`","description":"是否在底部安全区域内, default: true.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/extra-key":{"type":"`string` | `string[]`","description":"额外按键\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/root-portal":{"type":"`boolean`","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#attributes)"},"wd-number-keyboard/input":{"type":"event","description":"点击按键时触发\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#events)"},"wd-number-keyboard/delete":{"type":"event","description":"点击删除键时触发\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#events)"},"wd-number-keyboard/close":{"type":"event","description":"点击关闭按钮或非键盘区域时触发\n\n[Docs](https://wot-ui.cn/component/number-keyboard.html#events)"},"wd-overlay/show":{"type":"`boolean`","options":["true"],"description":"是否展示遮罩层, default: false.\n\n[Docs](https://wot-ui.cn/component/overlay.html#attributes)"},"wd-overlay/duration":{"type":"`string | number`","description":"动画时长,单位毫秒, default: 300.\n\n[Docs](https://wot-ui.cn/component/overlay.html#attributes)"},"wd-overlay/lock-scroll":{"type":"`boolean`","options":["false"],"description":"是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/overlay.html#attributes)"},"wd-overlay/z-index":{"type":"`number`","description":"层级, default: 10.\n\n[Docs](https://wot-ui.cn/component/overlay.html#attributes)"},"wd-overlay/custom-style":{"type":"`string`","description":"自定义样式\n\n[Docs](https://wot-ui.cn/component/overlay.html#attributes)"},"wd-pagination/v-model":{"type":"number","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/prev-text":{"type":"string","description":"上一页按钮文字, default: 上一页.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/next-text":{"type":"string","description":"下一页按钮文字, default: 下一页.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/total-page":{"type":"number","description":"总页数,如果有total,则优先使用total计算页数, default: 根据页数计算.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/page-size":{"type":"number","description":"分页大小, default: 10.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/total":{"type":"number","description":"总数据个数\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/show-icon":{"type":"boolean","description":"是否展示分页Icon, default: false.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/show-message":{"type":"boolean","description":"是否展示文字提示, default: false.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/hide-if-one-page":{"type":"boolean","description":"总页数只有一页时是否隐藏, default: true.\n\n[Docs](https://wot-ui.cn/component/pagination.html#attributes)"},"wd-pagination/change":{"type":"event","description":"值修改事件\n\n[Docs](https://wot-ui.cn/component/pagination.html#events)"},"wd-password-input/v-model":{"type":"string","description":"密码值\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/info":{"type":"string","description":"输入框下方文字提示\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/error-info":{"type":"string","description":"输入框下方错误提示\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/length":{"type":"number","description":"密码最大长度, default: 6.\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/gutter":{"type":"number | string","description":"输入框格子之间的间距,如 20px 2em,默认单位为 px, default: 0.\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/mask":{"type":"boolean","description":"是否隐藏密码内容, default: true.\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-password-input/focused":{"type":"boolean","description":"是否已聚焦,聚焦时会显示光标, default: false.\n\n[Docs](https://wot-ui.cn/component/password-input.html#attributes)"},"wd-picker-view/v-model":{"type":"string | number | boolean | array","description":"选中项,如果为多列选择器,则其类型应为数组\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/columns":{"type":"array","description":"选择器数据,可以为字符串数组,也可以为对象数组,如果为二维数组,则为多列选择器\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/loading":{"type":"boolean","description":"加载中, default: false.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/loading-color":{"type":"string","description":"加载的颜色,只能使用十六进制的色值写法,且不能使用缩写, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/columns-height":{"type":"number","description":"picker内部滚筒高, default: 231.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/item-height":{"type":"number","description":"picker item的高度, default: 35.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/value-key":{"type":"string","description":"选项对象中,value对应的 key, default: value.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/label-key":{"type":"string","description":"选项对象中,展示的文本对应的 key, default: label.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/column-change":{"type":"function","description":"接收 pickerView 实例、选中项、当前修改列的下标、resolve 作为入参,根据选中项和列下标进行判断,通过 pickerView 实例暴露出来的 `setColumnData` 方法修改其他列的数据源。\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/immediate-change":{"type":"boolean","description":"是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/picker-view.html#attributes)"},"wd-picker-view/change":{"type":"event","description":"选项值修改时触发\n\n[Docs](https://wot-ui.cn/component/picker-view.html#events)"},"wd-picker-view/pickstart":{"type":"event","description":"当滚动选择开始时候触发事件\n\n[Docs](https://wot-ui.cn/component/picker-view.html#events)"},"wd-picker-view/pickend":{"type":"event","description":"当滚动选择结束时候触发事件\n\n[Docs](https://wot-ui.cn/component/picker-view.html#events)"},"wd-picker/v-model":{"type":"string|number|boolean|array","description":"选中项,如果为多列选择器,则其类型应为数组\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/columns":{"type":"array","description":"选择器数据,可以为字符串数组,也可以为对象数组,如果为二维数组,则为多列选择器\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/loading":{"type":"boolean","description":"加载中, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/loading-color":{"type":"string","description":"加载的颜色,只能使用十六进制的色值写法,且不能使用缩写, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/columns-height":{"type":"number","description":"picker内部滚筒高, default: 231.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/value-key":{"type":"string","description":"选项对象中,value对应的 key, default: value.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/label-key":{"type":"string","description":"选项对象中,展示的文本对应的 key, default: label.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/title":{"type":"string","description":"弹出层标题\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/cancel-button-text":{"type":"string","description":"取消按钮文案, default: 取消.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/confirm-button-text":{"type":"string","description":"确认按钮文案, default: 完成.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/label":{"type":"string","description":"选择器左侧文案\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/placeholder":{"type":"string","description":"选择器占位符, default: 请选择.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/display-format":{"type":"function","description":"自定义展示文案的格式化函数,返回一个字符串\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/column-change":{"type":"function","description":"接收 pickerView 实例、选中项、当前修改列的下标、resolve 作为入参,根据选中项和列下标进行判断,通过 pickerView 实例暴露出来的 `setColumnData` 方法修改其他列的数据源\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/size":{"type":"string","options":["large"],"description":"设置选择器大小\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/error":{"type":"boolean","description":"是否为错误状态,错误状态时右侧内容为红色, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/required":{"type":"boolean","description":"表单属性,必填, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/marker-side":{"type":"string","options":["before","after"],"description":"必填标记位置, default: before.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/align-right":{"type":"boolean","description":"选择器的值靠右展示, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/use-label-slot":{"type":"boolean","description":"label 使用插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/use-default-slot":{"type":"boolean","description":"使用默认插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/before-confirm":{"type":"function","description":"确定前校验函数,接收 (value, resolve, picker) 参数,通过 resolve 继续执行 picker,resolve 接收1个boolean参数\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/z-index":{"type":"number","description":"弹窗层级, default: 15.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: true.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/ellipsis":{"type":"boolean","description":"是否超出隐藏, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/prop":{"type":"string","description":"表单域 `model` 字段名,在使用表单校验功能的情况下,该属性是必填的\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/rules":{"type":"`FormItemRule []`","description":"表单验证规则,结合`wd-form`组件使用, default: [].\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/immediate-change":{"type":"boolean","description":"是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/picker.html#attributes)"},"wd-picker/confirm":{"type":"event","description":"点击右侧按钮触发\n\n[Docs](https://wot-ui.cn/component/picker.html#events)"},"wd-picker/cancel":{"type":"event","description":"点击左侧按钮触发\n\n[Docs](https://wot-ui.cn/component/picker.html#events)"},"wd-picker/open":{"type":"event","description":"打开选择器弹出层时触发\n\n[Docs](https://wot-ui.cn/component/picker.html#events)"},"wd-picker/clear":{"type":"event","description":"点击清空按钮时触发\n\n[Docs](https://wot-ui.cn/component/picker.html#events)"},"wd-popover/v-model":{"type":"boolean","description":"手动状态是否可见, default: false.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/content":{"type":"string|array(当模式为菜单模式时,content 属性格式为 Array)","description":"显示的内容,也可以通过 `slot#content` 传入\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/mode":{"type":"string","options":["normal(普通模式)","menu(菜单模式)"],"description":"当前显示的模式,决定内容的展现形式, default: normal.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/placement":{"type":"string","options":["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"],"description":"popover 的出现位置, default: bottom.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/visible-arrow":{"type":"boolean","description":"是否显示 popover 箭头, default: true.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/disabled":{"type":"boolean","description":"popover 是否可用, default: false.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/offset":{"type":"number","description":"出现位置的偏移量, default: 0.\n\n[Docs](https://wot-ui.cn/component/popover.html#popover-attributes)"},"wd-popover/open":{"type":"event","description":"显示时触发\n\n[Docs](https://wot-ui.cn/component/popover.html#events)"},"wd-popover/close":{"type":"event","description":"隐藏时触发\n\n[Docs](https://wot-ui.cn/component/popover.html#events)"},"wd-popover/change":{"type":"event","description":"pop 显隐值变化时触发\n\n[Docs](https://wot-ui.cn/component/popover.html#events)"},"wd-popover/menuclick":{"type":"event","description":"menu 模式下点击某一选项触发\n\n[Docs](https://wot-ui.cn/component/popover.html#events)"},"wd-popup/v-model":{"type":"boolean","description":"弹出层是否显示\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/position":{"type":"string","options":["center","top","right","bottom","left"],"description":"弹出位置, default: center.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/closable":{"type":"boolean","description":"关闭按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/close-on-click-modal":{"type":"boolean","description":"点击遮罩是否关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/duration":{"type":"number | boolean","description":"动画持续时间, default: 300(ms).\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/z-index":{"type":"number","description":"设置层级, default: 10.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/custom-style":{"type":"string","description":"自定义弹出层样式\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/modal":{"type":"boolean","description":"是否显示遮罩, default: true.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/modal-style":{"type":"string","description":"自定义modal蒙层样式\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/hide-when-close":{"type":"boolean","description":"是否当关闭时将弹出层隐藏(display: none), default: true.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/lazy-render":{"type":"boolean","description":"弹层内容懒渲染,触发展示时才渲染内容, default: true.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/safe-area-inset-bottom":{"type":"boolean","description":"弹出面板是否设置底部安全距离(iphone X 类型的机型), default: false.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/transition":{"type":"string","options":["fade","fade-up","fade-down","fade-left","fade-right","slide-up","slide-down","slide-left","slide-right","zoom-in"],"description":"动画类型,参见 wd-transition 组件的name\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/lock-scroll":{"type":"boolean","description":"是否锁定背景滚动,锁定时蒙层里的内容也将无法滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/root-portal":{"type":"boolean","description":"是否从页面中脱离出来,用于解决各种 fixed 失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/popup.html#attributes)"},"wd-popup/close":{"type":"event","description":"弹出层关闭时触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/click-modal":{"type":"event","description":"点击遮罩时触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/before-enter":{"type":"event","description":"进入前触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/enter":{"type":"event","description":"进入时触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/after-enter":{"type":"event","description":"进入后触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/before-leave":{"type":"event","description":"离开前触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/leave":{"type":"event","description":"离开时触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-popup/after-leave":{"type":"event","description":"离开后触发\n\n[Docs](https://wot-ui.cn/component/popup.html#events)"},"wd-progress/percentage":{"type":"`number`","description":"进度数值,最大值 100, default: 0.\n\n[Docs](https://wot-ui.cn/component/progress.html#attributes)"},"wd-progress/hide-text":{"type":"`boolean`","description":"隐藏进度文字, default: false.\n\n[Docs](https://wot-ui.cn/component/progress.html#attributes)"},"wd-progress/color":{"type":"`string | ProgressColor[] | string[]`","description":"进度条颜色\n\n[Docs](https://wot-ui.cn/component/progress.html#attributes)"},"wd-progress/status":{"type":"`string`","options":["success","danger","warning"],"description":"进度条状态\n\n[Docs](https://wot-ui.cn/component/progress.html#attributes)"},"wd-progress/duration":{"type":"`number`","description":"进度增加 1%所需毫秒数, default: 30.\n\n[Docs](https://wot-ui.cn/component/progress.html#attributes)"},"wd-radio-group/v-model":{"type":"string | number | boolean","description":"会自动选中value对应的单选框\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/shape":{"type":"string","options":["dot","button","check"],"description":"单选框形状, default: check.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/size":{"type":"string","options":["large"],"description":"设置大小\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/checked-color":{"type":"string","description":"选中的颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/max-width":{"type":"string","description":"文字位置最大宽度\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/inline":{"type":"boolean","description":"同行展示, default: false.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/cell":{"type":"boolean","description":"表单模式, default: false.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/icon-placement":{"type":"string","options":["left","right","auto"],"description":"勾选图标对齐方式, default: auto.\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-attributes)"},"wd-radio-group/change":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/radio.html#radiogroup-events)"},"wd-radio/value":{"type":"string | number | boolean","description":"单选框选中时的值。会自动匹配radioGroup的value\n\n[Docs](https://wot-ui.cn/component/radio.html#radio-attributes)"},"wd-radio/shape":{"type":"string","options":["dot","button","check"],"description":"单选框形状, default: check.\n\n[Docs](https://wot-ui.cn/component/radio.html#radio-attributes)"},"wd-radio/checked-color":{"type":"string","description":"选中的颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/radio.html#radio-attributes)"},"wd-radio/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/radio.html#radio-attributes)"},"wd-rate/v-model":{"type":"number","description":"当前分数\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/num":{"type":"number","description":"评分最大值, default: 5.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/readonly":{"type":"boolean","description":"是否只读, default: false.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/size":{"type":"string","description":"图标大小, default: 16px.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/space":{"type":"string","description":"图标间距, default: 4px.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/color":{"type":"string","description":"未选中的图标颜色, default: #E8E8E8.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/active-color":{"type":"string|array","description":"选中的图标颜色(支持传颜色数组,共有 2 个元素,为 2 个分段所对应的颜色), default: linear-gradient(180deg, rgba(255,238,0,1) 0%,rgba(250,176,21,1) 100%).\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/icon":{"type":"string","description":"未选中的图标类名, default: wd-icon-star-on.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/active-icon":{"type":"string","description":"选中的图标类名, default: wd-icon-star-on.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/disabled-color":{"type":"string","description":"禁用的图标颜色, default: linear-gradient(315deg, rgba(177,177,177,1) 0%,rgba(199,199,199,1) 100%).\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/allow-half":{"type":"boolean","description":"是否允许半选, default: false.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/clearable":{"type":"boolean","description":"是否允许再次点击后清除, default: false.\n\n[Docs](https://wot-ui.cn/component/rate.html#attributes)"},"wd-rate/change":{"type":"event","description":"点击icon,修改分值事件\n\n[Docs](https://wot-ui.cn/component/rate.html#events)"},"wd-resize/custom-style":{"type":"string","description":"自定义根节点样式\n\n[Docs](https://wot-ui.cn/component/resize.html#attributes)"},"wd-resize/custom-class":{"type":"string","description":"自定义根节点样式类\n\n[Docs](https://wot-ui.cn/component/resize.html#attributes)"},"wd-resize/custom-container-class":{"type":"string","description":"自定义容器样式类\n\n[Docs](https://wot-ui.cn/component/resize.html#attributes)"},"wd-resize/resize":{"type":"event","description":"尺寸发生变化时触发\n\n[Docs](https://wot-ui.cn/component/resize.html#events)"},"wd-search/placeholder":{"type":"string","description":"搜索框占位文本, default: 搜索.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/placeholder-left":{"type":"boolean","description":"placeholder 居左边, default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/cancel-txt":{"type":"string","description":"搜索框右侧文本, default: 取消.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/light":{"type":"boolean","description":"搜索框亮色(白色), default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/hide-cancel":{"type":"boolean","description":"是否隐藏右侧文本, default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/disabled":{"type":"boolean","description":"是否禁用搜索框, default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/maxlength":{"type":"string | number","description":"原生属性,设置最大长度。-1 表示无限制, default: -1.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/v-model":{"type":"string","description":"输入框内容,双向绑定\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/use-suffix-slot":{"type":"boolean","description":"~~是否使用输入框右侧插槽~~**(已废弃,将在下一个 minor 版本被移除,直接使用插槽即可)**, default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/focus":{"type":"event","description":"输入框聚焦事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/focus-when-clear":{"type":"boolean","description":"是否在点击清除按钮时聚焦输入框, default: false.\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/placeholder-style":{"type":"string","description":"原生属性,指定 placeholder 的样式,目前仅支持color,font-size和font-weight\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/placeholder-class":{"type":"string","description":"原生属性,指定 placeholder 的样式类\n\n[Docs](https://wot-ui.cn/component/search.html#attributes)"},"wd-search/blur":{"type":"event","description":"监听输入框失焦事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/search":{"type":"event","description":"监听输入框搜索事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/clear":{"type":"event","description":"监听输入框清空按钮事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/cancel":{"type":"event","description":"监听输入框右侧文本点击事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/change":{"type":"event","description":"监听输入框内容变化事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-search/click":{"type":"event","description":"禁用状态下点击事件\n\n[Docs](https://wot-ui.cn/component/search.html#events)"},"wd-segmented/v-model:value":{"type":"string | number","description":"当前选中的值\n\n[Docs](https://wot-ui.cn/component/segmented.html#attributes)"},"wd-segmented/disabled":{"type":"boolean","options":["true","false"],"description":"是否禁用分段器, default: false.\n\n[Docs](https://wot-ui.cn/component/segmented.html#attributes)"},"wd-segmented/size":{"type":"string","options":["large","middle","small"],"description":"控件尺寸, default: middle.\n\n[Docs](https://wot-ui.cn/component/segmented.html#attributes)"},"wd-segmented/options":{"type":"`string[] | number[] | SegmentedOption[]`","description":"数据集合, default: [].\n\n[Docs](https://wot-ui.cn/component/segmented.html#attributes)"},"wd-segmented/vibrate-short":{"type":"boolean","options":["true","false"],"description":"切换选项时是否振动, default: false.\n\n[Docs](https://wot-ui.cn/component/segmented.html#attributes)"},"wd-segmented/change":{"type":"event","description":"选项切换时触发\n\n[Docs](https://wot-ui.cn/component/segmented.html#events)"},"wd-segmented/click":{"type":"event","description":"选项点击时触发\n\n[Docs](https://wot-ui.cn/component/segmented.html#events)"},"wd-select-picker/v-model":{"type":"array|number|boolean|string","description":"选中项,`type`为`checkbox`时类型为array;`type`为`radio`时类型为number/boolean/string\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/columns":{"type":"array","description":"选择器数据,一维数组\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/type":{"type":"string","options":["checkbox","radio"],"description":"单复选选择器类型, default: checkbox.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/value-key":{"type":"string","description":"选项对象中value对应的key, default: value.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/label-key":{"type":"string","description":"选项对象中展示文本对应的key, default: label.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/title":{"type":"string","description":"弹出层标题\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/label":{"type":"string","description":"选择器左侧文案\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/placeholder":{"type":"string","description":"选择器占位符, default: 请选择.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/loading":{"type":"boolean","description":"加载中, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/loading-color":{"type":"String","description":"加载颜色(十六进制,不能缩写), default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/display-format":{"type":"function","description":"自定义展示文案的格式化函数\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/confirm-button-text":{"type":"string","description":"确认按钮文案, default: 确认.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/size":{"type":"string","options":["large"],"description":"选择器大小\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/label-width":{"type":"string","description":"左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/error":{"type":"boolean","description":"错误状态(右侧内容红色), default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/required":{"type":"boolean","description":"必填样式, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/marker-side":{"type":"string","options":["before","after"],"description":"必填标记位置, default: before.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/align-right":{"type":"boolean","description":"值靠右展示, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/before-confirm":{"type":"function","description":"确定前校验函数,接收(value,resolve)参数\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/select-size":{"type":"string","options":["large"],"description":"picker内部选项组尺寸\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/min":{"type":"number","description":"最小选中数量(仅checkbox), default: 0.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/max":{"type":"number","description":"最大选中数量(0为无限,仅checkbox), default: 0.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/checked-color":{"type":"string","description":"选中颜色(单/复选框), default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/use-default-slot":{"type":"boolean","description":"使用默认插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/use-label-slot":{"type":"boolean","description":"使用label插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/close-on-click-modal":{"type":"boolean","description":"点击遮罩关闭, default: true.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/z-index":{"type":"number","description":"弹窗层级, default: 15.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/safe-area-inset-bottom":{"type":"boolean","description":"底部安全距离(iPhone X类机型), default: true.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/filterable":{"type":"boolean","description":"可搜索(仅本地), default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/filter-placeholder":{"type":"string","description":"搜索框占位符, default: 搜索.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/ellipsis":{"type":"boolean","description":"超出隐藏, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/scroll-into-view":{"type":"boolean","description":"重新打开时滚动到选中项, default: true.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/show-confirm":{"type":"boolean","description":"是否显示确认按钮(仅radio), default: true.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/prop":{"type":"string","description":"表单域model字段名(校验必填)\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/rules":{"type":"`FormItemRule[]`","description":"表单验证规则(配合wd-form), default: [].\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/root-portal":{"type":"boolean","description":"脱离页面解决fixed失效问题, default: false.\n\n[Docs](https://wot-ui.cn/component/select-picker.html#attributes)"},"wd-select-picker/confirm":{"type":"event","description":"点击确认时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-select-picker/change":{"type":"event","description":"picker 内选项更改时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-select-picker/cancel":{"type":"event","description":"点击关闭按钮或者蒙层时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-select-picker/close":{"type":"event","description":"弹窗关闭时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-select-picker/open":{"type":"event","description":"弹窗打开时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-select-picker/clear":{"type":"event","description":"点击清空按钮时触发\n\n[Docs](https://wot-ui.cn/component/select-picker.html#events)"},"wd-sidebar-item/label":{"type":"string","description":"当前选项标题\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/value":{"type":"`number | string`","description":"当前选项的值,唯一标识\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/icon":{"type":"string","description":"图标\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/badge":{"type":"`number | string | null`","description":"徽标属性,徽标显示值\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/is-dot":{"type":"boolean","description":"徽标属性,是否点状徽标, default: false.\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/max":{"type":"number","description":"徽标属性,徽标最大值, default: 99.\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar-item/badge-props":{"type":"BadgeProps","description":"自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](/component/badge#attributes)\n\n[Docs](https://wot-ui.cn/component/sidebar.html#sidebaritem-attributes)"},"wd-sidebar/v-model":{"type":"string | number","description":"当前导航项的索引, default: 0.\n\n[Docs](https://wot-ui.cn/component/sidebar.html#attributes)"},"wd-sidebar/before-change":{"type":"function","description":"切换导航项前钩子,可以在切换标签前执行特定的逻辑,接收 { value, resolve } 参数,通过 resolve 继续执行,resolve 接收 1 个 boolean 参数\n\n[Docs](https://wot-ui.cn/component/sidebar.html#attributes)"},"wd-sidebar/change":{"type":"event","description":"选项切换时触发\n\n[Docs](https://wot-ui.cn/component/sidebar.html#events)"},"wd-signature/pen-color":{"type":"string","description":"签名笔颜色, default: #000000.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/line-width":{"type":"number","description":"签名笔宽度, default: 3.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/height":{"type":"number","description":"画布的高度, default: 200.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/width":{"type":"number","description":"画布的宽度, default: 300.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/clear-text":{"type":"string","description":"清空按钮的文本\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/confirm-text":{"type":"string","description":"确认按钮的文本\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/file-type":{"type":"string","description":"导出图片类型, default: png.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/quality":{"type":"number","description":"导出图片质量(0-1), default: 1.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/export-scale":{"type":"number","description":"导出图片的缩放比例, default: 1.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/disabled":{"type":"boolean","description":"是否禁用签名板, default: false.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/background-color":{"type":"string","description":"画板的背景色\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/disable-scroll":{"type":"boolean","description":"是否禁用画布滚动, default: true.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/enable-history":{"type":"boolean","description":"是否开启历史记录, default: false.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/step":{"type":"number","description":"历史记录步长, default: 1.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/pressure":{"type":"boolean","description":"是否启用笔锋模式, default: false.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/min-width":{"type":"number","description":"笔锋模式最小宽度, default: 2.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/max-width":{"type":"number","description":"笔锋模式最大宽度, default: 6.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/min-speed":{"type":"number","description":"笔锋模式速度阈值, default: 1.5.\n\n[Docs](https://wot-ui.cn/component/signature.html#attributes)"},"wd-signature/start":{"type":"event","description":"开始签名时触发\n\n[Docs](https://wot-ui.cn/component/signature.html#events)"},"wd-signature/end":{"type":"event","description":"结束签名时触发\n\n[Docs](https://wot-ui.cn/component/signature.html#events)"},"wd-signature/signing":{"type":"event","description":"签名过程中触发\n\n[Docs](https://wot-ui.cn/component/signature.html#events)"},"wd-signature/confirm":{"type":"event","description":"确认签名时触发\n\n[Docs](https://wot-ui.cn/component/signature.html#events)"},"wd-signature/clear":{"type":"event","description":"清空签名时触发\n\n[Docs](https://wot-ui.cn/component/signature.html#events)"},"wd-skeleton/theme":{"type":"SkeletonTheme","options":["text avatar paragraph image"],"description":"骨架图风格\n\n[Docs](https://wot-ui.cn/component/skeleton.html#attributes)"},"wd-skeleton/row-col":{"type":"SkeletonRowCol","description":"用于设置行列数量、宽度高度、间距等
【示例一】`[1, 1, 2]` 表示输出三行骨架图,第一行一列,第二行一列,第三行两列。
【示例二】`[1, 1, { width: '100px' }]` 表示自定义第三行的宽度为 `100px`。
【示例三】`[1, 2, [{ width, height }, { width, height, marginLeft }]]` 表示第三行有两列,且自定义宽度、高度和间距\n\n[Docs](https://wot-ui.cn/component/skeleton.html#attributes)"},"wd-skeleton/loading":{"type":"boolean","description":"是否为加载状态,如果是则显示骨架图,如果不是则显示加载完成的内容, default: true.\n\n[Docs](https://wot-ui.cn/component/skeleton.html#attributes)"},"wd-skeleton/animation":{"type":"SkeletonAnimation","options":["gradient flashed"],"description":"动画效果\n\n[Docs](https://wot-ui.cn/component/skeleton.html#attributes)"},"wd-slide-verify/width":{"type":"number | string","description":"滑动条宽度(单位:px), default: 300.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/height":{"type":"number | string","description":"滑块高度(单位:px), default: 40.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/tolerance":{"type":"number | string","description":"容错范围(单位:px),距离终点多少距离内视为验证通过, default: 10.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/text":{"type":"string","description":"提示文字, default: 向右滑动验证.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/success-text":{"type":"string","description":"验证成功提示文字, default: 验证通过.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/background-color":{"type":"string","description":"背景颜色, default: #F5F7FA.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/active-background-color":{"type":"string","description":"激活时的背景颜色, default: #49C75F.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/icon":{"type":"string","description":"滑块图标名称, default: a-chevron-rightdouble.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/success-icon":{"type":"string","description":"成功图标名称, default: check.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/icon-size":{"type":"number | string","description":"图标大小(单位:px), default: 20.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/success-icon-size":{"type":"number | string","description":"成功图标大小(单位:px), default: 12.\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#attributes)"},"wd-slide-verify/success":{"type":"event","description":"验证成功时触发\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#events)"},"wd-slide-verify/fail":{"type":"event","description":"验证失败时触发\n\n[Docs](https://wot-ui.cn/component/slide-verify.html#events)"},"wd-slider/v-model":{"type":"number | array","description":"滑块值,如果为array,则为双向滑块\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/hide-min-max":{"type":"boolean","description":"是否显示左右的最大最小值, default: false.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/hide-label":{"type":"boolean","description":"是否显示当前滑块值, default: false.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/max":{"type":"number","description":"最大值, default: 100.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/min":{"type":"number","description":"最小值,允许负数`(1.2.19)`, default: 0.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/step":{"type":"number","description":"步进值, default: 1.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/active-color":{"type":"string","description":"进度条激活背景颜色, default: linear-gradient(315deg, rgba(81,124,240,1) 0%,rgba(118,158,245,1) 100%).\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/inactive-color":{"type":"string","description":"进度条未激活背景颜色, default: #e5e5e5.\n\n[Docs](https://wot-ui.cn/component/slider.html#attributes)"},"wd-slider/dragstart":{"type":"event","description":"开始移动时触发\n\n[Docs](https://wot-ui.cn/component/slider.html#events)"},"wd-slider/dragmove":{"type":"event","description":"移动滑块时触发\n\n[Docs](https://wot-ui.cn/component/slider.html#events)"},"wd-slider/dragend":{"type":"event","description":"移动结束时触发\n\n[Docs](https://wot-ui.cn/component/slider.html#events)"},"wd-sort-button/v-model":{"type":"number","options":["-1,0,1"],"description":"选中的箭头方向:1 升序,0 重置状态,-1 降序。, default: 0或-1.\n\n[Docs](https://wot-ui.cn/component/sort-button.html#attributes)"},"wd-sort-button/title":{"type":"string","description":"排序按钮展示的文案。\n\n[Docs](https://wot-ui.cn/component/sort-button.html#attributes)"},"wd-sort-button/allow-reset":{"type":"boolean","description":"展示双箭头时,允许手动重置按钮。, default: false.\n\n[Docs](https://wot-ui.cn/component/sort-button.html#attributes)"},"wd-sort-button/desc-first":{"type":"boolean","description":"优先切换为降序,不开启则默认优先切换为升序, default: false.\n\n[Docs](https://wot-ui.cn/component/sort-button.html#attributes)"},"wd-sort-button/line":{"type":"boolean","description":"展示下划线,当只有一个排序按钮时,应该不展示下划线, default: true.\n\n[Docs](https://wot-ui.cn/component/sort-button.html#attributes)"},"wd-sort-button/change":{"type":"event","description":"监听排序修改\n\n[Docs](https://wot-ui.cn/component/sort-button.html#events)"},"wd-status-tip/image":{"type":"string","options":["search","network","content","collect","comment","halo","message"],"description":"缺省图片类型,支持传入图片 URL, default: network.\n\n[Docs](https://wot-ui.cn/component/status-tip.html#attributes)"},"wd-status-tip/image-size":{"type":"`string`|`number`|`ImageSize`","description":"图片大小,默认单位为 `px`\n\n[Docs](https://wot-ui.cn/component/status-tip.html#attributes)"},"wd-status-tip/tip":{"type":"string","description":"提示文案\n\n[Docs](https://wot-ui.cn/component/status-tip.html#attributes)"},"wd-status-tip/image-mode":{"type":"`ImageMode`","description":"预览图片的 mode 属性, default: aspectFit.\n\n[Docs](https://wot-ui.cn/component/status-tip.html#attributes)"},"wd-status-tip/url-prefix":{"type":"string","description":"图片路径前缀,指向图片所在目录,用于拼接图片 URL。, default: https://registry.npmmirror.com/wot-design-uni-assets//files/.\n\n[Docs](https://wot-ui.cn/component/status-tip.html#attributes)"},"wd-steps/active":{"type":"number","description":"步骤进度, default: 0.\n\n[Docs](https://wot-ui.cn/component/steps.html#steps-attributes)"},"wd-steps/vertical":{"type":"boolean","description":"垂直方向, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#steps-attributes)"},"wd-steps/dot":{"type":"dot","description":"点状步骤条, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#steps-attributes)"},"wd-steps/space":{"type":"string","description":"步骤条间距,默认为自动计算\n\n[Docs](https://wot-ui.cn/component/steps.html#steps-attributes)"},"wd-steps/align-center":{"type":"boolean","description":"是否水平居中,只对横向步骤条有效, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#steps-attributes)"},"wd-step/title":{"type":"string","description":"标题,如果没有则为默认文案。当只有标题而没有描述时,标题的字号会小2号\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/stitle-slots":{"type":"boolean","description":" 使用 title 插槽时需要设置该属性,已废弃,直接使用title插槽即可, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/description":{"type":"string","description":"描述\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/sdescription-slots":{"type":"boolean","description":"使用 description 插槽时需要设置该属性,已废弃,直接使用description插槽即可, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/icon":{"type":"string","description":"图标\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/sicon-slots":{"type":"boolean","description":"使用 icon 插槽时需要设置该属性,已废弃,直接使用icon插槽即可, default: false.\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-step/status":{"type":"string","options":["finished","process","error"],"description":"步骤状态\n\n[Docs](https://wot-ui.cn/component/steps.html#step-attributes)"},"wd-sticky/z-index":{"type":"number","description":"堆叠顺序, default: 1.\n\n[Docs](https://wot-ui.cn/component/sticky.html#sticky-attributes)"},"wd-sticky/offset-top":{"type":"number","description":"吸顶距离, default: 0.\n\n[Docs](https://wot-ui.cn/component/sticky.html#sticky-attributes)"},"wd-swipe-action/v-model":{"type":"string","options":["left","close","right"],"description":"滑动按钮的状态, default: close.\n\n[Docs](https://wot-ui.cn/component/swipe-action.html#attributes)"},"wd-swipe-action/disabled":{"type":"boolean","description":"是否禁用滑动操作, default: false.\n\n[Docs](https://wot-ui.cn/component/swipe-action.html#attributes)"},"wd-swipe-action/before-close":{"type":"function","description":"关闭滑动按钮前的钩子函数\n\n[Docs](https://wot-ui.cn/component/swipe-action.html#attributes)"},"wd-swipe-action/click":{"type":"event","description":"当滑动按钮打开时,点击整个滑动操作容器触发 click 事件\n\n[Docs](https://wot-ui.cn/component/swipe-action.html#events)"},"wd-swiper/autoplay":{"type":"`boolean`","description":"是否自动播放, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/v-model:current":{"type":"`number`","description":"控制当前轮播在哪一项(下标), default: 0.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/direction":{"type":"`DirectionType`","options":["horizontal, vertical"],"description":"轮播滑动方向, default: horizontal.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/display-multiple-items":{"type":"`number`","description":"同时显示的滑块数量, default: 1.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/duration":{"type":"`number`","description":"滑动动画时长, default: 300.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/easing-function":{"type":"`EasingType`","description":"切换缓动动画类型(微信小程序、快手小程序、京东小程序), default: default.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/height":{"type":"`string | number`","description":"轮播的高度, default: 192.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/interval":{"type":"`number`","description":"轮播间隔时间, default: 5000.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/list":{"type":"`string[] | SwiperList[]`","description":"图片列表\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/loop":{"type":"`boolean`","description":"是否循环播放, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/next-margin":{"type":"`string | number`","description":"后边距, default: 0.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/indicator-position":{"type":"`IndicatorPositionType`","options":["left, top-left, top, top-right, bottom-left, bottom, bottom-right, right"],"description":"指示器展示位置, default: bottom.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/previous-margin":{"type":"`string | number`","description":"前边距, default: 0.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/snap-to-edge":{"type":"`boolean`","description":"边距是否应用到第一个、最后一个元素, default: false.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/indicator":{"type":"`SwiperIndicatorProps | boolean`","description":"指示器全部配置, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/image-mode":{"type":"`string`","options":["参考官方文档[mode](https:","","uniapp.dcloud.net.cn","component","image.html#mode-%E6%9C%89%E6%95%88%E5%80%BC)"],"description":"图片裁剪、缩放的模式, default: aspectFill.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/autoplay-video":{"type":"`boolean`","description":"视频是否自动播放,默认自动播放, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/stop-previous-video":{"type":"`boolean`","description":"切换轮播项时是否停止上一个视频的播放,默认切换时停止播放上一个视频, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/stop-autoplay-when-video-play":{"type":"`boolean`","description":"视频播放时是否停止自动轮播, default: false.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/custom-style":{"type":"`string`","description":"外部自定义样式\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/value-key":{"type":"`string`","description":"选项对象中,value 对应的 key, default: value.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/text-key":{"type":"`string`","description":"选项对象中,标题 text 对应的 key, default: text.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/adjust-height":{"type":"`string`","options":["first'","'current'","'highest'","'none"],"description":"自动以指定滑块的高度为整个容器的高度。当 vertical 为 true 时,默认不调整,仅支付宝小程序支持。, default: highest.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/adjust-vertical-height":{"type":"`boolean`","description":"vertical 为 true 时强制使 adjust-height 生效。仅支付宝小程序支持。, default: false.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/ muted":{"type":"`boolean`","description":"视频是否静音播放, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/video-loop":{"type":"`boolean`","description":"视频是否循环播放, default: true.\n\n[Docs](https://wot-ui.cn/component/swiper.html#attributes)"},"wd-swiper/click":{"type":"event","description":"点击轮播项时触发\n\n[Docs](https://wot-ui.cn/component/swiper.html#events)"},"wd-swiper/change":{"type":"event","description":"轮播切换时触发\n\n[Docs](https://wot-ui.cn/component/swiper.html#events)"},"wd-switch/v-model":{"type":"boolean | string | number","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/active-value":{"type":"boolean | string | number","description":"打开时的值, default: true.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/inactive-value":{"type":"boolean | string | number","description":"关闭时的值, default: false.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/active-color":{"type":"string","description":"打开时的背景色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/inactive-color":{"type":"string","description":"关闭时的背景色,默认为白色,所以有灰色边框,如果设置了该值,则会自动去除灰色边框, default: #fff.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/size":{"type":"string|number","description":"开关大小,可以为任何单位的字符串尺寸, default: 28px.\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/before-change":{"type":"function","description":"修改前钩子\n\n[Docs](https://wot-ui.cn/component/switch.html#attributes)"},"wd-switch/change":{"type":"event","description":"值修改事件\n\n[Docs](https://wot-ui.cn/component/switch.html#events)"},"wd-tabbar-item/title":{"type":"string","description":"标签页的标题\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/name":{"type":"string | number","description":"唯一标识符\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/icon":{"type":"string","description":"图标\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/value":{"type":"number | string","description":"徽标显示值\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/is-dot":{"type":"boolean","description":"是否点状徽标, default: false.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/max":{"type":"number","description":"徽标最大值, default: 99.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar-item/badge-props":{"type":"BadgeProps","description":"自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](/component/badge#attributes)\n\n[Docs](https://wot-ui.cn/component/tabbar.html#tabbaritem-attributes)"},"wd-tabbar/v-model":{"type":"number | string","description":"选中标签的索引值或者名称, default: 0.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/fixed":{"type":"boolean","description":"是否固定在底部, default: false.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/safe-area-inset-bottom":{"type":"boolean","description":"是否设置底部安全距离(iPhone X 类型的机型), default: false.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/bordered":{"type":"boolean","description":"是否显示顶部边框, default: true.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/shape":{"type":"TabbarShape","options":["default'","'round"],"description":"标签栏的形状, default: default.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/active-color":{"type":"string","description":"激活标签的颜色\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/inactive-color":{"type":"string","description":"未激活标签的颜色\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/placeholder":{"type":"boolean","description":"固定在底部时,是否在标签位置生成一个等高的占位元素, default: false.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/z-index":{"type":"number","description":"tabbar组件的层级, default: 500.\n\n[Docs](https://wot-ui.cn/component/tabbar.html#attributes)"},"wd-tabbar/change":{"type":"event","description":"tabbar标签切换时触发\n\n[Docs](https://wot-ui.cn/component/tabbar.html#events)"},"wd-table-column/prop":{"type":"string","description":"字段名称,对应列内容的字段名\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table-column/label":{"type":"string","description":"显示的标题\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table-column/width":{"type":"number | string","description":"对应列的宽度,单位为 px, default: 100.\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table-column/sortable":{"type":"boolean","description":"是否开启列排序, default: false.\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table-column/fixed":{"type":"boolean","description":"是否固定本列, default: false.\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table-column/align":{"type":"AlignType","options":["left, center, right"],"description":"列的对齐方式, default: left.\n\n[Docs](https://wot-ui.cn/component/table.html#tablecolumn-attributes)"},"wd-table/data":{"type":"Array","description":"显示的数据\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/border":{"type":"boolean","description":"是否带有边框, default: true.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/stripe":{"type":"boolean","description":"是否为斑马纹表, default: true.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/height":{"type":"`number | string`","description":"Table 的高度,无默认值,设置后自动开启固定表头。\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/row-height":{"type":"`number | string`","description":"行高, default: 50.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/show-header":{"type":"boolean","description":"是否显示表头, default: true.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/ellipsis":{"type":"boolean","description":"是否超出 2 行隐藏, default: true.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/index":{"type":"`boolean | TableColumnProps`","description":"是否显示索引列,可传入`boolean`也可传入 column 配置, default: false.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/fixed-header":{"type":"boolean","description":"是否固定表头,需要结合`height`才可以实现固定表头的效果。, default: true.\n\n[Docs](https://wot-ui.cn/component/table.html#attributes)"},"wd-table/sort-method":{"type":"event","description":"指定数据按照哪个属性进行排序,仅当 sortable 设置为 true 的时候有效\n\n[Docs](https://wot-ui.cn/component/table.html#events)"},"wd-table/row-click":{"type":"event","description":"当某一行被点击时会触发该事件\n\n[Docs](https://wot-ui.cn/component/table.html#events)"},"wd-tabs/v-model":{"type":"string | number","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/slidable-num":{"type":"number","description":"可滑动的标签数阈值,`slidable`设置为`auto`时生效, default: 6.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/map-num":{"type":"number","description":"显示导航地图的标签数阈值, default: 10.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/map-title":{"type":"string","description":"导航地图标题\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/sticky":{"type":"boolean","description":"粘性布局, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/offset-top":{"type":"number","description":"粘性布局时距离窗口顶部距离, default: 0.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/swipeable":{"type":"boolean","description":"开启手势滑动, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/auto-line-width":{"type":"boolean","description":"底部条宽度跟随文字,指定`lineWidth`时此选项不生效, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/line-width":{"type":"number","description":"底部条宽度,单位像素, default: 19.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/line-height":{"type":"number","description":"底部条高度,单位像素, default: 3.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/color":{"type":"string","description":"文字颜色\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/inactive-color":{"type":"string","description":"非活动标签文字颜色\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/animated":{"type":"boolean","description":"是否开启切换标签内容时的转场动画, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/duration":{"type":"number","description":"切换动画过渡时间,单位毫秒, default: 300.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/slidable":{"type":"TabsSlidable","options":["always"],"description":"是否开启滚动导航, default: auto.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/show-scrollbar":{"type":"boolean","description":"标签可滑动时是否显示滚动条, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/badge-props":{"type":"BadgeProps","description":"自定义徽标的属性,传入的对象会被透传给 [Badge 组件的 props](/component/badge#attributes)\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-attributes)"},"wd-tabs/change":{"type":"event","description":"绑定值变化时触发\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-events)"},"wd-tabs/click":{"type":"event","description":"点击标题时触发\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-events)"},"wd-tabs/disabled":{"type":"event","description":"点击禁用的标题时触发\n\n[Docs](https://wot-ui.cn/component/tabs.html#tabs-events)"},"wd-tab/name":{"type":"string","description":"标签页名称\n\n[Docs](https://wot-ui.cn/component/tabs.html#tab-attributes)"},"wd-tab/title":{"type":"string","description":"标题\n\n[Docs](https://wot-ui.cn/component/tabs.html#tab-attributes)"},"wd-tab/disabled":{"type":"boolean","description":"禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tab-attributes)"},"wd-tab/lazy":{"type":"boolean","description":"延迟渲染,默认开启,开启`animated`后此选项始终为`false`, default: true.\n\n[Docs](https://wot-ui.cn/component/tabs.html#tab-attributes)"},"wd-tag/type":{"type":"string","options":["default","primary","danger","warning","success"],"description":"标签类型, default: default.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/plain":{"type":"boolean","description":"幽灵类型, default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/mark":{"type":"boolean","description":"标记类型, default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/round":{"type":"boolean","description":"圆角类型, default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/icon":{"type":"string","description":"左侧图标\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/color":{"type":"string","description":"文字颜色\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/bg-color":{"type":"string","description":"背景色和边框色\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/closable":{"type":"boolean","description":"可关闭(只对圆角类型支持), default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/use-icon-slot":{"type":"boolean","description":"开启图标插槽, default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/dynamic":{"type":"boolean","description":"是否为新增标签, default: false.\n\n[Docs](https://wot-ui.cn/component/tag.html#attributes)"},"wd-tag/click":{"type":"event","description":"标签点击时触发\n\n[Docs](https://wot-ui.cn/component/tag.html#events)"},"wd-tag/close":{"type":"event","description":"点击关闭按钮时触发\n\n[Docs](https://wot-ui.cn/component/tag.html#events)"},"wd-tag/confirm":{"type":"event","description":"新增标签输入内容确定后触发\n\n[Docs](https://wot-ui.cn/component/tag.html#events)"},"wd-text/type":{"type":"string","options":["primary'","'error'","'warning'","'success'","'default"],"description":"主题类型, default: default.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/text":{"type":"string | number","description":"文字\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/size":{"type":"string","description":"字体大小\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/mode":{"type":"string","options":["text'","'date'","'phone'","'name'","'price"],"description":"文本处理的匹配模式, default: text.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/bold":{"type":"boolean","description":"是否粗体,默认 normal, default: false.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/format":{"type":"boolean","options":["当 mode 为 phone 和 name 时生效"],"description":"是否脱敏, default: false.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/color":{"type":"string","description":"文字颜色\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/lines":{"type":"number","description":"文本显示的行数,如果设置,超出此行数,将会显示省略号。最大值为 5。\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/line-height":{"type":"string","description":"文本行高\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/decoration":{"type":"string","options":["underline'","'line-through'","'overline"],"description":"文字装饰,下划线,中划线等, default: none.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/prefix":{"type":"string","description":"前置内容\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/suffix":{"type":"string","description":"后置内容\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/call":{"type":"boolean","description":"mode=phone 时,点击文本是否拨打电话, default: false.\n\n[Docs](https://wot-ui.cn/component/text.html#attributes)"},"wd-text/click":{"type":"event","description":"标签点击时触发\n\n[Docs](https://wot-ui.cn/component/text.html#events)"},"wd-textarea/v-model":{"type":"string | number","description":"绑定值\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/placeholder":{"type":"string","description":"占位文本, default: 请输入....\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/placeholder-style":{"type":"string","description":"原生属性,指定 placeholder 的样式\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/placeholder-class":{"type":"string","description":"原生属性,指定 placeholder 的样式类\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/disabled":{"type":"boolean","description":"原生属性,禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/maxlength":{"type":"number","description":"原生属性,最大输入长度,设置为 -1 时不限制最大长度\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/auto-focus":{"type":"boolean","description":"原生属性,自动聚焦,拉起键盘, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/focus":{"type":"event","description":"监听输入框 focus 事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/auto-height":{"type":"boolean","description":"原生属性,是否自动增高(设置时 style.height 不生效), default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/fixed":{"type":"boolean","description":"在 position:fixed 区域时需要设置为 true, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/cursor-spacing":{"type":"number","description":"原生属性,指定光标与键盘的距离(取 textarea 底部距离和该值的最小值), default: 0.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/cursor":{"type":"number","description":"原生属性,指定 focus 时的光标位置, default: -1.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/confirm-type":{"type":"string","options":["done","go","next","search","send"],"description":"设置键盘右下角按钮的文字\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/confirm-hold":{"type":"boolean","description":"点击键盘右下角按钮时是否保持键盘不收起, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/show-confirm-bar":{"type":"boolean","description":"是否显示键盘上方\"完成\"栏, default: true.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/selection-start":{"type":"number","description":"原生属性,光标起始位置(需与 selection-end 搭配使用), default: -1.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/selection-end":{"type":"number","description":"原生属性,光标结束位置(需与 selection-start 搭配使用), default: -1.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/adjust-position":{"type":"boolean","description":"原生属性,键盘弹起时是否自动上推页面, default: true.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/disable-default-padding":{"type":"boolean","description":"原生属性,是否去掉 iOS 默认内边距, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/hold-keyboard":{"type":"boolean","description":"原生属性,focus 时点击页面不收起键盘, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/show-password":{"type":"boolean","description":"显示为密码框, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/clearable":{"type":"boolean","description":"显示清空按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/readonly":{"type":"boolean","description":"只读, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/prefix-icon":{"type":"string","description":"前置图标(使用 icon 组件类名)\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/show-word-limit":{"type":"boolean","description":"显示字数限制(需设置 maxlength), default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/label":{"type":"string","description":"设置左侧标题\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/label-width":{"type":"string","description":"设置左侧标题宽度, default: 33%.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/size":{"type":"string","description":"设置输入框大小\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/error":{"type":"boolean","description":"设置输入框错误状态(红色标识), default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/center":{"type":"boolean","description":"有 label 时设置标题和输入框垂直居中(默认顶部居中), default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/no-border":{"type":"boolean","description":"非 cell 类型下是否隐藏下划线, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/required":{"type":"boolean","description":"cell 类型下必填样式, default: false.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/marker-side":{"type":"string","options":["before","after"],"description":"必填标记的位置, default: before.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/prop":{"type":"string","description":"表单域 `model` 字段名(表单校验必填)\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/rules":{"type":"FormItemRule[]","description":"表单验证规则, default: [].\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/clear-trigger":{"type":"InputClearTrigger","options":["focus","always"],"description":"显示清除图标的时机:always(输入框非空时展示)/ focus(聚焦且非空时展示), default: always.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/focus-when-clear":{"type":"boolean","description":"点击清除按钮时是否聚焦输入框, default: true.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/ignore-composition-event":{"type":"boolean","description":"是否忽略文本合成系统事件处理(为 false 时触发 composition 相关事件,且在合成期间触发 input 事件), default: true.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/inputmode":{"type":"InputMode","description":"输入数据类型提示, default: text.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/enable-native":{"type":"boolean","description":"支付宝小程序使用,设置为false可以避免textarea弹出键盘后出现内容上移, default: true.\n\n[Docs](https://wot-ui.cn/component/textarea.html#attributes)"},"wd-textarea/input":{"type":"event","description":"监听输入框 input 事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/blur":{"type":"event","description":"监听输入框 blur 事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/clear":{"type":"event","description":"监听输入框清空按钮事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/linechange":{"type":"event","description":"监听输入框行数变化\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/confirm":{"type":"event","description":"点击完成时, 触发 confirm 事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/keyboardheightchange":{"type":"event","description":"键盘高度发生变化的时候触发此事件\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/clickprefixicon":{"type":"event","description":"点击前置图标时触发\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-textarea/clicksuffixicon":{"type":"event","description":"点击后置图标时触发\n\n[Docs](https://wot-ui.cn/component/textarea.html#events)"},"wd-toast/selector":{"type":"string","description":"选择器\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/msg":{"type":"string","description":"提示信息\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/direction":{"type":"string","options":["vertical","horizontal"],"description":"排列方向, default: horizontal.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/icon-name":{"type":"string","options":["success","error","warning","loading","info"],"description":"图标类型\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/icon-size":{"type":"number","description":"图标大小\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/loading-type":{"type":"string","options":["outline","ring"],"description":"加载类型, default: outline.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/loading-color":{"type":"string","description":"加载颜色, default: #4D80F0.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/loading-size":{"type":"number","description":"加载大小\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/icon-color":{"type":"string","description":"图标颜色\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/position":{"type":"string","options":["top","middle-top","middle","bottom"],"description":"提示信息框的位置, default: middle-top.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/z-index":{"type":"number","description":"层级, default: 100.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/cover":{"type":"boolean","description":"是否存在遮罩层, default: false.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/icon-class":{"type":"string","description":"图标类名\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/class-prefix":{"type":"string","description":"类名前缀,用于使用自定义图标, default: wd-icon.\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/opened":{"type":"Function","description":"完全展示后的回调函数\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-toast/closed":{"type":"Function","description":"完全关闭时的回调函数\n\n[Docs](https://wot-ui.cn/component/toast.html#attributes)"},"wd-tooltip/show":{"type":"boolean","description":"状态是否可见, default: false.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/content":{"type":"string | array","description":"显示的内容,也可以通过 `slot#content` 传入\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/placement":{"type":"string","options":["top","top-start","top-end","bottom","bottom-start","bottom-end","left","left-start","left-end","right","right-start","right-end"],"description":"Tooltip 的出现位置, default: bottom.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/disabled":{"type":"boolean","description":"Tooltip 是否可用, default: false.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/visible-arrow":{"type":"boolean","description":"是否显示 Tooltip 箭头, default: true.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/offset":{"type":"number | number[]","description":"出现位置的偏移量, default: {x:0, y:0}.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/show-close":{"type":"boolean","description":"是否显示 Tooltip 内部的关闭按钮, default: false.\n\n[Docs](https://wot-ui.cn/component/tooltip.html#attributes)"},"wd-tooltip/open":{"type":"event","description":"显示时触发\n\n[Docs](https://wot-ui.cn/component/tooltip.html#events)"},"wd-tooltip/close":{"type":"event","description":"隐藏时触发\n\n[Docs](https://wot-ui.cn/component/tooltip.html#events)"},"wd-tooltip/change":{"type":"event","description":"显隐值变化时触发\n\n[Docs](https://wot-ui.cn/component/tooltip.html#events)"},"wd-tour/v-model":{"type":"boolean","description":"是否显示引导组件, default: false.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/steps":{"type":"array","description":"引导步骤列表, default: [].\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/current":{"type":"number","description":"当前步骤索引,支持 v-model:current 双向绑定, default: 0.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/mask":{"type":"boolean","description":"蒙版是否显示, default: true.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/mask-color":{"type":"string","description":"蒙版颜色(支持 rgba 格式), default: rgba(0, 0, 0, 0.5).\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/offset":{"type":"number","description":"引导提示框与高亮框的间距, default: 20.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/duration":{"type":"number","description":"动画持续时间(毫秒), default: 300.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/border-radius":{"type":"number","description":"高亮区域的圆角大小, default: 8.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/padding":{"type":"number","description":"高亮区域的内边距, default: 8.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/prev-text":{"type":"string","description":"上一步按钮文字, default: 上一步.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/next-text":{"type":"string","description":"下一步按钮文字, default: 下一步.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/skip-text":{"type":"string","description":"跳过按钮文字, default: 跳过.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/finish-text":{"type":"string","description":"完成按钮文字, default: 完成.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/highlight-style":{"type":"object","description":"高亮区域样式\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/bottom-safety-offset":{"type":"number","description":"底部安全偏移量,用于滚动计算时确保元素周围有足够的空间, default: 100.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/top-safety-offset":{"type":"number","description":"顶部安全偏移量,用于滚动计算时确保元素周围有足够的空间, default: 0.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/custom-nav":{"type":"boolean","description":"是否自定义顶部导航栏, default: false.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/click-mask-next":{"type":"boolean","description":"点击蒙版是否可以下一步, default: false.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/z-index":{"type":"number","description":"引导组件的层级, default: 999.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/show-tour-buttons":{"type":"boolean","description":"是否显示引导按钮, default: true.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/scope":{"type":"object","description":"查询作用域(限定选择器范围)\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-tour/missing-strategy":{"type":"'skip' | 'stop' | 'hide'","options":["skip","stop","hide"],"description":"缺失元素处理策略, default: stop.\n\n[Docs](https://wot-ui.cn/component/tour.html#attributes)"},"wd-transition/show":{"type":"boolean","description":"是否展示组件\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/name":{"type":"string | array","options":["TransitionName"],"description":"动画类型\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/duration":{"type":"number | object | boolean","description":"动画执行时间, default: 300(ms).\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/custom-style":{"type":"string","description":"自定义样式\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/custom-class":{"type":"string","description":"自定义根节点样式类\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/lazy-render":{"type":"boolean","description":"弹层内容懒渲染, default: false.\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/destroy":{"type":"boolean","description":"是否在动画结束时销毁子节点, default: true.\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/enter-class":{"type":"string","description":"进入过渡的开始状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/enter-active-class":{"type":"string","description":"进入过渡的激活状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/enter-to-class":{"type":"string","description":"进入过渡的结束状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/leave-class":{"type":"string","description":"离开过渡的开始状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/leave-active-class":{"type":"string","description":"离开过渡的激活状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/leave-to-class":{"type":"string","description":"离开过渡的结束状态\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/disable-touch-move":{"type":"boolean","description":"是否阻止触摸滚动, default: false.\n\n[Docs](https://wot-ui.cn/component/transition.html#attributes)"},"wd-transition/before-enter":{"type":"event","description":"进入前触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/enter":{"type":"event","description":"进入时触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/after-enter":{"type":"event","description":"进入后触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/before-leave":{"type":"event","description":"离开前触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/leave":{"type":"event","description":"离开时触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/after-leave":{"type":"event","description":"离开后触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-transition/click":{"type":"event","description":"点击时触发\n\n[Docs](https://wot-ui.cn/component/transition.html#events)"},"wd-upload/v-model:file":{"type":"array","description":"上传的文件列表, 例如: [{ name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg' }], default: [].\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/action":{"type":"string","description":"必选参数,上传的地址\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/header":{"type":"object","description":"HTTP 请求 Header,Header 中不能设置 Referer,uploadFile 接口详细参数,查看[官方手册](https://uniapp.dcloud.net.cn/api/request/network-file#uploadfile)\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/multiple":{"type":"boolean","description":"是否支持多选文件\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/disabled":{"type":"boolean","description":"是否禁用, default: false.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/reupload":{"type":"boolean","description":"是否开启覆盖上传,开启后会关闭图片预览, default: false.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/limit":{"type":"number","description":"最大允许上传个数\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/show-limit-num":{"type":"boolean","description":"限制上传个数的情况下,是否展示当前上传的个数, default: false.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/max-size":{"type":"number","description":"文件大小限制,单位为`byte`\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/source-type":{"type":"array | string","description":"选择图片的来源,chooseImage 接口详细参数,查看[官方手册](https://uniapp.dcloud.net.cn/api/media/image.html#chooseimage), default: ['album', 'camera'].\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/size-type":{"type":"array | string","description":"所选的图片的尺寸,chooseImage 接口详细参数,查看[官方手册](https://uniapp.dcloud.net.cn/api/media/image.html#chooseimage), default: ['original', 'compressed'].\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/name":{"type":"string","description":"文件对应的 key,开发者在服务端可以通过这个 key 获取文件的二进制内容,uploadFile 接口详细参数,查看[官方手册](https://uniapp.dcloud.net.cn/api/request/network-file#uploadfile), default: file.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/form-data":{"type":"object","description":"HTTP 请求中其他额外的 form data,uploadFile 接口详细参数,查看[官方手册](https://uniapp.dcloud.net.cn/api/request/network-file#uploadfile)\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/on-preview-fail":{"type":"function({ index, imgList })","description":"预览失败执行操作\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/before-upload":{"type":"function({ files, fileList, resolve })","description":"上传文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止上传。\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/before-choose":{"type":"function({ fileList, resolve })","description":"选择图片之前的钩子,参数为文件列表,若返回 false 或者返回 Promise 且被 reject,则停止上传。\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/before-remove":{"type":"function({ file, fileList, resolve })","description":"删除文件之前的钩子,参数为要删除的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止上传。\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/before-preview":{"type":"function({file, index, imgList, resolve })","description":"图片预览前的钩子,参数为预览的图片下标和图片列表,若返回 false 或者返回 Promise 且被 reject,则停止上传。\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/build-form-data":{"type":"function({ file, formData, resolve })","description":"构建上传`formData`的钩子,参数为上传的文件、待处理的`formData`,返回值为处理后的`formData`,若返回 false 或者返回 Promise 且被 reject,则停止上传。\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/loading-type":{"type":"string","description":"[加载中图标类型](/component/loading), default: circular-ring.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/loading-color":{"type":"string","description":"[加载中图标颜色](/component/loading), default: #ffffff.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/loading-size":{"type":"string","description":"[加载中图标尺寸](/component/loading), default: 24px.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/status-key":{"type":"string","description":"file 数据结构中,status 对应的 key, default: status.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/image-mode":{"type":"ImageMode","description":"预览图片的 mode 属性, default: aspectFit.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/accept":{"type":"UploadFileType","options":["image video media file all"],"description":"接受的文件类型, default: image.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/compressed":{"type":"boolean","description":"是否压缩视频,当 accept 为 video | media 时生效, default: true.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/max-duration":{"type":"Number","description":"拍摄视频最长拍摄时间,当 accept 为 video | media 时生效,单位秒, default: 60.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/camera":{"type":"UploadCameraType","options":["front"],"description":"使用前置或者后置相机,当 accept 为 video | media 时生效, default: back.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/success-status":{"type":"number","description":"接口响应的成功状态(statusCode)值, default: 200.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/auto-upload":{"type":"boolean","description":"是否选择文件后自动上传。为 false 时应手动调用 submit() 方法开始上传, default: true.\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/upload-method":{"type":"UploadMethod","description":"自定义上传方法\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/extension":{"type":"string[]","description":"根据文件拓展名过滤(H5支持全部类型过滤,微信小程序支持all和file时过滤,其余平台不支持)\n\n[Docs](https://wot-ui.cn/component/upload.html#attributes)"},"wd-upload/success":{"type":"event","description":"上传成功时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/fail":{"type":"event","description":"上传失败时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/progress":{"type":"event","description":"上传中时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/chooseerror":{"type":"event","description":"选择图片失败时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/change":{"type":"event","description":"上传列表修改时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/remove":{"type":"event","description":"移除图片时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-upload/oversize":{"type":"event","description":"文件大小超过限制时触发\n\n[Docs](https://wot-ui.cn/component/upload.html#events)"},"wd-watermark/content":{"type":"string","description":"显示内容\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/image":{"type":"string","description":"显示图片的地址,支持网络图片和base64(钉钉小程序支持网络图片)\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/image-height":{"type":"number","description":"图片高度, default: 100.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/image-width":{"type":"number","description":"图片宽度, default: 100.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/gutter-x":{"type":"number","description":"X轴间距,单位px, default: 0.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/gutter-y":{"type":"number","description":"Y轴间距,单位px, default: 0.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/width":{"type":"number","description":"canvas画布宽度,单位px, default: 100.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/height":{"type":"number","description":"canvas画布高度,单位px, default: 100.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/full-screen":{"type":"boolean","description":"是否为全屏水印, default: true.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/color":{"type":"string","description":"水印字体颜色, default: #8c8c8c.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/size":{"type":"number","description":"水印字体大小,单位px, default: 14.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/font-style":{"type":"string","options":["normal","italic","oblique"],"description":"水印字体样式(仅微信、支付宝和h5支持), default: normal.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/font-weight":{"type":"string","options":["normal","bold","bolder"],"description":"水印字体的粗细(仅微信、支付宝和h5支持), default: normal.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/font-family":{"type":"string","description":"水印字体系列(仅微信、支付宝和h5支持), default: PingFang SC.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/rotate":{"type":"number","description":"水印旋转角度, default: -25.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/z-index":{"type":"number","description":"自定义层级, default: 1100.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"},"wd-watermark/opacity":{"type":"number","description":"自定义透明度,取值 0~1, default: 0.5.\n\n[Docs](https://wot-ui.cn/component/watermark.html#attributes)"}}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/changelog.md b/node_modules/wot-design-uni/changelog.md
new file mode 100644
index 0000000..91f9cbd
--- /dev/null
+++ b/node_modules/wot-design-uni/changelog.md
@@ -0,0 +1,2273 @@
+# 更新日志
+
+
+## [1.14.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.13.0...v1.14.0) (2026-01-04)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* ✨ Loading 组件新增 spinner 类型 ([25c4332](https://github.com/Moonofweisheng/wot-design-uni/commit/25c43324b09beb45a21a8418511e77f3952191cc))
+* ✨ Search 组件支持禁用状态下的点击事件 ([#1406](https://github.com/Moonofweisheng/wot-design-uni/issues/1406)) ([e7c2d93](https://github.com/Moonofweisheng/wot-design-uni/commit/e7c2d9353bdfc25e739e84f2fcb9c4ea47f68243)), closes [#801](https://github.com/Moonofweisheng/wot-design-uni/issues/801)
+* 🐛 修复 Rate 组件在禁用和只读状态下可以拖动调整的问题 ([#1405](https://github.com/Moonofweisheng/wot-design-uni/issues/1405)) ([1d7572d](https://github.com/Moonofweisheng/wot-design-uni/commit/1d7572d126c42d9fd1f0a2233a3c6939a5187278)), closes [#1404](https://github.com/Moonofweisheng/wot-design-uni/issues/1404)
+* 🐛 修复多处调用 useToast 时旧定时器提前关闭当前 Toast 的问题 ([#1408](https://github.com/Moonofweisheng/wot-design-uni/issues/1408)) ([4ea00cf](https://github.com/Moonofweisheng/wot-design-uni/commit/4ea00cf2bc391897a38d491224b1e2100cf16462)), closes [#1312](https://github.com/Moonofweisheng/wot-design-uni/issues/1312)
+* 🐛 修复children为函数时,wd-tabs渲染错误 ([#1211](https://github.com/Moonofweisheng/wot-design-uni/issues/1211)) ([1b64d86](https://github.com/Moonofweisheng/wot-design-uni/commit/1b64d860b3553e8c6e149d203c87b00137ecedb3)), closes [#1312](https://github.com/Moonofweisheng/wot-design-uni/issues/1312)
+* 🐛 修正泰语语言包中的拼写错误 ([#1429](https://github.com/Moonofweisheng/wot-design-uni/issues/1429)) ([52197e7](https://github.com/Moonofweisheng/wot-design-uni/commit/52197e7bc3bdede1bc6944ae697404880532c770))
+
+
+### ✨ Features | 新功能
+
+* ✨ 为 cell-group 添加 insert 属性,为 cell 添加 arrowDirection 属性 ([#1360](https://github.com/Moonofweisheng/wot-design-uni/issues/1360)) ([c7c8a66](https://github.com/Moonofweisheng/wot-design-uni/commit/c7c8a66bcd6fd5d503d32583373adcc2a24da768))
+* ✨ 新增 Avatar 头像组件 ([#1426](https://github.com/Moonofweisheng/wot-design-uni/issues/1426)) ([510a106](https://github.com/Moonofweisheng/wot-design-uni/commit/510a1060ba54744965bd8991d912c8b52a6e24e7)), closes [#1008](https://github.com/Moonofweisheng/wot-design-uni/issues/1008)
+* ✨ 新增 slide-verify 滑动验证组件 ([#1428](https://github.com/Moonofweisheng/wot-design-uni/issues/1428)) ([d5b71cf](https://github.com/Moonofweisheng/wot-design-uni/commit/d5b71cffba3a7380d50bac0a14861d3807876dd6))
+* ✨ 新增 tour 漫游组件 ([4aaf257](https://github.com/Moonofweisheng/wot-design-uni/commit/4aaf257166337fff45d7f54d7159f4aad6e1c324))
+* ✨ 支持在开启 root-portal 时使用 config-provider 自定义主题变量 ([#1430](https://github.com/Moonofweisheng/wot-design-uni/issues/1430)) ([a0b461b](https://github.com/Moonofweisheng/wot-design-uni/commit/a0b461b6e7a582793e4ad05fd1d48beabacc62fe))
+* ✨ calendar 组件 confirm 区域新增左、右拓展插槽 ([#1410](https://github.com/Moonofweisheng/wot-design-uni/issues/1410)) ([6426071](https://github.com/Moonofweisheng/wot-design-uni/commit/64260719b2786c062e12350e8856372cc230a81b)), closes [#1409](https://github.com/Moonofweisheng/wot-design-uni/issues/1409)
+* ✨ Input 组件添加 enable-native 属性 ([#1434](https://github.com/Moonofweisheng/wot-design-uni/issues/1434)) ([b89cbe9](https://github.com/Moonofweisheng/wot-design-uni/commit/b89cbe94b0fb5546d40b184cacbc4f39f82d32e2)), closes [#1421](https://github.com/Moonofweisheng/wot-design-uni/issues/1421)
+* ✨ StatusTip 添加底部插槽 ([cd2e74a](https://github.com/Moonofweisheng/wot-design-uni/commit/cd2e74ad6146fd18c57a9b4643d78bcd2914f806)), closes [#1070](https://github.com/Moonofweisheng/wot-design-uni/issues/1070)
+* ✨ Tabs 组件添加 show-scrollbar 属性用于控制展示滚动条 ([#1363](https://github.com/Moonofweisheng/wot-design-uni/issues/1363)) ([e185a8b](https://github.com/Moonofweisheng/wot-design-uni/commit/e185a8b291fde856f4c3704132664eac34b0d588)), closes [#643](https://github.com/Moonofweisheng/wot-design-uni/issues/643)
+* ✨ Textarea 组件支持支付宝小程序 enableNative 属性 ([#1425](https://github.com/Moonofweisheng/wot-design-uni/issues/1425)) ([3ea5c92](https://github.com/Moonofweisheng/wot-design-uni/commit/3ea5c92b82f58f319fb5b7b62c60918c01e08f43)), closes [#1422](https://github.com/Moonofweisheng/wot-design-uni/issues/1422)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 补充 Calendar 组件英文文档 ([b87b0bb](https://github.com/Moonofweisheng/wot-design-uni/commit/b87b0bbfa040786cc63f5dae8cf8a29201180544))
+* ✏️ 更新组件库演示 demo 各页面的小程序二维码 ([0cee787](https://github.com/Moonofweisheng/wot-design-uni/commit/0cee7870d42a3807b5c392264018f7925f34e3a0))
+* ✏️ 首页新增优秀案例入口与摸鱼插件入口 ([#1427](https://github.com/Moonofweisheng/wot-design-uni/issues/1427)) ([cb9972f](https://github.com/Moonofweisheng/wot-design-uni/commit/cb9972f147538e12ab8ae072a9178772fbeec652))
+* ✏️ 添加 banner 显示逻辑 ([#1347](https://github.com/Moonofweisheng/wot-design-uni/issues/1347)) ([5c4d8dd](https://github.com/Moonofweisheng/wot-design-uni/commit/5c4d8dd8dce6f1fbdafdeb37d3c30112c29b999d))
+* ✏️ 优化 banner 闪烁的问题 ([722c460](https://github.com/Moonofweisheng/wot-design-uni/commit/722c46077e071bf69a2bdc37c49fe07c4fdc953e))
+* ✏️ 优化侧边演示样式 ([1e14e32](https://github.com/Moonofweisheng/wot-design-uni/commit/1e14e325717c6f88e0b8554b8dc03e23bd4600b3))
+* ✏️ add about me ([09c9b23](https://github.com/Moonofweisheng/wot-design-uni/commit/09c9b237c906f1c71ee993e791b2bb35a57dad34))
+* ✏️ add gitee vote 2025 ([2797577](https://github.com/Moonofweisheng/wot-design-uni/commit/27975774c7a5cacea1875db7e057c93ea07ee3fa))
+* ✏️ QQ Groups Full ([7e3e248](https://github.com/Moonofweisheng/wot-design-uni/commit/7e3e248755f0e9b1f6a43f5eec630667b563e4b5))
+* ✏️ 修复 swiper 文档中 default 参数类型定义的格式问题 ([#1435](https://github.com/Moonofweisheng/wot-design-uni/issues/1435)) ([2593472](https://github.com/Moonofweisheng/wot-design-uni/commit/2593472ffb7bca5f3960f9262b7bc83863ec99c0))
+
+## [1.13.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.12.4...v1.13.0) (2025-09-28)
+
+
+### ✨ Features | 新功能
+
+* ✨ 为 Curtain 组件添加 show-menu-by-longpress 和 close-on-click 属性 ([a905655](https://github.com/Moonofweisheng/wot-design-uni/commit/a90565510ab55431f6d7537da465cc8299d07a46)), closes [#1279](https://github.com/Moonofweisheng/wot-design-uni/issues/1279)
+* ✨ 优化 Swiper 使用默认插槽时插槽内容的显示效果 ([#1301](https://github.com/Moonofweisheng/wot-design-uni/issues/1301)) ([41dd417](https://github.com/Moonofweisheng/wot-design-uni/commit/41dd4177b66e6e03357ce79f5c9b92fa2a932a7a))
+* ✨ 优化 Toast 组件图标的体积 ([#1034](https://github.com/Moonofweisheng/wot-design-uni/issues/1034)) ([c984cff](https://github.com/Moonofweisheng/wot-design-uni/commit/c984cff24749ffd753f21f04c79c6f896f7bd9ef))
+* ✨ 增加车牌键盘语言切换功能,支持受控和非受控模式 ([#1294](https://github.com/Moonofweisheng/wot-design-uni/issues/1294)) ([9943011](https://github.com/Moonofweisheng/wot-design-uni/commit/9943011b4c629625091e82115d9241e6503efeae)), closes [#1275](https://github.com/Moonofweisheng/wot-design-uni/issues/1275) [#818](https://github.com/Moonofweisheng/wot-design-uni/issues/818)
+* ✨ button组件支持微信小程序的getrealtimephonenumber 事件 ([#1097](https://github.com/Moonofweisheng/wot-design-uni/issues/1097)) ([ed412b6](https://github.com/Moonofweisheng/wot-design-uni/commit/ed412b67261fce04c51d5c5b8836ca4dd0dc22a4))
+* ✨ Cell 新增 icon-siz 属性用于指定左侧图标大小 ([#1298](https://github.com/Moonofweisheng/wot-design-uni/issues/1298)) ([9585db1](https://github.com/Moonofweisheng/wot-design-uni/commit/9585db11503bc5e77e72e78ba7a51f1f6932f510)), closes [#1088](https://github.com/Moonofweisheng/wot-design-uni/issues/1088)
+* ✨ Rate 支持清空评分([#1302](https://github.com/Moonofweisheng/wot-design-uni/issues/1302)) ([1333bda](https://github.com/Moonofweisheng/wot-design-uni/commit/1333bdac4f8f605c3c9851d0f43d267205ce5aef)), closes [#1293](https://github.com/Moonofweisheng/wot-design-uni/issues/1293)
+* ✨ swiper新增default slot 用户可自定义swiper-item中的内容展示 ([#1164](https://github.com/Moonofweisheng/wot-design-uni/issues/1164)) ([046b135](https://github.com/Moonofweisheng/wot-design-uni/commit/046b135a14a938840c9309c6b9eedb1878866ac9))
+* ✨ wd-picker-view 添加 item-height 属性 ([8d84508](https://github.com/Moonofweisheng/wot-design-uni/commit/8d845081657581a84282f8d4de6039272700e9b0))
+
+
+### ✏️ Documentation | 文档
+
+* 修复黑暗模式下demo页面样式异常 ([397c883](https://github.com/Moonofweisheng/wot-design-uni/commit/397c88338a65afa71f452a67cec938afd5e25e9a))
+* ✏️ 补充 Button 组件的 getRealtimePhoneNumber 仅支持微信小程序 ([7466c91](https://github.com/Moonofweisheng/wot-design-uni/commit/7466c91c1a50318c6f80cbcbeb368dad2bff7dd9))
+* ✏️ 补全一些缺失的文档 ([b0bb46d](https://github.com/Moonofweisheng/wot-design-uni/commit/b0bb46d3a792bc01c7f8fdbe97835fc04ae577bc))
+* ✏️ 调整 Gap 文档描述错误的问题 ([1a9f626](https://github.com/Moonofweisheng/wot-design-uni/commit/1a9f62698643b5d1e5fc24be52ad3416464ff651))
+* ✏️ 调整文档站点域名为 wot-ui.cn ([4c8cdb8](https://github.com/Moonofweisheng/wot-design-uni/commit/4c8cdb83d077370f6d81b9250c6651301521eb6b))
+* ✏️ 更新快速上手项目链接 ([d86dd18](https://github.com/Moonofweisheng/wot-design-uni/commit/d86dd18b49bbaf2a06a6f85338b2e9fe6b9950b6))
+* ✏️ 添加 vscode 代码提示插件 ([c3c6eb1](https://github.com/Moonofweisheng/wot-design-uni/commit/c3c6eb124985b4620a336c034919085ecaed20d9))
+* ✏️ 添加博客链接地址 ([d7272eb](https://github.com/Moonofweisheng/wot-design-uni/commit/d7272ebab6fbea321133ee52ce1c6748567bf486))
+* ✏️ 添加关于全局反馈方案和最佳实践分享的文档 ([a4d2550](https://github.com/Moonofweisheng/wot-design-uni/commit/a4d2550fefe77c64e179ebd22d212827b5fa5217))
+* ✏️ 添加赞助渠道 ([3564bce](https://github.com/Moonofweisheng/wot-design-uni/commit/3564bce12f4341bd329731c9a18121c611c460c7))
+* ✏️ 文档首页新增快速上手模板和公众号的入口 ([e80b0df](https://github.com/Moonofweisheng/wot-design-uni/commit/e80b0df51e5049cecf4f0f70cc83535dc52f8e06))
+* ✏️ 优化演示 Demo 在小屏幕上的显示效果 ([#1296](https://github.com/Moonofweisheng/wot-design-uni/issues/1296)) ([0dbdde9](https://github.com/Moonofweisheng/wot-design-uni/commit/0dbdde9e23645c4735e4051f5c259b0c473df896))
+* ✏️ 优化演示demo显示效果 ([868b5ad](https://github.com/Moonofweisheng/wot-design-uni/commit/868b5ad3108f45a096da967f92793ae05b645c2b)), closes [#1269](https://github.com/Moonofweisheng/wot-design-uni/issues/1269)
+* ✏️ 友情链接支持一行最多四个 ([4810db7](https://github.com/Moonofweisheng/wot-design-uni/commit/4810db7d6fba25062382be3f862b5ba252052b70))
+* ✏️ 添加 img 组件 transformAssetUrls 配置介绍 ([#1259](https://github.com/Moonofweisheng/wot-design-uni/issues/1259)) ([96cf9c7](https://github.com/Moonofweisheng/wot-design-uni/commit/96cf9c7082b94904d45ef1a514f66bff60a57071))
+* ✏️ 修正 Text 组件文档一些语言组织的错误 ([abc4571](https://github.com/Moonofweisheng/wot-design-uni/commit/abc457147a09444fa82868aa73800958b3621796))
+* 修复 starter 地址错误 ([#1316](https://github.com/Moonofweisheng/wot-design-uni/issues/1316)) ([00212b0](https://github.com/Moonofweisheng/wot-design-uni/commit/00212b0e3ecad336edbeec6473db01a67c04cb6b))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Segmented 选项点击时无论是否改变选中值都会触发 change 的问题 ([#1326](https://github.com/Moonofweisheng/wot-design-uni/issues/1326)) ([5657aa6](https://github.com/Moonofweisheng/wot-design-uni/commit/5657aa68a8357ca66c626b7e844c18aa95828c6d)), closes [#1323](https://github.com/Moonofweisheng/wot-design-uni/issues/1323)
+* 🐛 修复 table 组件表头文字溢出样式异常的问题 ([#1297](https://github.com/Moonofweisheng/wot-design-uni/issues/1297)) ([5e186ea](https://github.com/Moonofweisheng/wot-design-uni/commit/5e186ea4b2f8fea09cb1913c6a63f1e60827ec4e)), closes [#1182](https://github.com/Moonofweisheng/wot-design-uni/issues/1182) [#1058](https://github.com/Moonofweisheng/wot-design-uni/issues/1058)
+* 🐛 修复wd-drop-menu-item组件在popup数据较多在滚动区下拉时和页面onPullDownRefresh之间的冲突 ([#1113](https://github.com/Moonofweisheng/wot-design-uni/issues/1113)) ([73027c0](https://github.com/Moonofweisheng/wot-design-uni/commit/73027c0cefe980c27f46412c5648761c30a01bd0)), closes [#1107](https://github.com/Moonofweisheng/wot-design-uni/issues/1107)
+
+### [1.12.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.12.3...v1.12.4) (2025-08-28)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Upload 设置 multiple 无效的问题 ([#1250](https://github.com/Moonofweisheng/wot-design-uni/issues/1250)) ([784aab4](https://github.com/Moonofweisheng/wot-design-uni/commit/784aab4aa156e2a440db7d1a0a10e36358851763))
+
+### [1.12.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.12.2...v1.12.3) (2025-08-27)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Fab、Cell组件 Icon 垂直居中异常的问题 ([#1249](https://github.com/Moonofweisheng/wot-design-uni/issues/1249)) ([d7dac97](https://github.com/Moonofweisheng/wot-design-uni/commit/d7dac979982513c88363dd6224352ab099b7d0c3))
+
+### [1.12.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.12.1...v1.12.2) (2025-08-26)
+
+
+### ✨ Features | 新功能
+
+* ✨ 调整 composables 的导出,新增 useCountDown 的导出 ([#1242](https://github.com/Moonofweisheng/wot-design-uni/issues/1242)) ([93fafa1](https://github.com/Moonofweisheng/wot-design-uni/commit/93fafa180fcfb3fa07deab0393449e822179d43b)), closes [#1239](https://github.com/Moonofweisheng/wot-design-uni/issues/1239)
+* ✨ DroMenu 图标大小和位置样式逻辑调整为不缩放且不使用绝对定位 ([#1243](https://github.com/Moonofweisheng/wot-design-uni/issues/1243)) ([e59fd56](https://github.com/Moonofweisheng/wot-design-uni/commit/e59fd568be9284b7eb91575a3f59194cd681828c))
+
+### [1.12.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.12.0...v1.12.1) (2025-08-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 DropDown 图标垂直居中异常的问题 ([37042c7](https://github.com/Moonofweisheng/wot-design-uni/commit/37042c7766bfe366828f51201c6023aeb4cfaec6))
+
+## [1.12.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.11.1...v1.12.0) (2025-08-24)
+
+
+### ✨ Features | 新功能
+
+* ✨ 为 Cell、Input、Textarea 等组件添加 marker-side 属性控制必填*位置 ([#1181](https://github.com/Moonofweisheng/wot-design-uni/issues/1181)) ([cade06f](https://github.com/Moonofweisheng/wot-design-uni/commit/cade06fe4a776e55a862a58f1eddc1fe0f055a88)), closes [#555](https://github.com/Moonofweisheng/wot-design-uni/issues/555)
+* ✨ 新增维语本地化支持 ([b4e8605](https://github.com/Moonofweisheng/wot-design-uni/commit/b4e86053b4bb73ef89ae91330d50b6e68349ad20))
+* ✨ Upload 上传组件调信小程序端使用chooseMedia替换掉chooseImage等 ([57d89f3](https://github.com/Moonofweisheng/wot-design-uni/commit/57d89f33d769362c198048d37b44f7d67ed384f4)), closes [#1193](https://github.com/Moonofweisheng/wot-design-uni/issues/1193)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 签字版组件设置exportScale < 1时在支付宝上导出图片不完整 ([#1129](https://github.com/Moonofweisheng/wot-design-uni/issues/1129)) ([555ae5f](https://github.com/Moonofweisheng/wot-design-uni/commit/555ae5f40049ffd958ec4e58e80ccd3ba4f524f3))
+* 🐛 修复 grid-item 组件 custom-text 失效的问题 ([#1180](https://github.com/Moonofweisheng/wot-design-uni/issues/1180)) ([5abc3b5](https://github.com/Moonofweisheng/wot-design-uni/commit/5abc3b5344bd2f880ef94350e10c2ef9e9f9250f)), closes [#995](https://github.com/Moonofweisheng/wot-design-uni/issues/995)
+* 🐛 修复 signature 组件设置background-color为透明色导致撤销无效 ([#1224](https://github.com/Moonofweisheng/wot-design-uni/issues/1224)) ([2e67adf](https://github.com/Moonofweisheng/wot-design-uni/commit/2e67adf2bae212a03f3cef3113326f4d942b0b55)), closes [#1223](https://github.com/Moonofweisheng/wot-design-uni/issues/1223)
+* 🐛 修复 Upload 多选时配置为覆盖上传图片达到上限无法替换图片的问题 ([00ab76b](https://github.com/Moonofweisheng/wot-design-uni/commit/00ab76bd91e91a3d0fabdb8b80e00df764055519))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复基础组件文档问题 - 阶段一完成 ([#1220](https://github.com/Moonofweisheng/wot-design-uni/issues/1220)) ([9132174](https://github.com/Moonofweisheng/wot-design-uni/commit/9132174b11c539d2ec5f8d0aec2044ac1affaaff))
+* ✏️ 修正 drop-menu-item options 默认数据结构注释 ([#1087](https://github.com/Moonofweisheng/wot-design-uni/issues/1087)) ([7a2cd2d](https://github.com/Moonofweisheng/wot-design-uni/commit/7a2cd2da93746761b05e068083b171312c4af0e3))
+* 修复 Button/Icon/ConfigProvider/Popup 组件文档不一致问题 ([#1190](https://github.com/Moonofweisheng/wot-design-uni/issues/1190)) ([04d0d11](https://github.com/Moonofweisheng/wot-design-uni/commit/04d0d1184957bb1ae5b1ee2ddfaa978a989427b3))
+
+### [1.11.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.11.0...v1.11.1) (2025-07-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 RootPortal 及 Picker 相关组件 type-check 错误的问题 ([1859294](https://github.com/Moonofweisheng/wot-design-uni/commit/185929461c56d596b6a9d0dabe117e229ceda601))
+
+## [1.11.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.10.0...v1.11.0) (2025-07-20)
+
+
+### ✨ Features | 新功能
+
+* ✨ 结合Cell组件重构Picker相关组件的触发器 ([4a50f2d](https://github.com/Moonofweisheng/wot-design-uni/commit/4a50f2db5956134d579b3be5830f786deb272364))
+* ✨ 新增 root-portal 组件支持从页面中脱离出来,用于解决各种 fixed 失效问题 ([#1155](https://github.com/Moonofweisheng/wot-design-uni/issues/1155)) ([372735a](https://github.com/Moonofweisheng/wot-design-uni/commit/372735a16af7d9a9f3a1a75a8493c2293f2aa216))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 DatetimePicker 超出隐藏 ellipsis 无效的问题 ([cdf1f78](https://github.com/Moonofweisheng/wot-design-uni/commit/cdf1f78513e6116a5f837237af766d00e1244668))
+* 🐛 修复 DatetimePicker 区间选择时无法选择绑定值范围以外的时间的问题 ([3c1023c](https://github.com/Moonofweisheng/wot-design-uni/commit/3c1023c9f6e07b17f684f7a62c5c8ffc462b9808)), closes [#1170](https://github.com/Moonofweisheng/wot-design-uni/issues/1170)
+* 🐛 修复 Overlay 组件锁定背景滚动属性 lock-scroll 无法取消的问题 ([#1149](https://github.com/Moonofweisheng/wot-design-uni/issues/1149)) ([f3ccf3d](https://github.com/Moonofweisheng/wot-design-uni/commit/f3ccf3d936d7224468a29f869c326d98ea8c87f8))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新微信小程序演示二维码 ([28d5970](https://github.com/Moonofweisheng/wot-design-uni/commit/28d5970a4f6a9548469fcdc2be48737c13d4014c))
+* ✏️ 添加脚手架与模板的介绍 ([27243c1](https://github.com/Moonofweisheng/wot-design-uni/commit/27243c134114a7c5c52395f22c07a33760427a33))
+* ✏️ 添加快速上手项目链接 ([ed923ec](https://github.com/Moonofweisheng/wot-design-uni/commit/ed923ecf99728813410164fe4963c520592a12a4))
+* ✏️ 文档侧边栏新增版本号显示 ([6c6d5c9](https://github.com/Moonofweisheng/wot-design-uni/commit/6c6d5c9ea3a3016bd4eb9e85e0a6ae1472c02b13))
+* ✏️ 新增咨询服务章节 ([66f796e](https://github.com/Moonofweisheng/wot-design-uni/commit/66f796e4406309c0f5ad09d1b521aab6962047c9))
+* ✏️ 修复快速上手页面存在死链的问题 ([722103c](https://github.com/Moonofweisheng/wot-design-uni/commit/722103c46dcfec530c7675f5fac4d6b4e8d6c4ea))
+* ✏️ 修复文档中 calendar 类型名 `monthrang` → `monthrange` 的拼写错误。 ([41a6fe3](https://github.com/Moonofweisheng/wot-design-uni/commit/41a6fe3647c9837e0a6cb964882e9e5812ed7b7f))
+* **backtop:** ✏️ 修正文档中 BackTop 组件的 bottom 属性描述从「距离屏幕顶部的距离」修改为「距离屏幕底部的距离」 ([5a458fc](https://github.com/Moonofweisheng/wot-design-uni/commit/5a458fc723fe0745dc7de8ffc7e50b5c7f75654d))
+* **backtop:** ✏️ 修正文档中 bottom 属性的描述 ([b0cd321](https://github.com/Moonofweisheng/wot-design-uni/commit/b0cd321c5ed4e8f6042bd85551b7efe96e891156))
+* **component:** ✏️ 移除多余的 H5 平台标题 ([f851d13](https://github.com/Moonofweisheng/wot-design-uni/commit/f851d139b1b00967fc5f2bcb1d7517a58f40adf7))
+* **datetime-picker:** 添加 before-confirm 回调中使用loading的提示 ([c61b33f](https://github.com/Moonofweisheng/wot-design-uni/commit/c61b33f51a3a8e00900ba765b72d6056b1299c0c))
+* unibest 链接地址更新 ([645e022](https://github.com/Moonofweisheng/wot-design-uni/commit/645e022094122ef3afee81c5f8059429e950a68a))
+
+## [1.10.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.9.1...v1.10.0) (2025-06-29)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整微信小程序演示demo激励按钮的文案以应对微信审核 ([06323a9](https://github.com/Moonofweisheng/wot-design-uni/commit/06323a9b3228299fa9cf4ff6cd826514ced1dc32))
+* ✏️ 简化组件库通用名称为 WotUI ([8177978](https://github.com/Moonofweisheng/wot-design-uni/commit/817797801de1228d39ff399c7792d76c2652e94d))
+* ✏️ 添加 WotUI 加群凭证相关介绍 ([341b9e1](https://github.com/Moonofweisheng/wot-design-uni/commit/341b9e1c1e98699510bbdc4587782b3647d2c4ba))
+* ✏️ 修正示例 demo 源码链接地址 ([1ccdb4a](https://github.com/Moonofweisheng/wot-design-uni/commit/1ccdb4a7468ce7984ac4f17305212aebc54f62c3)), closes [#1045](https://github.com/Moonofweisheng/wot-design-uni/issues/1045)
+* ✏️ 优化加群文档使其更加清晰明确 ([207dfb8](https://github.com/Moonofweisheng/wot-design-uni/commit/207dfb8c9bbf4434ec51e186886ad8dba6289153))
+* ✏️ 优秀案例改为取线上资源 ([053485b](https://github.com/Moonofweisheng/wot-design-uni/commit/053485b470419b5a451b73aec0dc03d12b7dde56))
+* ✏️ update cases ([f1ad2fa](https://github.com/Moonofweisheng/wot-design-uni/commit/f1ad2fa05efba00d89958adba5ca967eead01cfe))
+
+
+### ✨ Features | 新功能
+
+* ✨ DatetimePicker 支持time和date-time类型下配置选择到秒 ([#1117](https://github.com/Moonofweisheng/wot-design-uni/issues/1117)) ([f2e8fda](https://github.com/Moonofweisheng/wot-design-uni/commit/f2e8fdad8026b4b8ce5d11a2e80d5a565031cdc5)), closes [#844](https://github.com/Moonofweisheng/wot-design-uni/issues/844)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 DropDownItem 自定义样式类 CustomIcon 无效的问题 ([cb408f5](https://github.com/Moonofweisheng/wot-design-uni/commit/cb408f553a2e5d84225b5dcdb447dd784992aa6b)), closes [#1119](https://github.com/Moonofweisheng/wot-design-uni/issues/1119)
+* 🐛 修复 DropMenu 设置 Modal 无效的问题 ([#1125](https://github.com/Moonofweisheng/wot-design-uni/issues/1125)) ([eddbd5d](https://github.com/Moonofweisheng/wot-design-uni/commit/eddbd5d22e6cb413e5bf06a642f60f6e081a9074)), closes [#1121](https://github.com/Moonofweisheng/wot-design-uni/issues/1121)
+* 🐛 修复 Input、Textarea、Search 组件设置清空后不聚焦时无法触发失焦事件的问题 ([#1046](https://github.com/Moonofweisheng/wot-design-uni/issues/1046)) ([33b5565](https://github.com/Moonofweisheng/wot-design-uni/commit/33b556546a03e240cfcb3662286cc6dc70b70263))
+* 🐛 修复 Slider 处理边界值异常的问题,优化样式和事件处理逻辑 ([#1050](https://github.com/Moonofweisheng/wot-design-uni/issues/1050)) ([0d7ed81](https://github.com/Moonofweisheng/wot-design-uni/commit/0d7ed8129c623c0b423fe8da6814417417ea3114)), closes [#1023](https://github.com/Moonofweisheng/wot-design-uni/issues/1023)
+* 🐛 修复 Toast 英文断行样式错误问题 ([#1067](https://github.com/Moonofweisheng/wot-design-uni/issues/1067)) ([09dde62](https://github.com/Moonofweisheng/wot-design-uni/commit/09dde6278ed9bb0a57709c15ea4dff8da6e786cd))
+* 🐛 修复 wd-img-cropper 组件在微信小程序中旋转图片后操作卡顿的问题 ([#1112](https://github.com/Moonofweisheng/wot-design-uni/issues/1112)) ([50782a1](https://github.com/Moonofweisheng/wot-design-uni/commit/50782a16717d483f4dc7095e2f6096591999df01))
+* 🐛 修复 wd-slider 滑块不跟手的问题 ([#1114](https://github.com/Moonofweisheng/wot-design-uni/issues/1114)) ([e3dc36e](https://github.com/Moonofweisheng/wot-design-uni/commit/e3dc36e832a74029348a859adb53f06054e9eea6))
+* 🐛 修复NumberKeyboard组件使用 title 插槽未传入关闭文本时不展示头部的问题 ([#1060](https://github.com/Moonofweisheng/wot-design-uni/issues/1060)) ([875e072](https://github.com/Moonofweisheng/wot-design-uni/commit/875e072b3ea8dff270cb2214f94b95e03fa210db)), closes [#760](https://github.com/Moonofweisheng/wot-design-uni/issues/760)
+* 🐛 优化 InputNumbe 处理中间状态值的逻辑,支持配置不立即响应输入变化 ([#1116](https://github.com/Moonofweisheng/wot-design-uni/issues/1116)) ([ff99b22](https://github.com/Moonofweisheng/wot-design-uni/commit/ff99b22a6930ea500539f403f23d46cd836e8bca))
+* 修复 wd-upload 组件的 formData 属性的 ts 类型为 void 的问题 ([#1106](https://github.com/Moonofweisheng/wot-design-uni/issues/1106)) ([6026137](https://github.com/Moonofweisheng/wot-design-uni/commit/60261374acb99f64298c724e1f8d1df3061bd85a))
+
+### [1.9.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.9.0...v1.9.1) (2025-05-08)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 处理小程序超包 ([08e9ee1](https://github.com/Moonofweisheng/wot-design-uni/commit/08e9ee1cb366e4c5ec87d989795d58399cb1df32))
+* ✏️ 修复部分组件二维码显示异常的问题 ([eea9bf7](https://github.com/Moonofweisheng/wot-design-uni/commit/eea9bf7aac36cfd9b7b476392c35e3db097e4891))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Upload 开启 multiple 后只能成功上传最后一个文件的问题 ([#1044](https://github.com/Moonofweisheng/wot-design-uni/issues/1044)) ([f2ae0d3](https://github.com/Moonofweisheng/wot-design-uni/commit/f2ae0d3aacab3b95b48f623623c5bf1f9acecf18)), closes [#1043](https://github.com/Moonofweisheng/wot-design-uni/issues/1043)
+
+## [1.9.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.8.0...v1.9.0) (2025-05-07)
+
+
+### ⚡ Performance Improvements | 性能优化
+
+* ⚡ 增强 wd-drop-menu 组件,优化遮罩层闪烁 ([#974](https://github.com/Moonofweisheng/wot-design-uni/issues/974)) ([f9605b7](https://github.com/Moonofweisheng/wot-design-uni/commit/f9605b71b667cfaad56b7b028d53ccff5112ddf8))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Curtain 幕帘组件 close 事件触发2次的问题 ([460a838](https://github.com/Moonofweisheng/wot-design-uni/commit/460a83802bad5b38d6e7063e481e510ed69dffb9)), closes [#894](https://github.com/Moonofweisheng/wot-design-uni/issues/894)
+* 🐛 修复 message-box 配合 layouts 使用全局 message-box 时,切换页面可能会显示上一次的 message-box 内容的问题 ([f137a63](https://github.com/Moonofweisheng/wot-design-uni/commit/f137a6313e45e65dd23a03ae88b304e07b1a377e))
+* 🐛 修复 Textarea 设置为 null 时,显示字数限制显示错误问题 ([#1004](https://github.com/Moonofweisheng/wot-design-uni/issues/1004)) ([60f2fe6](https://github.com/Moonofweisheng/wot-design-uni/commit/60f2fe61ae77e170e2c05e1b20d256ab107ee4db)), closes [#1003](https://github.com/Moonofweisheng/wot-design-uni/issues/1003)
+* 🐛 修复部分国际化文本不正确的问题 ([#970](https://github.com/Moonofweisheng/wot-design-uni/issues/970)) ([4319fa9](https://github.com/Moonofweisheng/wot-design-uni/commit/4319fa9badf3e3dd08218e8e90604c91c49b49c7))
+* 🐛 修复多个 ImgCropper 存在时生成图片异常的问题 ([1876fc3](https://github.com/Moonofweisheng/wot-design-uni/commit/1876fc3d0c21c2d9d9c45fe3096690a0bde46493))
+
+
+### ✨ Features | 新功能
+
+* ✨ 将 Tabbar 和 Badge 设置为标准盒子模型 ([#1036](https://github.com/Moonofweisheng/wot-design-uni/issues/1036)) ([7f2ccb2](https://github.com/Moonofweisheng/wot-design-uni/commit/7f2ccb2d372c412670bfe4ac833f8dc957d994e9))
+* ✨ 提供 useUpload hooks 用于便捷上传 ([#969](https://github.com/Moonofweisheng/wot-design-uni/issues/969)) ([49fe25a](https://github.com/Moonofweisheng/wot-design-uni/commit/49fe25a99bb0c60b3a81a11ef7eb06e762fb1d25))
+* ✨ 添加组合式API文档并提供相关API ([#972](https://github.com/Moonofweisheng/wot-design-uni/issues/972)) ([b852376](https://github.com/Moonofweisheng/wot-design-uni/commit/b85237643ce217c14a304e8477487acce327ed49))
+* ✨ 添加input props.type可选类型 ([#983](https://github.com/Moonofweisheng/wot-design-uni/issues/983)) ([91776bf](https://github.com/Moonofweisheng/wot-design-uni/commit/91776bf3de9bdd6c6954ecab8024dddbdcee7e48)), closes [#981](https://github.com/Moonofweisheng/wot-design-uni/issues/981)
+* ✨ 文档示例项目支持国际化切换 ([#992](https://github.com/Moonofweisheng/wot-design-uni/issues/992)) ([4ae9587](https://github.com/Moonofweisheng/wot-design-uni/commit/4ae9587d635c1ba80b8855d3b3d5a38939b1825c))
+* ✨ 移除 keyboard 虚拟键盘车牌号模式下不可用的 I、O 键 ([#1037](https://github.com/Moonofweisheng/wot-design-uni/issues/1037)) ([90c53d7](https://github.com/Moonofweisheng/wot-design-uni/commit/90c53d7e2c3208827433093023711c93610df7da)), closes [#1005](https://github.com/Moonofweisheng/wot-design-uni/issues/1005)
+* ✨ 引入 vitepress-plugin-llms 优化 AI 理解 ([#1034](https://github.com/Moonofweisheng/wot-design-uni/issues/1034)) ([901c754](https://github.com/Moonofweisheng/wot-design-uni/commit/901c7548fca2bc42c597bb5780769f05e63ede96))
+* ✨ 引入vitest做组件测试 ([7e84c5c](https://github.com/Moonofweisheng/wot-design-uni/commit/7e84c5c91f3c351922e976255dc97281c1fe371b))
+* ✨ grid-item添加hover-class ([#994](https://github.com/Moonofweisheng/wot-design-uni/issues/994)) ([dfaff53](https://github.com/Moonofweisheng/wot-design-uni/commit/dfaff531cb0a78ec1201f323c5d3326ca967c1e7))
+* ✨ ImgCropper 图片剪裁支持设置裁剪框宽高比 ([#973](https://github.com/Moonofweisheng/wot-design-uni/issues/973)) ([5a3f85d](https://github.com/Moonofweisheng/wot-design-uni/commit/5a3f85df6f1e3e54954754b832b0427b67559d58)), closes [#920](https://github.com/Moonofweisheng/wot-design-uni/issues/920)
+* ✨ Upload 上传组件支持根据扩展名过滤文件 ([#980](https://github.com/Moonofweisheng/wot-design-uni/issues/980)) ([51adb6b](https://github.com/Moonofweisheng/wot-design-uni/commit/51adb6b8a9911e8d64ef376b19a4aef900b52789)), closes [#796](https://github.com/Moonofweisheng/wot-design-uni/issues/796) [#581](https://github.com/Moonofweisheng/wot-design-uni/issues/581)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档中添加测试覆盖率徽标 ([4ae514c](https://github.com/Moonofweisheng/wot-design-uni/commit/4ae514c716f1c3b0cb2b05443b995eec4fb82b21))
+* ✏️ 修复全局 closeOutside 影响 DropDown 异步开关的问题 ([49e5d63](https://github.com/Moonofweisheng/wot-design-uni/commit/49e5d63dd17b48c00648bcab05cb93e743ca43ab))
+* ✏️ 移除 petercatai 聊天助手 ([5c77483](https://github.com/Moonofweisheng/wot-design-uni/commit/5c77483974189e8b22587407ff9baf484a5779da))
+* ✏️ 优化 `WdConfigProvider` 文档,解决组件命名风格问题导致失效问题 ([#989](https://github.com/Moonofweisheng/wot-design-uni/issues/989)) ([0f693f9](https://github.com/Moonofweisheng/wot-design-uni/commit/0f693f9784224ee0949d4a7efc66985224bf0d5b))
+* ✏️ update cases ([a200337](https://github.com/Moonofweisheng/wot-design-uni/commit/a2003378636a25c253a8596f5afbbbcf6ad3e419))
+
+## [1.8.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.7.1...v1.8.0) (2025-03-23)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 DateTimePicker 区域选择时边界值处理错误的问题 ([230e09f](https://github.com/Moonofweisheng/wot-design-uni/commit/230e09ff2ac25550b0efc2628827b70162041aad))
+* 🐛 修复 drop-menu-item 有选项值为空字符串时导致新值错误并触发组件内部警告的问题 ([f63de5b](https://github.com/Moonofweisheng/wot-design-uni/commit/f63de5bd1d3453e844c058a9f185c0a5e56bcf67))
+* 🐛 修复在template中使用readonly无法通过vue-ts校验的问题 ([ee5b25f](https://github.com/Moonofweisheng/wot-design-uni/commit/ee5b25fbc36a24cab02576757226f26fb9e27777))
+* 🐛 修复input、textarea组件placeholder样式在微信小程序无效的问题 ([#944](https://github.com/Moonofweisheng/wot-design-uni/issues/944)) ([1ac115f](https://github.com/Moonofweisheng/wot-design-uni/commit/1ac115fdac310760e630e8745b438f96c6b88386)), closes [#943](https://github.com/Moonofweisheng/wot-design-uni/issues/943)
+* 🐛 修复textarea统计多码元字符长度错误的问题 ([#940](https://github.com/Moonofweisheng/wot-design-uni/issues/940)) ([f9d8523](https://github.com/Moonofweisheng/wot-design-uni/commit/f9d85232c4142f0c957fa3c829dd3321c7ad56e5)), closes [#933](https://github.com/Moonofweisheng/wot-design-uni/issues/933)
+* **picker:** clear selected value and options when columns is emptied ([496cb73](https://github.com/Moonofweisheng/wot-design-uni/commit/496cb732b1ab0e69517d629e147b673692631f98)), closes [#935](https://github.com/Moonofweisheng/wot-design-uni/issues/935)
+
+
+### ✨ Features | 新功能
+
+* ✨ Img 组件添加预览图片属性 ([#945](https://github.com/Moonofweisheng/wot-design-uni/issues/945)) ([34a4878](https://github.com/Moonofweisheng/wot-design-uni/commit/34a48783f37a56fb6ed7a77dd29ee5a406bf989a))
+* ✨ 废弃 DateTimePicker 开启插槽开关use-label-slot和use-default-slot ([8d9e5c6](https://github.com/Moonofweisheng/wot-design-uni/commit/8d9e5c66589f1b6eed5faa093f2c28cf2640f5b5))
+* ✨ 新增 InputNumber 组件支持长按加减功能 ([#910](https://github.com/Moonofweisheng/wot-design-uni/issues/910)) ([9437087](https://github.com/Moonofweisheng/wot-design-uni/commit/94370876e4ce91faec6e10db5e413dfa27d0f4c2))
+* ✨ 重构 Signature 签字板历史记录模式并添加压感模式和横屏示例 ([#967](https://github.com/Moonofweisheng/wot-design-uni/issues/967)) ([aad3e83](https://github.com/Moonofweisheng/wot-design-uni/commit/aad3e8332b4cb6a1f9c0a3c81e9fb7d5068f09b3))
+* ✨ Signature 添加历史记录和历史记录步长(包含文档添加、i18n、代码示例) ([#889](https://github.com/Moonofweisheng/wot-design-uni/issues/889)) ([10ec731](https://github.com/Moonofweisheng/wot-design-uni/commit/10ec731b8986f7bf5903a923fe7f1f7d78623ecf))
+* extend wd-fab component with 4 new positions and update docs ([6f12aa4](https://github.com/Moonofweisheng/wot-design-uni/commit/6f12aa4b04477a2b1f8535e272699333ceb0b9f6))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 接入 petercatai 聊天助手 ([34f0299](https://github.com/Moonofweisheng/wot-design-uni/commit/34f02997dd79f88de89da79791d5a6c056367e8a))
+* ✏️ 添加优秀案例页面 ([ef7c98b](https://github.com/Moonofweisheng/wot-design-uni/commit/ef7c98bffb843129d872c8ebc6a1bbaf7d8437bf))
+* ✏️ 新增优秀案例——随享小栈 ([2040230](https://github.com/Moonofweisheng/wot-design-uni/commit/2040230064989bf4816932870920f52ae0797bf2))
+* ✏️ 修复 Navbar 文档部分标题显示 Tabbar 的问题 ([b4b4d59](https://github.com/Moonofweisheng/wot-design-uni/commit/b4b4d594fc29fe1f947b6ea7e8b5b90cc3f58013))
+* ✏️ 修复部分文档拼写错误 ([#911](https://github.com/Moonofweisheng/wot-design-uni/issues/911)) ([15613b3](https://github.com/Moonofweisheng/wot-design-uni/commit/15613b393aaf750a85e03512c41ffed473471228))
+* fix drop-menu demo code type error ([#905](https://github.com/Moonofweisheng/wot-design-uni/issues/905)) ([0c32c29](https://github.com/Moonofweisheng/wot-design-uni/commit/0c32c29969a8fcb748409a17a06cf277202a18a7))
+
+### [1.7.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.7.0...v1.7.1) (2025-02-19)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 InputNumber 微信小程序设置了precision后无法输入小数点的问题 ([#902](https://github.com/Moonofweisheng/wot-design-uni/issues/902)) ([e3a03b1](https://github.com/Moonofweisheng/wot-design-uni/commit/e3a03b1dbb6640b76a3034daeebd88d42252508c)), closes [#878](https://github.com/Moonofweisheng/wot-design-uni/issues/878)
+* 🐛 修复 Upload 文档自定义唤起上传样式的示例错误的问题 ([3dfa69c](https://github.com/Moonofweisheng/wot-design-uni/commit/3dfa69c282514bd786d3822963f3f1dd18089eb9))
+* 🐛 修复分页组件为0时不更新页数问题 ([#903](https://github.com/Moonofweisheng/wot-design-uni/issues/903)) ([604faeb](https://github.com/Moonofweisheng/wot-design-uni/commit/604faebf4bb19eca96ba84ee48424be12ee72ba3)), closes [#897](https://github.com/Moonofweisheng/wot-design-uni/issues/897)
+* 🐛 修复web-types可选值/默认值类型识别错误 ([#899](https://github.com/Moonofweisheng/wot-design-uni/issues/899)) ([8b4d2ed](https://github.com/Moonofweisheng/wot-design-uni/commit/8b4d2ed14b6340003c63d10e31c02f058bed3ef0))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化demo项目的展示方便支付宝平台提审 ([c48a67b](https://github.com/Moonofweisheng/wot-design-uni/commit/c48a67b027b9b3f66f0b051ee34bde163feda6cf))
+
+## [1.7.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.6.1...v1.7.0) (2025-02-16)
+
+
+### ✨ Features | 新功能
+
+* ✨ 添加 web-type.json 支持 webstorm 代码提示 ([#871](https://github.com/Moonofweisheng/wot-design-uni/issues/871)) ([4575099](https://github.com/Moonofweisheng/wot-design-uni/commit/4575099b9ba580fee2c03e8f8660bbfd9aa70aa3)), closes [#819](https://github.com/Moonofweisheng/wot-design-uni/issues/819)
+* ✨ 重构 Curtain 优化控制展示隐藏的实现逻辑 ([#895](https://github.com/Moonofweisheng/wot-design-uni/issues/895)) ([0e31950](https://github.com/Moonofweisheng/wot-design-uni/commit/0e3195059e0843045533b7ff89b9a3613c5449a8))
+* ✨ ActionSheet 支持 close-on-click-action 控制点击选项后是否关闭菜单功能 ([#891](https://github.com/Moonofweisheng/wot-design-uni/issues/891)) ([a1b035a](https://github.com/Moonofweisheng/wot-design-uni/commit/a1b035a6fe3a9ae3a023032b6c33403853424559)), closes [#698](https://github.com/Moonofweisheng/wot-design-uni/issues/698)
+* ✨ NavbarCapsule 导航胶囊组件支持外部传入样式 ([fb980e7](https://github.com/Moonofweisheng/wot-design-uni/commit/fb980e7d9bd90c76570d2069a9d41a6c1187ef30))
+* ✨ Rate 评分新增支持半选和触摸滑动选中 ([#896](https://github.com/Moonofweisheng/wot-design-uni/issues/896)) ([9d34f2e](https://github.com/Moonofweisheng/wot-design-uni/commit/9d34f2e5d90cca1820d69100bca7c546ce16fb0e)), closes [#669](https://github.com/Moonofweisheng/wot-design-uni/issues/669)
+* ✨ Toast 支持设置布局方向 ([ed60852](https://github.com/Moonofweisheng/wot-design-uni/commit/ed60852432999d295e4af2efe9f1ee86e235e1ee)), closes [#780](https://github.com/Moonofweisheng/wot-design-uni/issues/780)
+* ✨ Toast 支持通过props设置组件属性并新增局中显示的配置 ([#888](https://github.com/Moonofweisheng/wot-design-uni/issues/888)) ([ebbe7e4](https://github.com/Moonofweisheng/wot-design-uni/commit/ebbe7e407904df428564dcf53e5141c14d9e7daa))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 标注 Form 组件支持不校验隐藏子组件的版本 ([e5a24c4](https://github.com/Moonofweisheng/wot-design-uni/commit/e5a24c4873baa9db62ad1ab6f3adb078dac89dc2))
+* ✏️ 新增关于页面展示主要团队成员信息 ([031107d](https://github.com/Moonofweisheng/wot-design-uni/commit/031107d5888c2887ea40d47810239cd398f042ef))
+* ✏️ 修复 SwipeAction 文档示例拼写错误的问题 ([1dc48cf](https://github.com/Moonofweisheng/wot-design-uni/commit/1dc48cfce9773a0ec60dd2b6cb8fd6c60bb63281))
+* ✏️ 修复文档拼写的错误 ([8f8cb10](https://github.com/Moonofweisheng/wot-design-uni/commit/8f8cb1077aa318e9fb067dfeebdd04dfbdb12412))
+* ✏️ fix create-uni command error ([#874](https://github.com/Moonofweisheng/wot-design-uni/issues/874)) ([a0da88c](https://github.com/Moonofweisheng/wot-design-uni/commit/a0da88c5db21b7127de9342aabcf6961b611e22d))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 InputNumber 设置了precision后无法输入小数点的问题 ([#886](https://github.com/Moonofweisheng/wot-design-uni/issues/886)) ([dd1a005](https://github.com/Moonofweisheng/wot-design-uni/commit/dd1a00596472023c9b6e545dbf2a9a8238e67baf)), closes [#878](https://github.com/Moonofweisheng/wot-design-uni/issues/878)
+* 🐛 修复 Swiper 在微信小程序平台轮播视频时在iOS平台全屏展示异常的问题 ([#898](https://github.com/Moonofweisheng/wot-design-uni/issues/898)) ([34a15ac](https://github.com/Moonofweisheng/wot-design-uni/commit/34a15ac0786d003825491cc9fa2a8961b307c0d2)), closes [#885](https://github.com/Moonofweisheng/wot-design-uni/issues/885)
+* 🐛 修复 Tabs 组件导航地图标题不生效的问题 ([#869](https://github.com/Moonofweisheng/wot-design-uni/issues/869)) ([ccf976a](https://github.com/Moonofweisheng/wot-design-uni/commit/ccf976ad631b4ad0272d4897a6245cdd8f13fa4b))
+* 🐛 修复 Upload 组件自定义上传方法不支持asyncfunction的问题 ([#890](https://github.com/Moonofweisheng/wot-design-uni/issues/890)) ([25649db](https://github.com/Moonofweisheng/wot-design-uni/commit/25649dbca55059cb425ba7d7b4e0af7884366dce)), closes [#859](https://github.com/Moonofweisheng/wot-design-uni/issues/859)
+
+### [1.6.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.6.0...v1.6.1) (2025-01-20)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新文档小程序二维码 ([a5f862b](https://github.com/Moonofweisheng/wot-design-uni/commit/a5f862bdbea6a84df7ad2e3bef4456baae040ae8))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Search placeholder 样式丢失的问题 ([#857](https://github.com/Moonofweisheng/wot-design-uni/issues/857)) ([40565d1](https://github.com/Moonofweisheng/wot-design-uni/commit/40565d19688f6776cdb4ea4b9fc3f6cbaeb4dc66)), closes [#856](https://github.com/Moonofweisheng/wot-design-uni/issues/856)
+
+## [1.6.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.5.1...v1.6.0) (2025-01-18)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 常见问题添加Vue 3.3+使用defineOptions设置styleIsolation规则的介绍 ([f3bee13](https://github.com/Moonofweisheng/wot-design-uni/commit/f3bee13b46ccbb8856b9051a99ed2b5356dc0d8e)), closes [#784](https://github.com/Moonofweisheng/wot-design-uni/issues/784)
+* ✏️ 更新组件库互助群二维码 ([9b50d6c](https://github.com/Moonofweisheng/wot-design-uni/commit/9b50d6c6922e34c964621cff926565cb9fb723ab))
+* ✏️ 添加互助交流QQ群3群二维码 ([1d0b11b](https://github.com/Moonofweisheng/wot-design-uni/commit/1d0b11b25621b7b585fe1e047093d07861c88a30))
+* ✏️ 微信小程序演示demo提供激励视频广告页面 ([#783](https://github.com/Moonofweisheng/wot-design-uni/issues/783)) ([7ed7dd3](https://github.com/Moonofweisheng/wot-design-uni/commit/7ed7dd3495c84f91ed5e77870da7e5845fc28a94))
+* ✏️ 修复 Tooltip 文档显示异常的问题 ([c89eb92](https://github.com/Moonofweisheng/wot-design-uni/commit/c89eb927a21e0f4e10d317346c31ab45d322720d))
+* ✏️ 演示demo小程序支持分享 ([583acc2](https://github.com/Moonofweisheng/wot-design-uni/commit/583acc2fa942422469abcab5f805a54c72614d69))
+* ✏️ 优化演示demo支持在顶部显示对应页面微信小程序的二维码 ([b1f42af](https://github.com/Moonofweisheng/wot-design-uni/commit/b1f42af640a32d8c9119331a19fe0495a908b16c))
+* ✏️修改自定义样式描述 [#772](https://github.com/Moonofweisheng/wot-design-uni/issues/772) ([1ac352d](https://github.com/Moonofweisheng/wot-design-uni/commit/1ac352da9539e60ac79bd1ec10768e08e4d49ff3))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Calendar 为周选择时跨年周的单元格值显示错误的问题 ([#854](https://github.com/Moonofweisheng/wot-design-uni/issues/854)) ([c0d48b2](https://github.com/Moonofweisheng/wot-design-uni/commit/c0d48b25c11af87629e7feedc6cd0cc3a70b37e4))
+* 🐛 修复 Divider 分割线组件 CustomClass 未生效的问题 ([#790](https://github.com/Moonofweisheng/wot-design-uni/issues/790)) ([44df081](https://github.com/Moonofweisheng/wot-design-uni/commit/44df081dbd80771a9df122be4e3953034194308f)), closes [#789](https://github.com/Moonofweisheng/wot-design-uni/issues/789)
+* 🐛 修复 Form 表单 validator 校验不通过且未指定错误信息时无法显示校验信息的问题 ([#791](https://github.com/Moonofweisheng/wot-design-uni/issues/791)) ([bdb5653](https://github.com/Moonofweisheng/wot-design-uni/commit/bdb56537db7fbec59224ebf5aecd3e7a6354424c))
+* 🐛 修复Button初始化margin的问题 ([#831](https://github.com/Moonofweisheng/wot-design-uni/issues/831)) ([3836309](https://github.com/Moonofweisheng/wot-design-uni/commit/38363097a5fbf4c0c7116abd536f90936d2fa86d))
+* 🐛 修复Card footer或者header没写的时候,不会自动隐藏占位 ([8d528cb](https://github.com/Moonofweisheng/wot-design-uni/commit/8d528cb9c06c48456016e0a4cce1cf0699b7311b))
+* 🐛 修复Form组件rules属性,没有按照顺序执行问题 ([#808](https://github.com/Moonofweisheng/wot-design-uni/issues/808)) ([834cd8e](https://github.com/Moonofweisheng/wot-design-uni/commit/834cd8e3f08919800189c1d2710267d4aa99a8d5)), closes [#799](https://github.com/Moonofweisheng/wot-design-uni/issues/799) [#799](https://github.com/Moonofweisheng/wot-design-uni/issues/799) [#799](https://github.com/Moonofweisheng/wot-design-uni/issues/799)
+* 🐛 修复Input初始化修改失败的问题 ([#814](https://github.com/Moonofweisheng/wot-design-uni/issues/814)) ([04e9a50](https://github.com/Moonofweisheng/wot-design-uni/commit/04e9a50ede30337c35e9f28b7f7985f3e717a91f))
+* 🐛 修复Picker文档初始选项code错误的问题 ([67f675d](https://github.com/Moonofweisheng/wot-design-uni/commit/67f675d1cc4764e25d357b91c17ad276612340a1))
+* 🐛 修复popover tooltip组件visibleArrow=false时弹出框距离元素间距过远的问题 ([#792](https://github.com/Moonofweisheng/wot-design-uni/issues/792)) ([3b6d10d](https://github.com/Moonofweisheng/wot-design-uni/commit/3b6d10dbb93188adb3aea3fc9f7d1b763b4d5ec9)), closes [#788](https://github.com/Moonofweisheng/wot-design-uni/issues/788)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增Signature签名组件 ([0ad8fcc](https://github.com/Moonofweisheng/wot-design-uni/commit/0ad8fcce28f5692572aeae79f0cc7315aa6e5b54)), closes [#505](https://github.com/Moonofweisheng/wot-design-uni/issues/505)
+* ✨ 修复 InputNumber 在设置为 allow-null 时被赋值为空时未触发更新的问题并支持异步更新 ([#812](https://github.com/Moonofweisheng/wot-design-uni/issues/812)) ([0fc90dd](https://github.com/Moonofweisheng/wot-design-uni/commit/0fc90ddcc9b5d478fe3e5bf84e2e780c48a8a341))
+* ✨ 修复Img组件在错误状态下可以预览的问题 ([dbd2c85](https://github.com/Moonofweisheng/wot-design-uni/commit/dbd2c85b83b0992e791c0b828a12f182d4923b81))
+* ✨ Calendar 确认事件 confirm 增加 `type` 参数 ([e0fca91](https://github.com/Moonofweisheng/wot-design-uni/commit/e0fca9161e8282871b2126ecc82999bc9530eb6b))
+* ✨ Form 表单 validate 方法支持传入数组 ([#829](https://github.com/Moonofweisheng/wot-design-uni/issues/829)) ([8e6096a](https://github.com/Moonofweisheng/wot-design-uni/commit/8e6096ab7459b9164ef1ec9b366becf9acc7ab83)), closes [#797](https://github.com/Moonofweisheng/wot-design-uni/issues/797)
+* ✨ Search新增customInputClass,placeholderClass等属性 ([#845](https://github.com/Moonofweisheng/wot-design-uni/issues/845)) ([03623f4](https://github.com/Moonofweisheng/wot-design-uni/commit/03623f4989b6bfbf53588058c632eb2f2e830bfd)), closes [#299](https://github.com/Moonofweisheng/wot-design-uni/issues/299)
+* ✨ Swiper 轮播视频支持控制静音播放和循环播放 ([#855](https://github.com/Moonofweisheng/wot-design-uni/issues/855)) ([7a0d5ce](https://github.com/Moonofweisheng/wot-design-uni/commit/7a0d5ce9720020e3f0fb148f7b65db129ceb82af)), closes [#846](https://github.com/Moonofweisheng/wot-design-uni/issues/846)
+* ✨ Swiper 轮播项type字段的处理逻辑限制在可选值范围内 ([#785](https://github.com/Moonofweisheng/wot-design-uni/issues/785)) ([1fd0a27](https://github.com/Moonofweisheng/wot-design-uni/commit/1fd0a27788db2b467bc53e83a6a4953e5d134c53))
+
+### [1.5.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.5.0...v1.5.1) (2024-12-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 调整 Upload 的覆盖上传参数 reupload 默认值为 false ([d9ce000](https://github.com/Moonofweisheng/wot-design-uni/commit/d9ce00010a15ae8e168e082a2c4f3a50cf61fa13))
+
+## [1.5.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.4.0...v1.5.0) (2024-12-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Button 按钮设置为 block 无效的问题 ([#762](https://github.com/Moonofweisheng/wot-design-uni/issues/762)) ([ea8bc66](https://github.com/Moonofweisheng/wot-design-uni/commit/ea8bc6671012a811f49027062e6e7f8f1359a175))
+* 🐛 修复 Cell 设置 label 过长时影响页面结构的问题 ([70058f2](https://github.com/Moonofweisheng/wot-design-uni/commit/70058f2270788fb9d7edd56eff35bd2cbebcd99e))
+* 🐛 修复 Collapse v-model绑定数据变化时未更新折叠面板状态的问题 ([#744](https://github.com/Moonofweisheng/wot-design-uni/issues/744)) ([09f7f9c](https://github.com/Moonofweisheng/wot-design-uni/commit/09f7f9caf5e381ef44fb9a31965f8d2d70d4e271)), closes [#741](https://github.com/Moonofweisheng/wot-design-uni/issues/741)
+* 🐛 修复 GridItem 徽标属性类型标注错误的问题 ([c018560](https://github.com/Moonofweisheng/wot-design-uni/commit/c018560b7d3087b89b759b3c83aff91c74354021)), closes [#766](https://github.com/Moonofweisheng/wot-design-uni/issues/766)
+* 🐛 修复 Progress 无法设置进度为 0 的问题 ([#748](https://github.com/Moonofweisheng/wot-design-uni/issues/748)) ([c136f54](https://github.com/Moonofweisheng/wot-design-uni/commit/c136f54cda6164ab3653d47342d7c88c5f515efc)), closes [#747](https://github.com/Moonofweisheng/wot-design-uni/issues/747)
+* 🐛 修复 Swiper 在支付宝小程序平台点击事件无效的问题 ([f63bf10](https://github.com/Moonofweisheng/wot-design-uni/commit/f63bf101338d7f9d2f72c5941d3405950544a1d7))
+* 🐛 修复 Tab 未渲染项高度会影响整体高度的问题 ([5e06378](https://github.com/Moonofweisheng/wot-design-uni/commit/5e063781a3b58f94f107816473600ce95f3761e9))
+* 🐛 修复 vue-tsc 校验不通过的问题 ([#753](https://github.com/Moonofweisheng/wot-design-uni/issues/753)) ([a90f4ad](https://github.com/Moonofweisheng/wot-design-uni/commit/a90f4ad2f2b68bb79f30a2e6973a4e149b7ba66e)), closes [#752](https://github.com/Moonofweisheng/wot-design-uni/issues/752)
+* 🐛 修复微信小程序在iOS设备上处于后台一段时间后抖动的问题 ([6091566](https://github.com/Moonofweisheng/wot-design-uni/commit/6091566380c7c129fca284eb4e5a2ba6e447a7ab)), closes [#694](https://github.com/Moonofweisheng/wot-design-uni/issues/694)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整文档结构增加文档内容可用宽度,支持收起演示demo ([#765](https://github.com/Moonofweisheng/wot-design-uni/issues/765)) ([402f73f](https://github.com/Moonofweisheng/wot-design-uni/commit/402f73f6ee8aa7d022b640333e6bfef4311fdc6f))
+* ✏️ 添加 MessageBox 自定义按钮样式的文档 ([46b1c39](https://github.com/Moonofweisheng/wot-design-uni/commit/46b1c394a024c293fb07c7788691e2ac572a2fa1))
+* ✏️ 添加关于Sass的介绍 ([995a65f](https://github.com/Moonofweisheng/wot-design-uni/commit/995a65f8451801062ae83f0f71470d0c428dba7f))
+* ✏️ 优化 Cell 关于 clickable 和 is-link 的介绍 ([6f58e72](https://github.com/Moonofweisheng/wot-design-uni/commit/6f58e72b1d5436326052a79da19e21d071ab9b3c))
+* ✏️ 增加 ConfigProvider 组件设定全局共享示例 ([#758](https://github.com/Moonofweisheng/wot-design-uni/issues/758)) ([356cb4a](https://github.com/Moonofweisheng/wot-design-uni/commit/356cb4ad11791366138002233754b2d2e79d5d18))
+* ✏️ Table 表格组件提供结合分页器使用的demo ([#738](https://github.com/Moonofweisheng/wot-design-uni/issues/738)) ([fb7580d](https://github.com/Moonofweisheng/wot-design-uni/commit/fb7580df7eee7d81d3826c399e565975cef81625))
+
+
+### ✨ Features | 新功能
+
+* ✨ 优化 Divider 分割线功能支持虚线、垂直等功能 ([#737](https://github.com/Moonofweisheng/wot-design-uni/issues/737)) ([1b9d7e6](https://github.com/Moonofweisheng/wot-design-uni/commit/1b9d7e625256b365a381b30e902bb54692d636cf))
+* ✨ Calendar 优化选中样式和滚动位置处理并支持屏蔽内置cell ([#768](https://github.com/Moonofweisheng/wot-design-uni/issues/768)) ([97c4004](https://github.com/Moonofweisheng/wot-design-uni/commit/97c40047e8ed46af31d4c1647056d90c2edf4842))
+* ✨ Curtain 幕帘新增 close 插槽和自定义关闭插槽样式类 ([#746](https://github.com/Moonofweisheng/wot-design-uni/issues/746)) ([7bc3592](https://github.com/Moonofweisheng/wot-design-uni/commit/7bc359205deb99899baf01c733af9690b12703fa)), closes [#648](https://github.com/Moonofweisheng/wot-design-uni/issues/648)
+* ✨ DropMenuItem 增加自定 Popup 样式参数 ([28ad03b](https://github.com/Moonofweisheng/wot-design-uni/commit/28ad03b7afdd38a86f168d15a7c0f3564d122101))
+* ✨ Input、Textarea在APP-VUE和H5端支持inputmode ([#771](https://github.com/Moonofweisheng/wot-design-uni/issues/771)) ([9ceb2e8](https://github.com/Moonofweisheng/wot-design-uni/commit/9ceb2e807e33edd3937db5f57a4306f1ce719cff)), closes [#743](https://github.com/Moonofweisheng/wot-design-uni/issues/743)
+* ✨ MessageBox 新增确认、取消按钮的 ButtonProps 属性 ([#761](https://github.com/Moonofweisheng/wot-design-uni/issues/761)) ([80682ba](https://github.com/Moonofweisheng/wot-design-uni/commit/80682ba933427fac7bfefc6c692cd058a14163c5)), closes [#740](https://github.com/Moonofweisheng/wot-design-uni/issues/740)
+* ✨ Radio添加icon-placement属性用于控制图标方向 ([#763](https://github.com/Moonofweisheng/wot-design-uni/issues/763)) ([b06a7a7](https://github.com/Moonofweisheng/wot-design-uni/commit/b06a7a751b3115c8e3909af4cbe595684ed9d00f)), closes [#371](https://github.com/Moonofweisheng/wot-design-uni/issues/371)
+* ✨ Segmented 提供 updateActiveStyle 方法设置激活样式 ([529e57f](https://github.com/Moonofweisheng/wot-design-uni/commit/529e57fc83b00482f101e84cf0437627e140a59f))
+* ✨ Table 支持设置不固定表头 ([#769](https://github.com/Moonofweisheng/wot-design-uni/issues/769)) ([b0a2461](https://github.com/Moonofweisheng/wot-design-uni/commit/b0a2461a1a6f9691502a1f4a1a06ec4103fabd4b))
+* ✨ Upload 支持文件重传 ([3cd5137](https://github.com/Moonofweisheng/wot-design-uni/commit/3cd5137129ae13f90744a5d0038686cef5602d8c))
+
+## [1.4.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.14...v1.4.0) (2024-11-24)
+
+
+### ✨ Features | 新功能
+
+* ✨ Curtain 幕帘组件支持设置 z-index ([a1e20af](https://github.com/Moonofweisheng/wot-design-uni/commit/a1e20afef34704e518a96d4b4cb248cab3b7a8b6))
+* ✨ Siderbar 侧边栏添加before-change属性支持异步更新 ([#721](https://github.com/Moonofweisheng/wot-design-uni/issues/721)) ([1f5801d](https://github.com/Moonofweisheng/wot-design-uni/commit/1f5801d3f4c2cfc1b3990d74077e18ea88e8d7f8)), closes [#711](https://github.com/Moonofweisheng/wot-design-uni/issues/711)
+* ✨ Swiper 支持指定轮播项的文件类型 ([#720](https://github.com/Moonofweisheng/wot-design-uni/issues/720)) ([1e039cb](https://github.com/Moonofweisheng/wot-design-uni/commit/1e039cb7073d57bd19f59d4ffbb95c74b5cdc42f)), closes [#712](https://github.com/Moonofweisheng/wot-design-uni/issues/712)
+* ✨ Tab 添加 lazy 属性支持配置是否开启懒加载 ([bb5b193](https://github.com/Moonofweisheng/wot-design-uni/commit/bb5b19325fc2a0f4d13d353ee9bc8cfbf8605daa)), closes [#641](https://github.com/Moonofweisheng/wot-design-uni/issues/641)
+* ✨ Tabs 新增 `autoLineWidth` 设置底部条宽度自动同步文本内容' ([#679](https://github.com/Moonofweisheng/wot-design-uni/issues/679)) ([cb7cbf3](https://github.com/Moonofweisheng/wot-design-uni/commit/cb7cbf33250e3711d631271b1bbcb5f6829e75fa))
+* ✨ Tabs 新增map-title属性支持修改导航地图标题 ([0b7605f](https://github.com/Moonofweisheng/wot-design-uni/commit/0b7605f3ef2ca11cedc2cc61a3eb93e0757e6b86)), closes [#670](https://github.com/Moonofweisheng/wot-design-uni/issues/670)
+* ✨ Tabs 支持设置徽标 ([#724](https://github.com/Moonofweisheng/wot-design-uni/issues/724)) ([cd20581](https://github.com/Moonofweisheng/wot-design-uni/commit/cd20581ca6f75a67995a0cf562f524d82e357bbc)), closes [#689](https://github.com/Moonofweisheng/wot-design-uni/issues/689) [#672](https://github.com/Moonofweisheng/wot-design-uni/issues/672)
+* ✨ tabs支持左对齐 ([#718](https://github.com/Moonofweisheng/wot-design-uni/issues/718)) ([314c2e8](https://github.com/Moonofweisheng/wot-design-uni/commit/314c2e8c9d08e806dd0ec78fd4b2aa5e536af8f8)), closes [#380](https://github.com/Moonofweisheng/wot-design-uni/issues/380)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Collapse 使用 toggleAall 方法时不会触发 before-expand 钩子的问题 ([#727](https://github.com/Moonofweisheng/wot-design-uni/issues/727)) ([02aa5ce](https://github.com/Moonofweisheng/wot-design-uni/commit/02aa5ceb78713f210d97ecc29f18618084b93096))
+* 🐛 修复 CollapseItem 在微信小程序平台使用 title 插槽时宽度无法撑满的问题 ([4f1d945](https://github.com/Moonofweisheng/wot-design-uni/commit/4f1d9452ecd5054a636fb51871369ee1f183e1f1))
+* 🐛 修复 DateTimePicker 设置为 time 类型时绑定值无法设置为空数组的问题 ([443ac92](https://github.com/Moonofweisheng/wot-design-uni/commit/443ac929820327339062a608ef94db43bdaafb27)), closes [#706](https://github.com/Moonofweisheng/wot-design-uni/issues/706)
+* 🐛 修复 FloadingPanel 设置 height 不生效的问题 ([#725](https://github.com/Moonofweisheng/wot-design-uni/issues/725)) ([3cc1805](https://github.com/Moonofweisheng/wot-design-uni/commit/3cc18058aee83ed0abbf804595e38d7934490f4a)), closes [#703](https://github.com/Moonofweisheng/wot-design-uni/issues/703)
+* 🐛 修复 Slider 滑块处于极值时会遮挡max和min的问题 ([aa8834d](https://github.com/Moonofweisheng/wot-design-uni/commit/aa8834df630286882425778263ea9ff68811c928)), closes [#714](https://github.com/Moonofweisheng/wot-design-uni/issues/714)
+* 🐛 修复 wd-select-picker 组件单选搜索高亮 class 错误 ([7d461a5](https://github.com/Moonofweisheng/wot-design-uni/commit/7d461a54d09b14273fd18ff37310ecf754cf5138))
+* 🐛 修复Collapse折叠面板组件内容溢出问题 ([#710](https://github.com/Moonofweisheng/wot-design-uni/issues/710)) ([4bf8d1e](https://github.com/Moonofweisheng/wot-design-uni/commit/4bf8d1e300c28f405402582dd32fde4245d9ed47))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整文档中gitee镜像仓库的地址 ([a40dd9f](https://github.com/Moonofweisheng/wot-design-uni/commit/a40dd9f63e52cf178be2fd9a93904cdf26e23f14))
+* ✏️ 调整join-group页面加群的问题 ([9a70d89](https://github.com/Moonofweisheng/wot-design-uni/commit/9a70d89be1e369dc2ea2a4babd3b3fdb326fcecc))
+* ✏️ 添加 Cell 单元格 border 属性的文档 ([fad777d](https://github.com/Moonofweisheng/wot-design-uni/commit/fad777dfa8cf8dcf26288a9f975927dc3de2e80d)), closes [#653](https://github.com/Moonofweisheng/wot-design-uni/issues/653)
+* ✏️ 添加关于 Button 自定义样式设置阴影的文档 ([c38321f](https://github.com/Moonofweisheng/wot-design-uni/commit/c38321f69c8f4fcb572cb40c8eef38cf4fa20eae)), closes [#731](https://github.com/Moonofweisheng/wot-design-uni/issues/731)
+* ✏️ 文档新增演示页面源码和组件源码链接 ([330e8c7](https://github.com/Moonofweisheng/wot-design-uni/commit/330e8c7bbfc792f4a29cdaa08dec8b35c75b2a30))
+* ✏️ 优化 NoticeBar 垂直滚动示例 ([ff1d377](https://github.com/Moonofweisheng/wot-design-uni/commit/ff1d37723b38169fc1a1f75676a8464343b42bec))
+* ✏️ 增加 Input 字数限制的示例 ([5aa1c00](https://github.com/Moonofweisheng/wot-design-uni/commit/5aa1c00acd72f17cea108ffccecc427711e2cbdb))
+* ✏️ 增加关于Tabs属性autoLineWidth的介绍和最低版本要求 ([08e7d77](https://github.com/Moonofweisheng/wot-design-uni/commit/08e7d774c6b6886fe3f79431b4728176e267144f))
+
+### [1.3.14](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.13...v1.3.14) (2024-11-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Curtain 幕帘组件在某些情况下关闭按钮不显示的问题 ([8c0e978](https://github.com/Moonofweisheng/wot-design-uni/commit/8c0e97831445183662ce0af79210117eb77e63e9)), closes [#690](https://github.com/Moonofweisheng/wot-design-uni/issues/690)
+* 🐛 修复Picker和SelectPicker清空按钮颜色与Input不统一的问题 ([#700](https://github.com/Moonofweisheng/wot-design-uni/issues/700)) ([8fdbfa3](https://github.com/Moonofweisheng/wot-design-uni/commit/8fdbfa319a5c0c5895a3162b56cd3225c54a24d2))
+* 🐛 修复upload组件header默认值错误的问题 ([4cfd1e5](https://github.com/Moonofweisheng/wot-design-uni/commit/4cfd1e568d55eed9efe9cc1dadcc30dd571d3b36)), closes [#691](https://github.com/Moonofweisheng/wot-design-uni/issues/691)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档添加生活小工具 ([6f44a63](https://github.com/Moonofweisheng/wot-design-uni/commit/6f44a631ac067a7321ff0cb6ea8ebaabbc64bd9b))
+* ✏️ 文档中添加wot-demo的介绍 ([66fff60](https://github.com/Moonofweisheng/wot-design-uni/commit/66fff6009b261a62be96d4c279d83833c70a8a0f))
+* ✏️ 增加create-uni创建快速上手项目的介绍 ([92aa1ef](https://github.com/Moonofweisheng/wot-design-uni/commit/92aa1efe68f4a9bd52942122b2f063384eb885fc))
+
+
+### ✨ Features | 新功能
+
+* ✨ 使用Transition重构Popup为center类型的Popup添加zoom-in动画 ([#699](https://github.com/Moonofweisheng/wot-design-uni/issues/699)) ([0dd34d0](https://github.com/Moonofweisheng/wot-design-uni/commit/0dd34d06492f9d071ce6c11aa82789fbcc5cd442)), closes [#687](https://github.com/Moonofweisheng/wot-design-uni/issues/687)
+* ✨ 移除Switch默认的size支持在不指定size的情况下使用css变量设置组件尺寸 ([5e55da4](https://github.com/Moonofweisheng/wot-design-uni/commit/5e55da4839677c63534148d4664dbde1c9f950b2)), closes [#516](https://github.com/Moonofweisheng/wot-design-uni/issues/516)
+* ✨ 优化Toast、Message和Notify组件的函数式调用方案 ([#696](https://github.com/Moonofweisheng/wot-design-uni/issues/696)) ([9f318bd](https://github.com/Moonofweisheng/wot-design-uni/commit/9f318bdeb37bea643276d3e7f8be51bfc1b19d27))
+* ✨ 支持Button在支付宝小程序平台opentype设为getAuthorize用于获取手机号和用户信息 ([deeb45d](https://github.com/Moonofweisheng/wot-design-uni/commit/deeb45d8cb47284c1a557b50c3fcd95f80f93c22))
+* ✨ Form 校验规则validator支持传入Error作为校验提示 ([db32ef9](https://github.com/Moonofweisheng/wot-design-uni/commit/db32ef962140333a13e2a04ba4642e7423bc4bef)), closes [#667](https://github.com/Moonofweisheng/wot-design-uni/issues/667)
+* ✨ Loadmore提供loadingProps属性用于自定义loading样式 ([178e056](https://github.com/Moonofweisheng/wot-design-uni/commit/178e056035511de4123d2bd9ce575948154874b4))
+* ✨ Table 行高支持Number和String类型 ([#682](https://github.com/Moonofweisheng/wot-design-uni/issues/682)) ([21f0b17](https://github.com/Moonofweisheng/wot-design-uni/commit/21f0b178b6e3221a69609dd1603960fc866cb534))
+
+### [1.3.13](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.12...v1.3.13) (2024-10-25)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 快速上手增加vue和uni-app的快速上手链接 ([20148a7](https://github.com/Moonofweisheng/wot-design-uni/commit/20148a7800d12376adedadb32bf29239f02baef3))
+* ✏️ 添加关于深度选择的介绍 ([63428f2](https://github.com/Moonofweisheng/wot-design-uni/commit/63428f244ae84574027ea89e19598c3600716f7b))
+* ✏️ 文档新增展示优秀案例 ([47c1764](https://github.com/Moonofweisheng/wot-design-uni/commit/47c176490dabda1937abea8342d02cc6cbbcfc02))
+* ✏️ 优化文档快速上手章节 ([4e9a9da](https://github.com/Moonofweisheng/wot-design-uni/commit/4e9a9da914a372f1b0f31cfcc7fbc2f96650ef58))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Notice在Tabbar页面时跳转至其他页面导致播放异常的问题并提供reset方法 ([#680](https://github.com/Moonofweisheng/wot-design-uni/issues/680)) ([7584ac2](https://github.com/Moonofweisheng/wot-design-uni/commit/7584ac2a1249b6bee79669ae57c80da08a17d912)), closes [#358](https://github.com/Moonofweisheng/wot-design-uni/issues/358) [#650](https://github.com/Moonofweisheng/wot-design-uni/issues/650)
+
+
+### ✨ Features | 新功能
+
+* ✨ 为Picker和SelectPicker补充clear事件 ([8fffaa6](https://github.com/Moonofweisheng/wot-design-uni/commit/8fffaa646aad195b33c56719ffb28b2529f3f627))
+* ✨ 移除 Navbar 点击热区的激活态样式 ([60b07e5](https://github.com/Moonofweisheng/wot-design-uni/commit/60b07e514b836c55305536e2ba29ec5239b62de3)), closes [#511](https://github.com/Moonofweisheng/wot-design-uni/issues/511)
+* ✨ cell组件border属性以props为最高优先级 ([#656](https://github.com/Moonofweisheng/wot-design-uni/issues/656)) ([31353ce](https://github.com/Moonofweisheng/wot-design-uni/commit/31353ceafa3bcae01202c40918e579d141957c0a))
+* ✨ picker和selectPicker添加clearable属性 ([b0d60a0](https://github.com/Moonofweisheng/wot-design-uni/commit/b0d60a0b750e8ed2cbae0b55309145c6963e498a))
+* ✨ Swiper 轮播组件支持展示视频和设置轮播项标题 ([#663](https://github.com/Moonofweisheng/wot-design-uni/issues/663)) ([a50c0be](https://github.com/Moonofweisheng/wot-design-uni/commit/a50c0be38465342e5b688b8e10b377d69ba998a6))
+
+### [1.3.12](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.11...v1.3.12) (2024-10-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Upload文件小程序找不到文件,显示的问题 ([c13e605](https://github.com/Moonofweisheng/wot-design-uni/commit/c13e6058a2c665c174806aebd353294113c4007e))
+* 🐛 Radio修复在cell里面高度的问题 ([f9deacf](https://github.com/Moonofweisheng/wot-design-uni/commit/f9deacf40eed17a37558ca96319880822ca897d5))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化捐赠榜单中捐赠人链接的展示效果 ([898f079](https://github.com/Moonofweisheng/wot-design-uni/commit/898f07985e602ad18a84c06b5bd6183dd61142cd))
+* ✏️ Upload添加preview-cover最低版本 ([52f9bf6](https://github.com/Moonofweisheng/wot-design-uni/commit/52f9bf654b26a09c20b7118efb331f7e6228ea79))
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 FloatingPanel 浮动面板组件 ([#616](https://github.com/Moonofweisheng/wot-design-uni/issues/616)) ([e2966fd](https://github.com/Moonofweisheng/wot-design-uni/commit/e2966fdd01d6c91ab9499fbc95e4f7160a83deb5)), closes [#509](https://github.com/Moonofweisheng/wot-design-uni/issues/509)
+* ✨ 新增支持法语、日语等9 种语言 ([#637](https://github.com/Moonofweisheng/wot-design-uni/issues/637)) ([691a7b5](https://github.com/Moonofweisheng/wot-design-uni/commit/691a7b57727af45f3c2f99437740be72e8be0f86))
+* ✨ StatusTip缺省提示组件提供图片内容插槽([#538](https://github.com/Moonofweisheng/wot-design-uni/issues/538)) ([#615](https://github.com/Moonofweisheng/wot-design-uni/issues/615)) ([c6b2cf8](https://github.com/Moonofweisheng/wot-design-uni/commit/c6b2cf84db1cb5536516606999c1fa3d6bd1dbe3))
+* ✨ ToolTip 组件 offset 属性支持数组和对象写法 ([#625](https://github.com/Moonofweisheng/wot-design-uni/issues/625)) ([5092c5a](https://github.com/Moonofweisheng/wot-design-uni/commit/5092c5a6548fe7222e0d6e2614020f15ce95c5df)), closes [#560](https://github.com/Moonofweisheng/wot-design-uni/issues/560)
+* ✨ Upload新增preview-cover插槽 ([ef6433d](https://github.com/Moonofweisheng/wot-design-uni/commit/ef6433d81c576db8b55715a14a574a6d392478df))
+* ✨Calendar日历添加open事件 ([#627](https://github.com/Moonofweisheng/wot-design-uni/issues/627)) ([43a5da6](https://github.com/Moonofweisheng/wot-design-uni/commit/43a5da631d4402319d4e3f0739f2ab7e960e497f)), closes [#624](https://github.com/Moonofweisheng/wot-design-uni/issues/624)
+
+### [1.3.11](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.10...v1.3.11) (2024-09-23)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 移除文档中CountTo不支持的type ([cae2e56](https://github.com/Moonofweisheng/wot-design-uni/commit/cae2e56aba98427b1b6c7a2c3f6a2f9ed8acf96f))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复[#598](https://github.com/Moonofweisheng/wot-design-uni/issues/598)产生的使用未定义变量的问题 ([ce64daf](https://github.com/Moonofweisheng/wot-design-uni/commit/ce64daf77d119df509873226c9209cae406e0330))
+* 🐛 修复与@uni-helper/uni-typed搭配使用时tsc报类型错误的问题并更新依赖 ([f9ca2e4](https://github.com/Moonofweisheng/wot-design-uni/commit/f9ca2e4d4ed2ef88a073f7f80ce64df811144b3a)), closes [#586](https://github.com/Moonofweisheng/wot-design-uni/issues/586)
+* 🐛 修复Button设置为hairline时圆角显示异常的问题 ([10ebf5c](https://github.com/Moonofweisheng/wot-design-uni/commit/10ebf5c3959099389f1f1349e32ad755740ce0d5)), closes [#486](https://github.com/Moonofweisheng/wot-design-uni/issues/486)
+* 🐛 修复Input、Textarea未设置labelWidth时通过CSS变量设置label宽度无效的问题 ([#591](https://github.com/Moonofweisheng/wot-design-uni/issues/591)) ([2f12ac6](https://github.com/Moonofweisheng/wot-design-uni/commit/2f12ac6d2b598c7fa545009a82acd1c07bf21779)), closes [#573](https://github.com/Moonofweisheng/wot-design-uni/issues/573)
+* 🐛 修复loadmore组件属性errorText存在默认值导致国际化失效的问题 ([#594](https://github.com/Moonofweisheng/wot-design-uni/issues/594)) ([0bcc3c4](https://github.com/Moonofweisheng/wot-design-uni/commit/0bcc3c498ed9206bea45522f58889ec3f3a5f673))
+* 🐛 修复Radio点击失效的问题 ([5cce125](https://github.com/Moonofweisheng/wot-design-uni/commit/5cce125c737989e1e447394223129e2e585b91f4)), closes [#596](https://github.com/Moonofweisheng/wot-design-uni/issues/596)
+* 🐛确保inputNumber输入值在设定的最小值和最大值之间 ([#610](https://github.com/Moonofweisheng/wot-design-uni/issues/610)) ([344b1ac](https://github.com/Moonofweisheng/wot-design-uni/commit/344b1ac9168701bc408f82268f68ef8453527ef9)), closes [#602](https://github.com/Moonofweisheng/wot-design-uni/issues/602)
+
+
+### ✨ Features | 新功能
+
+* ✨ 迁移StatusTip组件的图片资源 ([f54ff30](https://github.com/Moonofweisheng/wot-design-uni/commit/f54ff306e7dafcfaead671120d100c4d9482daf9))
+* ✨ count-to组件添加type属性 ([#556](https://github.com/Moonofweisheng/wot-design-uni/issues/556)) ([60c92f2](https://github.com/Moonofweisheng/wot-design-uni/commit/60c92f2f38b563968f88f94267b8d805c28109d1))
+* ✨ Fab 悬浮按钮组件支持自定义触发器和控制能否展开 ([#612](https://github.com/Moonofweisheng/wot-design-uni/issues/612)) ([8e68ef3](https://github.com/Moonofweisheng/wot-design-uni/commit/8e68ef3bf807b5ec3c935daa6ce68f58962a188d)), closes [#512](https://github.com/Moonofweisheng/wot-design-uni/issues/512)
+* ✨ Img组件新增属性 show-menu-by-longpress 支持微信小程序长按弹出菜单栏 ([#613](https://github.com/Moonofweisheng/wot-design-uni/issues/613)) ([a7fc229](https://github.com/Moonofweisheng/wot-design-uni/commit/a7fc22964823af1ee1e513a268fb783bbea77ee4)), closes [#611](https://github.com/Moonofweisheng/wot-design-uni/issues/611)
+* ✨ Input、Textarea增加ignoreCompositionEvent属性 ([#592](https://github.com/Moonofweisheng/wot-design-uni/issues/592)) ([efcd4bb](https://github.com/Moonofweisheng/wot-design-uni/commit/efcd4bbb38b5bf53a26f0a8834f0cbd9fa26f5e5)), closes [#574](https://github.com/Moonofweisheng/wot-design-uni/issues/574)
+* ✨ InputNumber 步进器新增支持adjustPosition属性 ([f8a5240](https://github.com/Moonofweisheng/wot-design-uni/commit/f8a524010a2945941fbefa745756f2e6efbeb88b)), closes [#599](https://github.com/Moonofweisheng/wot-design-uni/issues/599)
+
+### [1.3.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.9...v1.3.10) (2024-09-08)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增Keyboard虚拟键盘支持车牌号输入 ([#567](https://github.com/Moonofweisheng/wot-design-uni/issues/567)) ([59df1b7](https://github.com/Moonofweisheng/wot-design-uni/commit/59df1b7ce56e9253ad046a7898651a866b8c99d7)), closes [#351](https://github.com/Moonofweisheng/wot-design-uni/issues/351)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 col-picker 点击遮罩关闭执行两次问题 ([#584](https://github.com/Moonofweisheng/wot-design-uni/issues/584)) ([8fc5380](https://github.com/Moonofweisheng/wot-design-uni/commit/8fc5380ad1f9a34998aedf1de2a9b05011bd8267))
+* 🐛 修复wd-upload 关闭按钮受项目行高影响的问题 ([#576](https://github.com/Moonofweisheng/wot-design-uni/issues/576)) ([feb64ea](https://github.com/Moonofweisheng/wot-design-uni/commit/feb64ea7be1eada01782bb1fa0d5b848acb4fa64))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档中添加KeyBoard的版本要求 ([715c054](https://github.com/Moonofweisheng/wot-design-uni/commit/715c054f4c723de73e2d57b940390cc7bcc89273))
+* ✏️ 优化多列选择器组件文档 ([#572](https://github.com/Moonofweisheng/wot-design-uni/issues/572)) ([93e0736](https://github.com/Moonofweisheng/wot-design-uni/commit/93e0736a24aa77d60376b5dd4d073180b88a6411))
+
+### [1.3.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.8...v1.3.9) (2024-09-01)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复某些场景下wd-textarea属性maxlength无效的问题 ([#558](https://github.com/Moonofweisheng/wot-design-uni/issues/558)) ([4b1b237](https://github.com/Moonofweisheng/wot-design-uni/commit/4b1b2370db4a34716ceedfde3a49d2ae7e20f919))
+* 🐛 修复IndexBar组件更新数据时显示异常的问题 ([f4c751d](https://github.com/Moonofweisheng/wot-design-uni/commit/f4c751dfae3724118c2d842489a5c7d1003996f1)), closes [#545](https://github.com/Moonofweisheng/wot-design-uni/issues/545)
+* 🐛 修复Input和Textarea设置为readonly时在部分iOS手机可以点击聚焦的问题 ([ff59403](https://github.com/Moonofweisheng/wot-design-uni/commit/ff594031546a25f4b2831749312171d260a76044)), closes [#533](https://github.com/Moonofweisheng/wot-design-uni/issues/533)
+* 🐛 修复Picker多级联动未应用picker选择值时取消后打开展示列数据错误的问题 ([90e86de](https://github.com/Moonofweisheng/wot-design-uni/commit/90e86def95ae458208f8aa50427b845db61d05b4)), closes [#562](https://github.com/Moonofweisheng/wot-design-uni/issues/562)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整数字滚动组件文档路径 ([636a2c5](https://github.com/Moonofweisheng/wot-design-uni/commit/636a2c5e8a8906166947312f085e5fabba5c47df))
+* ✏️ 更正form demo 方法名不一致 ([#534](https://github.com/Moonofweisheng/wot-design-uni/issues/534)) ([59fb1ea](https://github.com/Moonofweisheng/wot-design-uni/commit/59fb1eaabd7fea5428dc860af5ad734c9eebb496))
+* ✏️ 优化MessageBox示例demo ([a827b79](https://github.com/Moonofweisheng/wot-design-uni/commit/a827b79498a48272eb71fd9c0e70a9dae889375b))
+* ✏️ 增加安卓演示demo下载二维码 ([8680e77](https://github.com/Moonofweisheng/wot-design-uni/commit/8680e776e229d96b995de402e12ab423930a27ba))
+* ✏️ 更正text组件doc的type属性默认值 ([#557](https://github.com/Moonofweisheng/wot-design-uni/issues/557)) ([3e51f76](https://github.com/Moonofweisheng/wot-design-uni/commit/3e51f763cf394cd5214bc5c0c3e6e23c9ee974b7))
+
+
+### ✨ Features | 新功能
+
+* ✨ config-provider 支持customClass 与 customeStyle ([#535](https://github.com/Moonofweisheng/wot-design-uni/issues/535)) ([febe730](https://github.com/Moonofweisheng/wot-design-uni/commit/febe73079eceeb2cf0eec9fc5712321fa3434bd2))
+* ✨ Form设置提示模式为toast时优先显示顺序靠前的表单项的错误提示 ([f25409f](https://github.com/Moonofweisheng/wot-design-uni/commit/f25409f5a83df50ecbbf0a21bb2d5199021b9cc1)), closes [#548](https://github.com/Moonofweisheng/wot-design-uni/issues/548)
+* ✨ img 图片组件click事件增加mouseEvent参数 ([#539](https://github.com/Moonofweisheng/wot-design-uni/issues/539)) ([4983f48](https://github.com/Moonofweisheng/wot-design-uni/commit/4983f4832a194d399aeb919b8d2c02564789d9ab))
+* ✨ Text支持传入number类型的text ([e1f9ff6](https://github.com/Moonofweisheng/wot-design-uni/commit/e1f9ff60e35c7b6bbb4b5e7b84b2d570471056f6)), closes [#553](https://github.com/Moonofweisheng/wot-design-uni/issues/553)
+
+### [1.3.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.7...v1.3.8) (2024-08-18)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 补充Form设置error-type的示例 ([0e6ea3e](https://github.com/Moonofweisheng/wot-design-uni/commit/0e6ea3ead02c7b51fac7c5776c92044abeaa4dc3))
+* ✏️ 修复常见问题中useToast入参错误的问题 ([3cd0905](https://github.com/Moonofweisheng/wot-design-uni/commit/3cd0905bab2b0dfc3d05257e01aa16afe61c0002))
+* ✏️ 修复textarea组件的maxlength属性类型标注错误 ([#502](https://github.com/Moonofweisheng/wot-design-uni/issues/502)) ([3698e30](https://github.com/Moonofweisheng/wot-design-uni/commit/3698e30301c6c482135671b0a3f150388421ffae))
+* ✏️ 优化MessageBox和Toast文档中selector的介绍 ([f092838](https://github.com/Moonofweisheng/wot-design-uni/commit/f092838756144677c97155dfb700b1ae2cf56f47))
+* ✏️ Toast 文档增加唯一标识selector的介绍 ([#494](https://github.com/Moonofweisheng/wot-design-uni/issues/494)) ([3f99e1b](https://github.com/Moonofweisheng/wot-design-uni/commit/3f99e1bfc7e78c0359e593a2862d1d885c914858))
+
+
+### ✨ Features | 新功能
+
+* ✨ 调整Statistic为CountTo组件并使用useCountDown重构 ([a01baaf](https://github.com/Moonofweisheng/wot-design-uni/commit/a01baafe327e4feeba0de9735901dfc32e014f6a))
+* ✨ 新增statistic 数值显示 ([#489](https://github.com/Moonofweisheng/wot-design-uni/issues/489)) ([592c37b](https://github.com/Moonofweisheng/wot-design-uni/commit/592c37b15e54049faefd14cb480451895bb34d90))
+* ✨ Collapse 折叠面板组件支持嵌套使用 ([#521](https://github.com/Moonofweisheng/wot-design-uni/issues/521)) ([a5ce5dd](https://github.com/Moonofweisheng/wot-design-uni/commit/a5ce5dd8825e520f8e676a9f400efda1eb27546a)), closes [#503](https://github.com/Moonofweisheng/wot-design-uni/issues/503)
+* ✨ datetime-picker 增加自定义 Cell 样式属性 ([#491](https://github.com/Moonofweisheng/wot-design-uni/issues/491)) ([2cc7d7f](https://github.com/Moonofweisheng/wot-design-uni/commit/2cc7d7fb106ec0a13104bf8bea964ba375bd7ad5))
+* ✨ form表单新增errorType错误提示类型 ([#487](https://github.com/Moonofweisheng/wot-design-uni/issues/487)) ([5915922](https://github.com/Moonofweisheng/wot-design-uni/commit/5915922b0b4970424e2dc97ef7f922a918fedfce))
+* ✨Upload 组件支持手动上传并增加自定义上传函数 ([3def17e](https://github.com/Moonofweisheng/wot-design-uni/commit/3def17eb16b1355ee0a9a950788ef6299b0179a3)), closes [#481](https://github.com/Moonofweisheng/wot-design-uni/issues/481)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复checkbox-group的shape无法作用到子组件的问题 ([cd96d25](https://github.com/Moonofweisheng/wot-design-uni/commit/cd96d258f618d4a93584307b4100eee448a58884)), closes [#519](https://github.com/Moonofweisheng/wot-design-uni/issues/519)
+* 🐛 修复DropDown传入正确direction出现错误警告的问题 ([#499](https://github.com/Moonofweisheng/wot-design-uni/issues/499)) ([35507a1](https://github.com/Moonofweisheng/wot-design-uni/commit/35507a1b24dbdee27eefb960ffa637e842b04f9c))
+* 🐛 修复picker-view动态设置columns时获取选中值异常的问题 ([#518](https://github.com/Moonofweisheng/wot-design-uni/issues/518)) ([8530440](https://github.com/Moonofweisheng/wot-design-uni/commit/8530440e81cb8244d7e6288a2c7a8fda41bc7a11)), closes [#492](https://github.com/Moonofweisheng/wot-design-uni/issues/492)
+* 🐛 修复Textarea组件暗黑模式下清空按钮样式不正确的问题 ([8e83a11](https://github.com/Moonofweisheng/wot-design-uni/commit/8e83a117f2acf8b17b021ec833b43d9b2b940d9a))
+
+### [1.3.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.6...v1.3.7) (2024-08-06)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新爱发电地址和示例demo二维码 ([0ecc4c1](https://github.com/Moonofweisheng/wot-design-uni/commit/0ecc4c194d753a11dfa461d74df1a00d75be0e4e))
+* ✏️ 更新README ([0c33dd4](https://github.com/Moonofweisheng/wot-design-uni/commit/0c33dd48ad8528b4b080125272375bae9fedf352))
+* ✏️ 允许文档组件列表折叠收起 ([#468](https://github.com/Moonofweisheng/wot-design-uni/issues/468)) ([b0e4d23](https://github.com/Moonofweisheng/wot-design-uni/commit/b0e4d235b27a729024951a7b31950e83bd43d3de))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复addUnit工具方法为string类型的参数时未添加单位导致swiper高度丢失的问题 ([3d7775c](https://github.com/Moonofweisheng/wot-design-uni/commit/3d7775c5a93668cb7ac6b50563869d13bbd39bfa))
+* 🐛 修复Input设置为number类型时绑定值重设为0时显示异常的问题 ([df6a6a0](https://github.com/Moonofweisheng/wot-design-uni/commit/df6a6a0ab1f911296002e39299a93bbee5546715)), closes [#470](https://github.com/Moonofweisheng/wot-design-uni/issues/470)
+* 🐛 修复LockScroll后切换页面无法滚动 ([#478](https://github.com/Moonofweisheng/wot-design-uni/issues/478)) ([197d61a](https://github.com/Moonofweisheng/wot-design-uni/commit/197d61a678738bda608588d660263e0d5657f940)), closes [#473](https://github.com/Moonofweisheng/wot-design-uni/issues/473)
+* 🐛 修复Textarea的placeholder无法设置空字符串问题 ([#472](https://github.com/Moonofweisheng/wot-design-uni/issues/472)) ([bb3d329](https://github.com/Moonofweisheng/wot-design-uni/commit/bb3d3292af56016ad21d7bf49024a0338d93ec3d)), closes [#471](https://github.com/Moonofweisheng/wot-design-uni/issues/471)
+* **type:** 🐛 修复vue>=2.7版本的GlobalComponents类型声明问题 ([#464](https://github.com/Moonofweisheng/wot-design-uni/issues/464)) ([a175f05](https://github.com/Moonofweisheng/wot-design-uni/commit/a175f05e01eff86678dd08bd226bd401192b0c0b))
+
+
+### ✨ Features | 新功能
+
+* ✨ 修复Text组件设置color属性后lines失效的问题 ([84826f8](https://github.com/Moonofweisheng/wot-design-uni/commit/84826f8057ba29f65b26ee8f292073edb2f441f0)), closes [#477](https://github.com/Moonofweisheng/wot-design-uni/issues/477)
+* ✨ Input 组件新增clear-triger属性 ([#476](https://github.com/Moonofweisheng/wot-design-uni/issues/476)) ([364cfbf](https://github.com/Moonofweisheng/wot-design-uni/commit/364cfbf1af7a9109be9af59b543b4ccef9c32916)), closes [#462](https://github.com/Moonofweisheng/wot-design-uni/issues/462)
+* ✨ Swiper 轮播组件增加value-key用于自定义目标字段属性名 ([#485](https://github.com/Moonofweisheng/wot-design-uni/issues/485)) ([f207876](https://github.com/Moonofweisheng/wot-design-uni/commit/f20787690368e341850c2fd51cf725b26b192ec9)), closes [#410](https://github.com/Moonofweisheng/wot-design-uni/issues/410)
+* ✨ Textarea 组件新增clear-triger属性 ([1c13f2e](https://github.com/Moonofweisheng/wot-design-uni/commit/1c13f2e629fc259e282d7d859097f8905ef1053e)), closes [#462](https://github.com/Moonofweisheng/wot-design-uni/issues/462)
+* 组件text新增金额类型,前后插槽,下划线等功能 ([#452](https://github.com/Moonofweisheng/wot-design-uni/issues/452)) ([95735be](https://github.com/Moonofweisheng/wot-design-uni/commit/95735be75e276b8679a5a76c9cbe49ea29a9b18d))
+* **drop-menu:** 支持自定义图标以及before-toggle ([#479](https://github.com/Moonofweisheng/wot-design-uni/issues/479)) ([108e1b3](https://github.com/Moonofweisheng/wot-design-uni/commit/108e1b36c69cdb28b59f8742d82bb78540a0e043))
+
+### [1.3.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.5...v1.3.6) (2024-07-26)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Button为disabled状态时仍能触发open-type指定事件的问题 ([a64a570](https://github.com/Moonofweisheng/wot-design-uni/commit/a64a5707d2573c042cd9bb16d6f7fecba9a38291)), closes [#458](https://github.com/Moonofweisheng/wot-design-uni/issues/458)
+* 🐛 修复MessageBox设置为prompt时输入框绑定值异常的问题 ([140d960](https://github.com/Moonofweisheng/wot-design-uni/commit/140d96019d91a51f2af2efbd91a279d203a8408b))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档地址更新并增加QQ2群二维码 ([ef1ad01](https://github.com/Moonofweisheng/wot-design-uni/commit/ef1ad011f205612d6d2a8f5fc8cbf7d05dfffc7d))
+* ✏️ 修复Toast组件文档中关于提示方法描述的错误 ([8ed19a2](https://github.com/Moonofweisheng/wot-design-uni/commit/8ed19a2949064ec93cc281aadae4710d4d24a25f))
+* ✏️ 修正DateTimePicker文档中关于minDate和maxDate类型标注错误的问题 ([b322264](https://github.com/Moonofweisheng/wot-design-uni/commit/b322264c9a84d9acb82276ecacf5f12f1fd25f6e))
+
+### [1.3.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.4...v1.3.5) (2024-07-20)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Text组件使用日期工具方法路径错误的问题 ([c4071c3](https://github.com/Moonofweisheng/wot-design-uni/commit/c4071c3759d8328f5dd6a6a374bb91dda5af1029)), closes [#453](https://github.com/Moonofweisheng/wot-design-uni/issues/453)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档中全局引入ElTag用于显示组件上线版本 ([1d05654](https://github.com/Moonofweisheng/wot-design-uni/commit/1d056547c89f4b6f39e9f2b503d55790abc02b52))
+* ✏️ 修复RadioBox文档中关于表单模式表述错误的问题 ([1da6c34](https://github.com/Moonofweisheng/wot-design-uni/commit/1da6c34565d20c7fdb0970cfc93dada208b1f82e))
+* ✏️ 优化Segmented分段器关于绑定激活项的文档 ([5caf3b9](https://github.com/Moonofweisheng/wot-design-uni/commit/5caf3b95073c9bf28f280cbe88431a40f937e994))
+
+### [1.3.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.3...v1.3.4) (2024-07-19)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复双向滑块响应式丢失 ([#436](https://github.com/Moonofweisheng/wot-design-uni/issues/436)) ([825ea9b](https://github.com/Moonofweisheng/wot-design-uni/commit/825ea9b5b81981ae2a8cb497b412bf950caf6aaf))
+* 🐛 修复Input组件[@input](https://github.com/input)事件参数错误的问题 ([82357f9](https://github.com/Moonofweisheng/wot-design-uni/commit/82357f916def6283003aef64ef522a5bb155c307))
+* 🐛 修复Table组件异步填充数据源无效的问题 ([c795c00](https://github.com/Moonofweisheng/wot-design-uni/commit/c795c00560a267de41d8ef3f976fe16c6ad8ba00)), closes [#445](https://github.com/Moonofweisheng/wot-design-uni/issues/445)
+* 🐛 修复Upload组件accept为media时图片预览顺序混乱的问题 ([f8c1053](https://github.com/Moonofweisheng/wot-design-uni/commit/f8c1053abd2b0ce3f3bee89fbd0e9adcdf1961d2)), closes [#442](https://github.com/Moonofweisheng/wot-design-uni/issues/442)
+* 🐛 Button按钮click事件直接透传event ([017aeda](https://github.com/Moonofweisheng/wot-design-uni/commit/017aeda89d7950024baddc40a4a1e83a36010be3)), closes [#443](https://github.com/Moonofweisheng/wot-design-uni/issues/443)
+* 修复 textarea 组件同时使用 auto-height 和 no-border 属性时,no-border 属性不生效 ([#448](https://github.com/Moonofweisheng/wot-design-uni/issues/448)) ([a2f4b32](https://github.com/Moonofweisheng/wot-design-uni/commit/a2f4b322f5b9bd01a36a46b904684d531d5e6730))
+
+
+### ✨ Features | 新功能
+
+* ✨ Button按钮组件支持使用自定义组件 ([517b583](https://github.com/Moonofweisheng/wot-design-uni/commit/517b583f262e374154111d635644dfb225a473c9)), closes [#310](https://github.com/Moonofweisheng/wot-design-uni/issues/310)
+* ✨ Toast 轻提示组件支持使用组件库内置和自定义图标 ([723c51b](https://github.com/Moonofweisheng/wot-design-uni/commit/723c51bac98bb751af44f13737fba12deb298dd4)), closes [#444](https://github.com/Moonofweisheng/wot-design-uni/issues/444)
+* ✨ Upload上传组件新增支持successStatus属性 ([99eab74](https://github.com/Moonofweisheng/wot-design-uni/commit/99eab74260e1e3c43f9f4b147edb4a5a3147d086))
+* 新增Text 文本组件 ([#403](https://github.com/Moonofweisheng/wot-design-uni/issues/403)) ([14f5f44](https://github.com/Moonofweisheng/wot-design-uni/commit/14f5f4430a7cd599149adf16f7bc704dc42f4d90))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整QQ群与提问相关文档 ([cb11e98](https://github.com/Moonofweisheng/wot-design-uni/commit/cb11e9822ff714d3c1e03ad5f2b01b0a07e8fcec))
+* ✏️ 移除示例demo中手机号等字样方便过审 ([7488a7f](https://github.com/Moonofweisheng/wot-design-uni/commit/7488a7f708035b5f59c60078190c880cc8d11800))
+
+### [1.3.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.2...v1.3.3) (2024-07-14)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复IndexBar索引值显示错误的问题 ([#433](https://github.com/Moonofweisheng/wot-design-uni/issues/433)) ([19dc35b](https://github.com/Moonofweisheng/wot-design-uni/commit/19dc35bf40eecc263ed19e9f54d05c004b1d3425)), closes [#408](https://github.com/Moonofweisheng/wot-design-uni/issues/408)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整演示demo中图片到npmmirror上 ([93ff5f9](https://github.com/Moonofweisheng/wot-design-uni/commit/93ff5f938fdb1ced622080bce9168bfe0e7ed771))
+* ✏️ 新增关于messageBox弹出多个的常见问题解答 ([a362928](https://github.com/Moonofweisheng/wot-design-uni/commit/a3629283aa3838803df900512afc990f920b3e0b))
+* ✏️ 修复SelectPicker文档中存在的拼写错误 ([9e28b57](https://github.com/Moonofweisheng/wot-design-uni/commit/9e28b5771a30fa0bf8aad60e8e494e0bc976d9a1)), closes [#426](https://github.com/Moonofweisheng/wot-design-uni/issues/426)
+* ✏️ Upload文档增加微信隐私协议的介绍 ([c7f3a4a](https://github.com/Moonofweisheng/wot-design-uni/commit/c7f3a4adc2907bab30f5e075417f34541cba7a5e))
+
+### [1.3.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.1...v1.3.2) (2024-07-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复ActionSheet样式调整导致微信编译错误的问题 ([a9189d2](https://github.com/Moonofweisheng/wot-design-uni/commit/a9189d2c263459a33cdbb68bec3dd0dd0213b5c0))
+
+### [1.3.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.3.0...v1.3.1) (2024-07-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复暗黑模式下Grid和ActionSheet组件部分样式异常的问题 ([a28938c](https://github.com/Moonofweisheng/wot-design-uni/commit/a28938c91d4b437e6b583793e32f8373cec102ae)), closes [#409](https://github.com/Moonofweisheng/wot-design-uni/issues/409)
+
+## [1.3.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.28...v1.3.0) (2024-07-07)
+
+
+### ✨ Features | 新功能
+
+* ✨ Upload上传组件新增支持上传视频和文件 ([#412](https://github.com/Moonofweisheng/wot-design-uni/issues/412)) ([e07dbdd](https://github.com/Moonofweisheng/wot-design-uni/commit/e07dbdd5305c112fe3648ce988a45b2cc36ae143)), closes [#186](https://github.com/Moonofweisheng/wot-design-uni/issues/186) [#336](https://github.com/Moonofweisheng/wot-design-uni/issues/336)
+* ✨select-picker组件增加open、close事件 ([#395](https://github.com/Moonofweisheng/wot-design-uni/issues/395)) ([9237a04](https://github.com/Moonofweisheng/wot-design-uni/commit/9237a04bcbde9960864b9a7b09a64fc2b6c27595))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整ColPicker多列选择器文档中省市区数据源及演示demo ([d09bd03](https://github.com/Moonofweisheng/wot-design-uni/commit/d09bd037e735b02264074c2a251c59c01b8ff571))
+* ✏️ DropDownItem文档增加closed和opened介绍 ([401bd28](https://github.com/Moonofweisheng/wot-design-uni/commit/401bd284ceaafe957a0f4184d0a009bed70e9377))
+* ✏️ PasswordInput 修复示例代码错误的问题 ([#391](https://github.com/Moonofweisheng/wot-design-uni/issues/391)) ([519d172](https://github.com/Moonofweisheng/wot-design-uni/commit/519d17235b7c61acf2048104a495690bff0b9804))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Calendar等组件暗黑模式部分样式异常的问题 ([281e20f](https://github.com/Moonofweisheng/wot-design-uni/commit/281e20f2a922d98c00321d1316efc96b985c620d)), closes [#388](https://github.com/Moonofweisheng/wot-design-uni/issues/388)
+* 🐛 修复IndexBar点击索引序号时未显示预期索引值的问题 ([c33991e](https://github.com/Moonofweisheng/wot-design-uni/commit/c33991ee14b8108bcd084b5d7b59f35cb79b2b35)), closes [#408](https://github.com/Moonofweisheng/wot-design-uni/issues/408)
+* 🐛 修复Swiper在微信端长时间处于后台出现抖动的问题 ([#413](https://github.com/Moonofweisheng/wot-design-uni/issues/413)) ([4741439](https://github.com/Moonofweisheng/wot-design-uni/commit/4741439277f1a2668634a4e5e3649236ed95a627)), closes [#411](https://github.com/Moonofweisheng/wot-design-uni/issues/411)
+
+### [1.2.28](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.27...v1.2.28) (2024-06-24)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复omitBy工具方法实现错误导致Tabbar等组件徽标显示异常的问题 ([1491fe4](https://github.com/Moonofweisheng/wot-design-uni/commit/1491fe44616a0db1c165e2bed29637f8c46fbc7e))
+
+### [1.2.27](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.26...v1.2.27) (2024-06-21)
+
+
+### ✨ Features | 新功能
+
+* ✨ add title slot for wd-collapse-item ([#372](https://github.com/Moonofweisheng/wot-design-uni/issues/372)) ([0252bd9](https://github.com/Moonofweisheng/wot-design-uni/commit/0252bd98254f8e108e545651127a744640b39692)), closes [#356](https://github.com/Moonofweisheng/wot-design-uni/issues/356)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整文档中关于类型声明文件的配置 ([0c38e98](https://github.com/Moonofweisheng/wot-design-uni/commit/0c38e986f0151b8aa2e17ab1770d1f39b178d354))
+* ✏️ Input 密码输入框示例移除disabled属性 ([3026c78](https://github.com/Moonofweisheng/wot-design-uni/commit/3026c78d237217b08e2fa3cdf64260c294a61b2b))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复ActionSheet禁用和加载状态时仍有点击效果的问题 ([c6baf45](https://github.com/Moonofweisheng/wot-design-uni/commit/c6baf452f0b626dea378148131d624589bb0c47e)), closes [#379](https://github.com/Moonofweisheng/wot-design-uni/issues/379)
+* 🐛 修复Sidebar等组件css变量前缀错误的问题 ([0c31e16](https://github.com/Moonofweisheng/wot-design-uni/commit/0c31e16699e0b70b91384da0a5c0537b791e6bcf))
+
+### [1.2.26](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.25...v1.2.26) (2024-06-14)
+
+
+### ✨ Features | 新功能
+
+* ✨ fab组件添加gap属性 ([#366](https://github.com/Moonofweisheng/wot-design-uni/issues/366)) ([7b44765](https://github.com/Moonofweisheng/wot-design-uni/commit/7b44765adc08fd16e055fbd326698a8f6b708426))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Fab初始化时存在初始位置闪现的问题 ([74c90be](https://github.com/Moonofweisheng/wot-design-uni/commit/74c90beb402e519fee1057870b0631673945cb73))
+* 🐛 修复Transition被打断时出现显示异常的问题 ([#368](https://github.com/Moonofweisheng/wot-design-uni/issues/368)) ([9c21b95](https://github.com/Moonofweisheng/wot-design-uni/commit/9c21b9512076cc95098a36ee7a7283f70386c94b))
+
+### [1.2.25](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.24...v1.2.25) (2024-06-09)
+
+
+### ✨ Features | 新功能
+
+* ✨ Pickerview选择器新增immediate-change属性,目前微信和支付宝小程序支持。 ([3428ae1](https://github.com/Moonofweisheng/wot-design-uni/commit/3428ae17889a36552010e3f7cc4a9bebb7a94461))
+* ✨ Slider暴露initSlider方法用于外部初始化slider宽度信息 ([fc3e4ef](https://github.com/Moonofweisheng/wot-design-uni/commit/fc3e4ef3bb108e6bb6a660ffead40f4658c119e7)), closes [#344](https://github.com/Moonofweisheng/wot-design-uni/issues/344)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 常见问题中增加关于交流群的内容 ([9ddaeec](https://github.com/Moonofweisheng/wot-design-uni/commit/9ddaeec32299463406ae2f60406cf39daff575cf))
+* ✏️ 更新文档中组件数量 ([10d2ba9](https://github.com/Moonofweisheng/wot-design-uni/commit/10d2ba9035970c5627fc731219ec529e634d2578))
+* ✏️ 增加关于微信小程序v-if和slot执行顺序异常问题的介绍 ([6a14879](https://github.com/Moonofweisheng/wot-design-uni/commit/6a1487900b214d071fdbda52034f220b8b046eec))
+* ✏️ 修正upload组件文档中change事件的dmeo错误 ([#360](https://github.com/Moonofweisheng/wot-design-uni/issues/360)) ([61004d3](https://github.com/Moonofweisheng/wot-design-uni/commit/61004d30ed3e79b439ef8a3c5d2e78723d7fa017))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复时间选择器设置minDate之后选择器显示值和实际选择值不一致的问题 ([3c0284f](https://github.com/Moonofweisheng/wot-design-uni/commit/3c0284f1f27b743ea3bdb7eeac5c489939057e13)), closes [#339](https://github.com/Moonofweisheng/wot-design-uni/issues/339)
+* 🐛 修复ImgCropper未暴露resetImg和setRoate方法的问题 ([e58f111](https://github.com/Moonofweisheng/wot-design-uni/commit/e58f1111f2ae8e2da23e60c0ed60130373117970)), closes [#354](https://github.com/Moonofweisheng/wot-design-uni/issues/354)
+* 🐛 修复Tag在钉钉小程序平台close方法不执行的问题 ([242d2f2](https://github.com/Moonofweisheng/wot-design-uni/commit/242d2f25c6ac829b5d20d63d520b1f8c8ae921a8)), closes [#359](https://github.com/Moonofweisheng/wot-design-uni/issues/359)
+
+### [1.2.24](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.23...v1.2.24) (2024-06-03)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Input支付宝小程序number/digit类型使用maxlength=-1时v-model失效的问题 ([7aa21b0](https://github.com/Moonofweisheng/wot-design-uni/commit/7aa21b0baadeccf4f0eb179f74332013acec6a10))
+
+### [1.2.23](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.22...v1.2.23) (2024-06-02)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新LICENSE文件地址 ([dae3ffc](https://github.com/Moonofweisheng/wot-design-uni/commit/dae3ffcc7b488dd6d87bc1c5e8ae16a78b794f85))
+* ✏️ 修复loading组件示例代码中文标点符号、img-cropper组件示例代码标签缺失的问题 ([#347](https://github.com/Moonofweisheng/wot-design-uni/issues/347)) ([d171255](https://github.com/Moonofweisheng/wot-design-uni/commit/d171255899d232f141c84aa1251c03cc1d0a0b75))
+* update select-picker doc ([#346](https://github.com/Moonofweisheng/wot-design-uni/issues/346)) ([7454452](https://github.com/Moonofweisheng/wot-design-uni/commit/7454452ad44331f329408cead9b483cf774cce5f))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Cell的value为0时无法渲染的问题 ([dc64c09](https://github.com/Moonofweisheng/wot-design-uni/commit/dc64c09e6c6f991fe6f8f9fcfa309392e233ce21))
+* 🐛 修复Sticky在h5和App端缓慢拖动时存在几率始终固定在顶部的问题 ([#350](https://github.com/Moonofweisheng/wot-design-uni/issues/350)) ([c5b3c5f](https://github.com/Moonofweisheng/wot-design-uni/commit/c5b3c5f68e1bb376249ed5f2c30b1898cc375abe))
+
+
+### ✨ Features | 新功能
+
+* ✨ 调整Circle环形进度条在微信小程序端使用canvas2d支持同层渲染 ([#351](https://github.com/Moonofweisheng/wot-design-uni/issues/351)) ([4489517](https://github.com/Moonofweisheng/wot-design-uni/commit/44895179e4688ceb995ea1968d23df4f0bf9cdc2))
+
+### [1.2.22](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.21...v1.2.22) (2024-05-23)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 组件库介绍组件数量调整至70+ ([efd55ca](https://github.com/Moonofweisheng/wot-design-uni/commit/efd55ca8afc07368b8d9f348d73c9a25cf186c47))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Form指定prop为`a.b`时校验失败的问题 ([#329](https://github.com/Moonofweisheng/wot-design-uni/issues/329)) ([ab600b9](https://github.com/Moonofweisheng/wot-design-uni/commit/ab600b915a647ff089d5cfbb0ac955e3baa581c3))
+
+### [1.2.21](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.20...v1.2.21) (2024-05-20)
+
+
+### ✨ Features | 新功能
+
+* ✨ 添加索引栏组件 ([#321](https://github.com/Moonofweisheng/wot-design-uni/issues/321)) ([f84e9af](https://github.com/Moonofweisheng/wot-design-uni/commit/f84e9affb1a044a37661c5d1dc118d834b49239c))
+* ✨ img组件添加loading、error插槽 ([#323](https://github.com/Moonofweisheng/wot-design-uni/issues/323)) ([00ffa9f](https://github.com/Moonofweisheng/wot-design-uni/commit/00ffa9f3e54f3ba9eec967887e195c0266ef0a41))
+* ✨ skeleton添加默认内容插槽 ([#322](https://github.com/Moonofweisheng/wot-design-uni/issues/322)) ([9a68c47](https://github.com/Moonofweisheng/wot-design-uni/commit/9a68c477dbf5e0f30f74882df92251eac707fdde))
+* add backtop ([#314](https://github.com/Moonofweisheng/wot-design-uni/issues/314)) ([bf9e55a](https://github.com/Moonofweisheng/wot-design-uni/commit/bf9e55a24e676a764b1e035ca86bd6fe26b87420))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Cell组件单独使用时设置border无效的问题 ([19b9f19](https://github.com/Moonofweisheng/wot-design-uni/commit/19b9f196466b88456e8b3e7221afd710da3df99b))
+* 🐛 修复Picker选择器多列选择模式绑定值为空数组时将列第一项作为显示值的问题 ([c3b96ce](https://github.com/Moonofweisheng/wot-design-uni/commit/c3b96ce912bfc13d30c09393dd57cbcbf2d0b80a))
+* 🐛 修复Sticky吸顶组件在微信小程序中放置在页面顶部时吸顶失效的问题 ([4ca3ebe](https://github.com/Moonofweisheng/wot-design-uni/commit/4ca3ebe7202f118a1bf6a462b27dc76ab6c720f9)), closes [#325](https://github.com/Moonofweisheng/wot-design-uni/issues/325)
+* 修复wd-button在自定义样式时激活态样式问题 ([#312](https://github.com/Moonofweisheng/wot-design-uni/issues/312)) ([7544d69](https://github.com/Moonofweisheng/wot-design-uni/commit/7544d690f176b44a8e016688723af70d2a77388a))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 常见问题增加关于useToast等hooks的答疑以及自定义编译平台的内容 ([65597c7](https://github.com/Moonofweisheng/wot-design-uni/commit/65597c76b812e5e61be17879de320989d0873df4))
+* ✏️ 文档中增加解释导入方式的faq ([83fa0b0](https://github.com/Moonofweisheng/wot-design-uni/commit/83fa0b06927fddabd1021ee02c3c7f8377704786))
+
+### [1.2.20](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.19...v1.2.20) (2024-05-12)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整捐赠榜单和友情链接的数据到cloudflare上 ([1314373](https://github.com/Moonofweisheng/wot-design-uni/commit/1314373af1dff95aee4cd3cddefebcb3a6a5c5d2))
+* ✏️ 推荐文档地址调整至cloudflare ([9119f30](https://github.com/Moonofweisheng/wot-design-uni/commit/9119f30b23676ad1b9a3869e362a3840ba288dc3))
+* ✏️ Curtain组件width属性标记为number类型 ([d172ce7](https://github.com/Moonofweisheng/wot-design-uni/commit/d172ce7ffcfebf29b184b57a7f74a25acad1f967)), closes [#303](https://github.com/Moonofweisheng/wot-design-uni/issues/303)
+
+
+### ✨ Features | 新功能
+
+* Segmented组件添加click事件 ([#301](https://github.com/Moonofweisheng/wot-design-uni/issues/301)) ([225ce22](https://github.com/Moonofweisheng/wot-design-uni/commit/225ce225ac7faedffd4686b908076c47ba111695))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复MessageBox中使用TextArea字数统计样式错误的问题 ([b186ac0](https://github.com/Moonofweisheng/wot-design-uni/commit/b186ac09294a4fede16c514cd96ff94f661fcbc9)), closes [#290](https://github.com/Moonofweisheng/wot-design-uni/issues/290)
+* 🐛 修复PickerView可以滚动到禁用选项的问题 ([edd44ed](https://github.com/Moonofweisheng/wot-design-uni/commit/edd44eda3fc9879dc980b02d1885d77530a3d2e8)), closes [#302](https://github.com/Moonofweisheng/wot-design-uni/issues/302)
+* 🐛 修复Popover指定placement后箭头显示异常的问题([#306](https://github.com/Moonofweisheng/wot-design-uni/issues/306)) ([a9b108d](https://github.com/Moonofweisheng/wot-design-uni/commit/a9b108d231a8e537aab4ba49781590bcafb9354d))
+* 🐛 修复release脚本处理最低版本号问题 ([c8077c9](https://github.com/Moonofweisheng/wot-design-uni/commit/c8077c9f3790e7844c902528d43596c4bc4025af))
+* 🐛 修复Sticky组件获取节点错误的问题 ([5483ea6](https://github.com/Moonofweisheng/wot-design-uni/commit/5483ea6c447f85229af66b950e34c1dc690fadb1))
+* 修复wd-calendar未抛出事件 ([c1203c9](https://github.com/Moonofweisheng/wot-design-uni/commit/c1203c91841c3d5bcd407923a577711e462207a3))
+
+### [1.2.19](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.18...v1.2.19) (2024-05-01)
+
+
+### ✨ Features | 新功能
+
+* ✨ `Slider`组件`min`值允许负数 ([9e7c8d3](https://github.com/Moonofweisheng/wot-design-uni/commit/9e7c8d33eb2c0fccc44f465ed3b28d2cd81efa2d)), closes [#266](https://github.com/Moonofweisheng/wot-design-uni/issues/266)
+* ✨ fab添加draggable属性 ([#259](https://github.com/Moonofweisheng/wot-design-uni/issues/259)) ([5e0cd6c](https://github.com/Moonofweisheng/wot-design-uni/commit/5e0cd6caa2296a44a3dc1b3d33033d4cc91d01b9))
+* ✨ table组件添加index参数 ([2161705](https://github.com/Moonofweisheng/wot-design-uni/commit/2161705a2f868f874b89ee28b6029677854a7741))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复`slider`组件`step`属性无效问题 ([50133b9](https://github.com/Moonofweisheng/wot-design-uni/commit/50133b9e5e2a18aace8cbf9eb7570579cc563f1d)), closes [#269](https://github.com/Moonofweisheng/wot-design-uni/issues/269)
+* 🐛 修复Cell组件title文字对齐方式受外部影响的问题 ([caf66b6](https://github.com/Moonofweisheng/wot-design-uni/commit/caf66b6beeb236a9295cf0d8ec250557dc19e54e)), closes [#282](https://github.com/Moonofweisheng/wot-design-uni/issues/282)
+* 🐛 修复SelectPicker无默认值时仍会查找选择项节点的问题 ([130c438](https://github.com/Moonofweisheng/wot-design-uni/commit/130c4383dc862e190b96bc3670a852a4cce3e629)), closes [#281](https://github.com/Moonofweisheng/wot-design-uni/issues/281)
+* 🐛 修复Slider组件max和min变化时滑块和进度条未更新的问题 ([#276](https://github.com/Moonofweisheng/wot-design-uni/issues/276)) ([69303b5](https://github.com/Moonofweisheng/wot-design-uni/commit/69303b52077bd268e3563fa9096e91530bb978c5))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 补充Table组件关于Events的介绍 ([6760317](https://github.com/Moonofweisheng/wot-design-uni/commit/676031781b189a3a89dba9e57cb989c06999091a)), closes [#260](https://github.com/Moonofweisheng/wot-design-uni/issues/260)
+
+### [1.2.18](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.17...v1.2.18) (2024-04-23)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复InputNumber步进器组件在初始化时未发生变化仍触发change的问题 ([6ac20fd](https://github.com/Moonofweisheng/wot-design-uni/commit/6ac20fd60728e9056282466571c64ff747af4c9f))
+* 🐛 修复InputNumber的change事件无法取到当前绑定值的更新的问题 ([45980c5](https://github.com/Moonofweisheng/wot-design-uni/commit/45980c526a0b47fb1cb2c95ad50ab9f226464d7c))
+
+### [1.2.17](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.16...v1.2.17) (2024-04-18)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复debounce调整后导致tabs无法切换的问题 ([bd594a7](https://github.com/Moonofweisheng/wot-design-uni/commit/bd594a7202d3cd4e641f23a0b98d468227370d6f))
+
+### [1.2.16](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.15...v1.2.16) (2024-04-17)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Gap组件文档中safeAreaBottom属性名错误的问题 ([b03e39f](https://github.com/Moonofweisheng/wot-design-uni/commit/b03e39f601a68ff5f7e72aa3605279683e5e5b74))
+* 🐛 修复PickerView在绑定值为0时无法生效的问题 ([742b4d6](https://github.com/Moonofweisheng/wot-design-uni/commit/742b4d65255926a0e8c3899ae3ee2eb9d7b7e5e5))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 补充Img图片支持图片预览的最低支持版本 ([82d8e49](https://github.com/Moonofweisheng/wot-design-uni/commit/82d8e493c0723da9e3ba88981a45ea31ae8ef9d5)), closes [#244](https://github.com/Moonofweisheng/wot-design-uni/issues/244)
+
+
+### ✨ Features | 新功能
+
+* ✨ 阻止tag的关闭和新增事件冒泡 ([4c22cf5](https://github.com/Moonofweisheng/wot-design-uni/commit/4c22cf515e2e121b3bbe7d9fd64c5777ce72df32))
+* ✨ Checkbox 新增toggle方法 ([6ec0397](https://github.com/Moonofweisheng/wot-design-uni/commit/6ec0397bc9a5e80780b22245c29c6f05f1b25313)), closes [#239](https://github.com/Moonofweisheng/wot-design-uni/issues/239)
+* ✨ date-time-picker-view 添加年选择 ([#241](https://github.com/Moonofweisheng/wot-design-uni/issues/241)) ([0073b32](https://github.com/Moonofweisheng/wot-design-uni/commit/0073b323967fe859ed15284607f4117243614d5e))
+* ✨ Noticebar 通知栏新增支持click点击事件 ([6fc786d](https://github.com/Moonofweisheng/wot-design-uni/commit/6fc786d9be63c2f021c10e0c48c466e0114f5c24))
+* ✨ TableColumn组件value插槽新增index参数 ([b8b03c3](https://github.com/Moonofweisheng/wot-design-uni/commit/b8b03c352b62e31a584faa41ced65d72bc427d89))
+
+### [1.2.15](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.14...v1.2.15) (2024-04-11)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化文档及演示demo访问速度 ([#232](https://github.com/Moonofweisheng/wot-design-uni/issues/232)) ([8d3f617](https://github.com/Moonofweisheng/wot-design-uni/commit/8d3f617e403fdbf53a29ca0d48624dc5da74fc94))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Button不同尺寸显示固定尺寸icon样式不协调的问题 ([2a73992](https://github.com/Moonofweisheng/wot-design-uni/commit/2a73992d9c551c51f4f3672167b972d0d0cca881)), closes [#235](https://github.com/Moonofweisheng/wot-design-uni/issues/235)
+* 🐛 修复Upload自定义上传样式时未应用limit数量限制和customEvokeClass的问题 ([50baac8](https://github.com/Moonofweisheng/wot-design-uni/commit/50baac876279029214062a23072bb7c309110c0c))
+
+
+### ✨ Features | 新功能
+
+* ✨ MessageBox支持确认前置处理钩子beforeConfirm ([78bed6a](https://github.com/Moonofweisheng/wot-design-uni/commit/78bed6a212a12639cd8831e3a1ad4542d6fbf518)), closes [#229](https://github.com/Moonofweisheng/wot-design-uni/issues/229)
+* ✨ Toast轻提示增加opened、closed两个钩子 ([ead218b](https://github.com/Moonofweisheng/wot-design-uni/commit/ead218b87b6b0bd53c8c541c38561fdb45396c72))
+
+### [1.2.14](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.13...v1.2.14) (2024-04-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复NoticeBar通知栏在小程序端垂直滚动无效的问题 ([eaeb935](https://github.com/Moonofweisheng/wot-design-uni/commit/eaeb935a299dee3c5e54dee6b926d625a7ef66a8))
+
+### [1.2.13](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.12...v1.2.13) (2024-04-08)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ demo首页使用Cell组件重构显示样式 ([9ae8a20](https://github.com/Moonofweisheng/wot-design-uni/commit/9ae8a207f3ee8c765e6269b7ef5cb42ff1cd10fd))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复升级vue到3.4.2.之后defineEmits位置不规范导致访问'emit'报错的问题 ([ef574cf](https://github.com/Moonofweisheng/wot-design-uni/commit/ef574cfcb8f805ec308d8364cb887b65394e6108)), closes [#226](https://github.com/Moonofweisheng/wot-design-uni/issues/226)
+* 🐛 修复NumberKeyboard暗黑模式无效的问题 ([b0cc958](https://github.com/Moonofweisheng/wot-design-uni/commit/b0cc958e0fd762915fe427275288a87d0c58ed38))
+* 🐛 修复Upload组件sourceType属性丢失默认值导致在iOS系统微信小程序报错的问题 ([b70991a](https://github.com/Moonofweisheng/wot-design-uni/commit/b70991a1133be77439fc139df9019527ded9b71d)), closes [#227](https://github.com/Moonofweisheng/wot-design-uni/issues/227)
+
+### [1.2.12](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.11...v1.2.12) (2024-04-07)
+
+
+### ✨ Features | 新功能
+
+* ✨ 增强`notice-bar`组件`vertical`模式下插槽的功能 ([e3daed5](https://github.com/Moonofweisheng/wot-design-uni/commit/e3daed516c958dbb5bff0d4a51d7d16cf9971da1))
+* ✨ NumberKeyboard数字键盘增加名为title的插槽 ([7edc746](https://github.com/Moonofweisheng/wot-design-uni/commit/7edc7462aa43ea800536ac0a464bb6e6c131a20c)), closes [#213](https://github.com/Moonofweisheng/wot-design-uni/issues/213)
+* ✨ StatusTip缺省提示组件新增支持图片mode和自定义图片宽高 ([171c2bb](https://github.com/Moonofweisheng/wot-design-uni/commit/171c2bbdaf9e5ec62fa13fad1079b86daca85d54))
+* ✨ Swiper轮播为image-mode增加ts类型标注 ([9a4ceb2](https://github.com/Moonofweisheng/wot-design-uni/commit/9a4ceb21160dab06a08b39c35e50f69c7c49d023))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 修复 step 的 description 插槽不显示的bug ([f979ccc](https://github.com/Moonofweisheng/wot-design-uni/commit/f979cccc05b9956fe0df121fc2e8cbbb24544766))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整演示demo iframe加载完成后再同步当前是否暗黑模式 ([9ab370e](https://github.com/Moonofweisheng/wot-design-uni/commit/9ab370e19395aaef013da8a386dd310c7deec59e)), closes [#210](https://github.com/Moonofweisheng/wot-design-uni/issues/210)
+* ✏️ Steps步骤条增加控制进度的示例 ([8025174](https://github.com/Moonofweisheng/wot-design-uni/commit/80251742f6f5d560d546bd7cd812c35433158a91))
+
+### [1.2.11](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.10...v1.2.11) (2024-04-06)
+
+
+### ⚡ Performance Improvements | 性能优化
+
+* ⚡ 优化Calendar日历选择器打开关闭时的动画效果 ([5fb9542](https://github.com/Moonofweisheng/wot-design-uni/commit/5fb9542087c62b8cf6974d2e5f4b5f455b456495))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ `notice-bar`组件补充`event`事件 ([8f11c8a](https://github.com/Moonofweisheng/wot-design-uni/commit/8f11c8a0fe02f3bb0a2e7a67e105f2e33d658477))
+* ✏️ 优化文档与演示demo同步暗黑模式的逻辑 ([d057607](https://github.com/Moonofweisheng/wot-design-uni/commit/d0576071ebaeb69828b8c5e789471c3324dabb1f)), closes [#210](https://github.com/Moonofweisheng/wot-design-uni/issues/210)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复ActionSheet丢失props默认值的问题 ([e50cccc](https://github.com/Moonofweisheng/wot-design-uni/commit/e50cccceeccebeb99ca69712b9f64e8a9e5fd23f))
+* 🐛 修复Calendar部分文字运行时切换国际化未应用国际化文字的问题 ([857c922](https://github.com/Moonofweisheng/wot-design-uni/commit/857c922d4f3542cb543b8b99600bf9c48ffa24b9))
+* 🐛 修复Calendar的type为datetime且无默认值时无法在首次选择日期后选择时间的问题 ([3746ba3](https://github.com/Moonofweisheng/wot-design-uni/commit/3746ba304021c56e14414dfaed225c465869a473)), closes [#214](https://github.com/Moonofweisheng/wot-design-uni/issues/214)
+* 🐛 修复search组件suffix插槽无法使用的问题 ([6a4af41](https://github.com/Moonofweisheng/wot-design-uni/commit/6a4af41b93e8edd92e297eaea7c1bc566bfb4d6d))
+
+
+### ✨ Features | 新功能
+
+* ✨ `notice-bar`增加垂直滚动功能 ([93d048b](https://github.com/Moonofweisheng/wot-design-uni/commit/93d048b219d66718880609d6ec9086ce058121fa)), closes [#122](https://github.com/Moonofweisheng/wot-design-uni/issues/122)
+* ✨ `notice-bar`增加多文本轮播功能 ([c2e5e9b](https://github.com/Moonofweisheng/wot-design-uni/commit/c2e5e9bbd86093a5795d93aa23c2bd03d8416767))
+* ✨ `upload`组件增加`mode`属性传递给预览`image` ([acf3f99](https://github.com/Moonofweisheng/wot-design-uni/commit/acf3f999033df7b2925040ff83ad1088d0e59a44)), closes [#203](https://github.com/Moonofweisheng/wot-design-uni/issues/203)
+* ✨ img组件的mode属性增加类型`ImageMode` ([1398982](https://github.com/Moonofweisheng/wot-design-uni/commit/139898209fea4559a69cbaffed2e7b45b91aa107))
+* ✨ img组件增加enable-preview属性来支持点击预览功能 ([e6a3b73](https://github.com/Moonofweisheng/wot-design-uni/commit/e6a3b73142e37547e60b8f1dd1845fc3e9d5d17e)), closes [#193](https://github.com/Moonofweisheng/wot-design-uni/issues/193)
+* ✨ swiper组件增加current属性控制轮播项功能 ([443fd8a](https://github.com/Moonofweisheng/wot-design-uni/commit/443fd8a19e3b73ee61ae6a1692c5409e3d0c0b84)), closes [#211](https://github.com/Moonofweisheng/wot-design-uni/issues/211)
+
+### [1.2.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.9...v1.2.10) (2024-04-02)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Step组件description插槽无法使用的问题 ([e431294](https://github.com/Moonofweisheng/wot-design-uni/commit/e431294ea2b97858f93513c112f1a7574654a87d))
+* 🐛 修复Toast、MessageBox二次打开时部分参数未重置的问题 ([e2e7d37](https://github.com/Moonofweisheng/wot-design-uni/commit/e2e7d378e577d3d1f5582464bdd9e6c4e6d82e3d))
+
+
+### ✨ Features | 新功能
+
+* ✨ 为所有组件补充customStyle属性 ([964240e](https://github.com/Moonofweisheng/wot-design-uni/commit/964240e2e7f640586a18bec1c11b0359afcf99e2)), closes [#212](https://github.com/Moonofweisheng/wot-design-uni/issues/212)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新vitepress至1.0.1 ([da7684f](https://github.com/Moonofweisheng/wot-design-uni/commit/da7684f33ada867a9ba2f22bb1489c804a7d840e))
+* ✏️ 修复更新vitepress至1.0.1后友情链接丢失logo的问题 ([1e36c39](https://github.com/Moonofweisheng/wot-design-uni/commit/1e36c39ff7ab814741792ee91a2ee7d9085862f9))
+* ✏️ Steps文档标题调整为步骤条 ([1ea7996](https://github.com/Moonofweisheng/wot-design-uni/commit/1ea79960fd9facef7aa5ef17f0f9bde03daa0d7c))
+
+### [1.2.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.8...v1.2.9) (2024-04-01)
+
+
+### ✨ Features | 新功能
+
+* ✨ Segmented分段器change事件参数类型扩充为SegmentedOption ([5592bc4](https://github.com/Moonofweisheng/wot-design-uni/commit/5592bc49b9439ef34306741f16c4b5c702d562b2)), closes [#204](https://github.com/Moonofweisheng/wot-design-uni/issues/204)
+
+### [1.2.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.7...v1.2.8) (2024-03-30)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 修复useLocale 不传 message 会丢失原有语言配置的问题 ([#209](https://github.com/Moonofweisheng/wot-design-uni/issues/209)) ([e854d0e](https://github.com/Moonofweisheng/wot-design-uni/commit/e854d0e758e44cba9213992794974b7ae5985abf))
+
+
+### ✨ Features | 新功能
+
+* ✨ SelectPicker单选模式支持自动完成 ([#207](https://github.com/Moonofweisheng/wot-design-uni/issues/207)) ([11aa887](https://github.com/Moonofweisheng/wot-design-uni/commit/11aa887ae36153c0a6a0cd9053fc94c70acbcb0d)), closes [#206](https://github.com/Moonofweisheng/wot-design-uni/issues/206)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档中增加@uni-helper/vite-plugin-uni-components的使用提示 ([37d9d46](https://github.com/Moonofweisheng/wot-design-uni/commit/37d9d4631e434792b1e97dccac8a52a6d253d616))
+
+### [1.2.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.6...v1.2.7) (2024-03-29)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复DatePicker占位符展示缺失的问题 ([8fbca94](https://github.com/Moonofweisheng/wot-design-uni/commit/8fbca94e3690e8b86ce59fbe668805839c50192b))
+* 🐛 修复DateTimePicker区域选择极值计算错误的问题 ([a1e9530](https://github.com/Moonofweisheng/wot-design-uni/commit/a1e9530a917981ca4cf96dde1aa268eaf3da059f))
+* 🐛 修复picker-view初始化报错的问题 ([2102f38](https://github.com/Moonofweisheng/wot-design-uni/commit/2102f38a107a7cc8a316cb7fdc5a9738a5bb7499)), closes [#205](https://github.com/Moonofweisheng/wot-design-uni/issues/205)
+* 🐛 修复picker选择器在APP端包装二维数组逻辑错误导致无法实现多列选择器的问题 ([ed5d7ac](https://github.com/Moonofweisheng/wot-design-uni/commit/ed5d7ace2050f5ae7541c8fd2ec395de56fa73cc))
+* 🐛 移除文件移动时volar变更文件路径错误导致.vue文件中多出的无用路径字符串 ([1f8f8ae](https://github.com/Moonofweisheng/wot-design-uni/commit/1f8f8ae2bfb2b13a6b6fcd6435a2d75f47d0e775))
+
+### [1.2.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.5...v1.2.6) (2024-03-27)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Picker 未选择时显示第一列值的问题 ([21839e0](https://github.com/Moonofweisheng/wot-design-uni/commit/21839e0caf170248f454d80645bc3aa2f3ae2cdb))
+* 🐛 修复DatetimePicker区间模式未选值时显示占位符错误的问题 ([37350ee](https://github.com/Moonofweisheng/wot-design-uni/commit/37350ee5234a0f30debd22d33fb168415ec4e72d))
+
+### [1.2.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.4...v1.2.5) (2024-03-24)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复textarea在支付宝小程序上清除按钮点击热区失效的问题 ([84662f2](https://github.com/Moonofweisheng/wot-design-uni/commit/84662f254b85d3b554113c9ba4f73ca695596fe9))
+
+### [1.2.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.3...v1.2.4) (2024-03-23)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复textarea、input的label存在icon时高度异常的问题 ([e487ced](https://github.com/Moonofweisheng/wot-design-uni/commit/e487ced1624ce9ba35b29537481302e07050612c))
+* 🐛 修复textarea无法换行的问题 ([25bd564](https://github.com/Moonofweisheng/wot-design-uni/commit/25bd56485508ae8b3dfffd13d47c306fbf42d65e))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整组件库基于vite配置自动引入组件的介绍 ([2d23607](https://github.com/Moonofweisheng/wot-design-uni/commit/2d2360706fbe2a5d4024ceebd82720014c6b1ea2))
+* ✏️ 文档推荐用户从wot-design-uni.cn迁移至wot-design-uni.gitee.io ([72a567c](https://github.com/Moonofweisheng/wot-design-uni/commit/72a567c44867f049c1526f5d682e46155047516a))
+* ✏️ 增加steps设置激活项的介绍 ([7c0d36c](https://github.com/Moonofweisheng/wot-design-uni/commit/7c0d36c36214517d959aa27e284aacf59d2b074b))
+
+### [1.2.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.2...v1.2.3) (2024-03-20)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复部分外部链接不可用的问题 ([e2fb515](https://github.com/Moonofweisheng/wot-design-uni/commit/e2fb5155c40e58e44920329cdfb4f2391bb81970))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 修复 checkbox 单独使用时无法切换选中状态的问题 ([#198](https://github.com/Moonofweisheng/wot-design-uni/issues/198)) ([4a20219](https://github.com/Moonofweisheng/wot-design-uni/commit/4a2021908f0d63ca398660950609bd5f4a7ca9b9))
+
+### [1.2.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.1...v1.2.2) (2024-03-19)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复picker选择器绑定值value值为0时无法生效的问题 ([d4de4ba](https://github.com/Moonofweisheng/wot-design-uni/commit/d4de4ba93824905840adc49e2d85d7168c9fd48e)), closes [#195](https://github.com/Moonofweisheng/wot-design-uni/issues/195)
+
+### [1.2.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.2.0...v1.2.1) (2024-03-19)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复部分可为null的props丢失null类型的问题 ([604e9f3](https://github.com/Moonofweisheng/wot-design-uni/commit/604e9f3810f38637ee1a7640e642790719cd9d3f))
+
+## [1.2.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.10...v1.2.0) (2024-03-19)
+
+
+### ✨ Features | 新功能
+
+* ✨ typescript类型支持增强 ([#192](https://github.com/Moonofweisheng/wot-design-uni/issues/192)) ([201e7a1](https://github.com/Moonofweisheng/wot-design-uni/commit/201e7a12b9c4023e35ff9540f5da09794ea3c6f7))
+
+### [1.1.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.9...v1.1.10) (2024-03-15)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复tabbar默认shape固定底部安全区无遮挡的问题 ([03048bb](https://github.com/Moonofweisheng/wot-design-uni/commit/03048bba17966e13e864c4a3d29047986778d586))
+
+### [1.1.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.8...v1.1.9) (2024-03-11)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 推荐使用托管在gitee上的文档地址 ([24ae6ca](https://github.com/Moonofweisheng/wot-design-uni/commit/24ae6cac05b150ff8da3ab47cc4bb3eeac48a369))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复textarea在微信小程序平台下部分安卓手机maxlength不生效的问题 ([512e63b](https://github.com/Moonofweisheng/wot-design-uni/commit/512e63b0ad30ff7acb14fffbb124dba59e34d450))
+
+### [1.1.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.7...v1.1.8) (2024-03-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复transitiont打开后立即关闭时无法关闭的问题 ([c1cebf6](https://github.com/Moonofweisheng/wot-design-uni/commit/c1cebf6de0b1c6a2f8a32aa4815adc8c0466eeca))
+
+### [1.1.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.6...v1.1.7) (2024-03-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复badge组件多出一个script标签的问题 ([e1819b4](https://github.com/Moonofweisheng/wot-design-uni/commit/e1819b4dbcb3dc1244bbe5641cdb538d0ad9c5e7)), closes [#188](https://github.com/Moonofweisheng/wot-design-uni/issues/188)
+
+### [1.1.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.5...v1.1.6) (2024-03-06)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Tabar为round类型时开启safeAreaInsetBottom是样式异常的问题 ([aa9ae88](https://github.com/Moonofweisheng/wot-design-uni/commit/aa9ae88f35236dec15635bd8e4fd0c7023e5fb70))
+
+### [1.1.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.4...v1.1.5) (2024-03-05)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Search、Input等组件clear事件在value变更前触发的问题 ([8d113a2](https://github.com/Moonofweisheng/wot-design-uni/commit/8d113a285dbffa705e44a31ad05e48f36978c46c)), closes [#185](https://github.com/Moonofweisheng/wot-design-uni/issues/185)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 首页增加常见问题的入口 ([fd7a7dd](https://github.com/Moonofweisheng/wot-design-uni/commit/fd7a7dd287226f670cf02db9cf2856c9ebe52498))
+
+### [1.1.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.3...v1.1.4) (2024-03-04)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Navbar显示下边框时fixed不生效的问题 ([18c09d8](https://github.com/Moonofweisheng/wot-design-uni/commit/18c09d87384699c044a9f84838b17f74eaff77b3))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 增加支付宝小程序styleIsolation配置的文档 ([68d1262](https://github.com/Moonofweisheng/wot-design-uni/commit/68d1262ed5ac6ccf8c078ba089e045739c2275e8))
+
+### [1.1.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.2...v1.1.3) (2024-03-03)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档中增加提问的智慧和toast、message组件的常见问题 ([2fdd4b1](https://github.com/Moonofweisheng/wot-design-uni/commit/2fdd4b1c050ed8805637ec0b082ca4d20c3c17b6))
+
+### [1.1.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.1...v1.1.2) (2024-03-01)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Button会存在一个默认border的问题 ([#182](https://github.com/Moonofweisheng/wot-design-uni/issues/182)) ([3714ffb](https://github.com/Moonofweisheng/wot-design-uni/commit/3714ffb0f1de55f3eae5a36b9235bdbc518b0738))
+
+### [1.1.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.1.0...v1.1.1) (2024-02-29)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 ImgCropper 在钉钉小程序平台无法展示所选图片的问题 ([db8d029](https://github.com/Moonofweisheng/wot-design-uni/commit/db8d029db3a227cd062c6e9d7c14eb9d0f3dae87))
+* 🐛 修复微信小程序css使用标签选择器抛出警告的问题(wd-img) ([#181](https://github.com/Moonofweisheng/wot-design-uni/issues/181)) ([ee3da01](https://github.com/Moonofweisheng/wot-design-uni/commit/ee3da016439d68f1d9d061bb1b1cbd10f2863aa4))
+
+## [1.1.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v1.0.0...v1.1.0) (2024-02-27)
+
+
+### ✨ Features | 新功能
+
+* ✨ Button 支持微信小程序chooseavatar和agreeprivacyauthorization事件 ([177c726](https://github.com/Moonofweisheng/wot-design-uni/commit/177c726e0d0f9bc435f815af2e4fc8e917ef144d))
+* ✨ DropDown组件支持钉钉小程序 ([924c65b](https://github.com/Moonofweisheng/wot-design-uni/commit/924c65b4f66e7d1ff75aa2bcb5c6cbe4e045fb92))
+* ✨ Slider 支持钉钉小程序 ([bea7a49](https://github.com/Moonofweisheng/wot-design-uni/commit/bea7a499edc3e0681ec11dd26333d8a969dd9b0e))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 新增支持钉钉小程序平台 ([9525f23](https://github.com/Moonofweisheng/wot-design-uni/commit/9525f23f207af47c10c37614279b8318500e3ede))
+* ✏️ 修复Segment演示demo在钉钉小程序平台展示异常的问题 ([4fbe556](https://github.com/Moonofweisheng/wot-design-uni/commit/4fbe5569b3cb1761c2ef7847a4abc1721d3ed220))
+* ✏️ 支持平台的介绍中新增支付宝小程序 ([320e4dd](https://github.com/Moonofweisheng/wot-design-uni/commit/320e4dd2e102146b8a466d378c8356286faeb28c))
+
+## [1.0.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.3.1...v1.0.0) (2024-02-26)
+
+
+### ✨ Features | 新功能
+
+* ✨ 支持支付宝小程序并提供ConfigProvider的便利性优化 ([e1baca3](https://github.com/Moonofweisheng/wot-design-uni/commit/e1baca3ce5201c38e6b0aee5e6cb7099ecba9772))
+* ✨ sticky组件支持支付宝平台 ([3805882](https://github.com/Moonofweisheng/wot-design-uni/commit/3805882b8b1f8ad165d8cda528fa0b5cf3f96c27))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 演示demo增加组件库版本号的显示 ([19a00e3](https://github.com/Moonofweisheng/wot-design-uni/commit/19a00e34652bf672f7fdfd28899625dac977a1b6))
+
+### [0.3.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.3.0...v0.3.1) (2024-02-26)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复大尺寸checkbox选中样式异常的问题 ([413cf3b](https://github.com/Moonofweisheng/wot-design-uni/commit/413cf3b6a04358bca5284704d750cfd224c1d277))
+
+## [0.3.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.23...v0.3.0) (2024-02-21)
+
+
+### ✨ Features | 新功能
+
+* ✨ 调整Button 按钮样式受主色控制并优化幽灵按钮显示效果 ([5f0d1f5](https://github.com/Moonofweisheng/wot-design-uni/commit/5f0d1f5f8bac81435d248348ec5823e82d35f7a4))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复select-picker组件绑定值描述错误的问题 ([b287111](https://github.com/Moonofweisheng/wot-design-uni/commit/b2871114311656580ade25c25f0775d9246f32b7)), closes [#178](https://github.com/Moonofweisheng/wot-design-uni/issues/178)
+* ✏️ 增加Button细边框幽灵按钮的使用说明 ([366c34b](https://github.com/Moonofweisheng/wot-design-uni/commit/366c34b69faedee4874221c604d1a6d5c8c1a8e0))
+
+### [0.2.23](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.22...v0.2.23) (2024-02-07)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档支持显示友情链接 ([adac43f](https://github.com/Moonofweisheng/wot-design-uni/commit/adac43f2a1b300d4169249e108389b3a24ac9ffa))
+* ✏️ 友情链接支持来自线上配置 ([50896bb](https://github.com/Moonofweisheng/wot-design-uni/commit/50896bb475c5e1c5be42bdc22a56a47db9a51481))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 MessageBox 国际化不生效的问题 ([48404a1](https://github.com/Moonofweisheng/wot-design-uni/commit/48404a1ccccf9081cf3e9f9918e20cb58a6bb12f)), closes [#177](https://github.com/Moonofweisheng/wot-design-uni/issues/177)
+
+### [0.2.22](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.21...v0.2.22) (2024-01-30)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修正 Popover 组件文档中menuclick示例错误的问题 ([9df96e7](https://github.com/Moonofweisheng/wot-design-uni/commit/9df96e7629296bfba2b7f951b83508cc9e4a3935))
+
+### [0.2.21](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.19...v0.2.21) (2024-01-28)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Dropdown 组件点击已展开项时无法关闭的问题 ([3846590](https://github.com/Moonofweisheng/wot-design-uni/commit/38465905e76b929a4d4af93dfe4ad9f31503b2ad))
+
+
+### ✨ Features | 新功能
+
+* ✨ 支持国际化 ([#168](https://github.com/Moonofweisheng/wot-design-uni/issues/168)) ([ce9f192](https://github.com/Moonofweisheng/wot-design-uni/commit/ce9f19244e4d376c5104be2b89d57426bf722aee))
+
+### [0.2.19](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.18...v0.2.19) (2024-01-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Input 绑定值无法为null的问题 ([f745e14](https://github.com/Moonofweisheng/wot-design-uni/commit/f745e14d10d64b643aa2f9c0170f72db3a99bb3e))
+* 🐛 修复多列、单复选选择器列更新时显示值未更新的问题 ([5ba45b9](https://github.com/Moonofweisheng/wot-design-uni/commit/5ba45b94b711e1129873fa29b243a616087ddc2a)), closes [#167](https://github.com/Moonofweisheng/wot-design-uni/issues/167)
+
+### [0.2.18](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.17...v0.2.18) (2024-01-24)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 CheckBox 组件的选中色无法应用到css变量的问题 ([febfb61](https://github.com/Moonofweisheng/wot-design-uni/commit/febfb61cab3b55a9f78920ed4715f05a232fb9f6))
+* 🐛 修复 Radio 组件的选中色无法应用到css变量的问题 ([b7e8631](https://github.com/Moonofweisheng/wot-design-uni/commit/b7e86314139cc6291e851c350219fce837f0f26e))
+
+### [0.2.17](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.16...v0.2.17) (2024-01-23)
+
+
+### ✨ Features | 新功能
+
+* ✨ Form 表单组件提供开关控制是否model变化时重置提示信息 ([b9f46ba](https://github.com/Moonofweisheng/wot-design-uni/commit/b9f46ba0da85acd7312753a34dd0ad3f2f7379a2)), closes [#166](https://github.com/Moonofweisheng/wot-design-uni/issues/166)
+
+### [0.2.16](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.15...v0.2.16) (2024-01-21)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复文档中关于日期选择器最大日期描述错误的问题 ([bb76ce3](https://github.com/Moonofweisheng/wot-design-uni/commit/bb76ce332c6977cbae981790aa356bc27c0d9efa))
+
+### [0.2.15](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.14...v0.2.15) (2024-01-15)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tab class类名属性错误的问题 ([dc87df7](https://github.com/Moonofweisheng/wot-design-uni/commit/dc87df70c7920d7cfabc571ace8beb2ce0dc2a7c))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 Upload 文档中before-upload钩子参数描述错误的问题 ([3ec7299](https://github.com/Moonofweisheng/wot-design-uni/commit/3ec7299ce724fce771b782f6110ba6ec29376291))
+
+### [0.2.14](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.13...v0.2.14) (2024-01-14)
+
+
+### ✨ Features | 新功能
+
+* ✨ InputNumber步进器支持禁用输入框 ([933bce3](https://github.com/Moonofweisheng/wot-design-uni/commit/933bce314618956ff922daacef5b3594f36baf9b))
+
+### [0.2.13](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.12...v0.2.13) (2024-01-12)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复演示文档刷新后指向localhost的问题 ([4cd8b16](https://github.com/Moonofweisheng/wot-design-uni/commit/4cd8b16bdf5ea8e93cff85396025844e9ebd031c))
+
+### [0.2.12](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.11...v0.2.12) (2024-01-11)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabbar 错误地抛出提示信息的问题 ([1c89ed0](https://github.com/Moonofweisheng/wot-design-uni/commit/1c89ed0a7158e79556e83c6aeb89bd1e93e4ea0d))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 增加 Circle 组件使用插槽的示例 ([6341594](https://github.com/Moonofweisheng/wot-design-uni/commit/6341594295732dac951c465d95537f36addbbf9c))
+* ✏️ 增加展示gitee的star徽标 ([1abf962](https://github.com/Moonofweisheng/wot-design-uni/commit/1abf962e37e27c1c1688bed2026c66022e63ce9b))
+
+### [0.2.11](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.10...v0.2.11) (2024-01-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Overlay 类型声明错误的问题 ([930e59a](https://github.com/Moonofweisheng/wot-design-uni/commit/930e59a9b09aee535ec4c316e44ed3c0e31be628))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 提供托管在Giteee上的文档网站 ([6d62e9e](https://github.com/Moonofweisheng/wot-design-uni/commit/6d62e9e7ddda0bd9f51f2ad9e2893f1ed3709c63))
+
+### [0.2.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.9...v0.2.10) (2024-01-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 col-picker 暗黑模式下标题文字颜色不清楚的问题 ([217ffb7](https://github.com/Moonofweisheng/wot-design-uni/commit/217ffb7dacb66b2017145c6e43fc8c873a6e9dd2))
+* 🐛 修复 steps 组件自定义图标显示异常的问题 ([0300f63](https://github.com/Moonofweisheng/wot-design-uni/commit/0300f63f35a5afcd278aba3b4ab721f498716d94))
+* 🐛 修复支付宝小程序暗黑模式下 Input、Textarea 组件显示异常的问题 ([8a9c344](https://github.com/Moonofweisheng/wot-design-uni/commit/8a9c344872bfcd81a73f71520f51b6b849f516d5))
+
+### [0.2.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.8...v0.2.9) (2024-01-07)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 col-picker 组件首次打开指示线位置异常的问题 ([323fb00](https://github.com/Moonofweisheng/wot-design-uni/commit/323fb00942b7032b678d92ab03360dc7bb8faae8))
+
+### [0.2.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.7...v0.2.8) (2024-01-06)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 展示netlify支持 ([410b180](https://github.com/Moonofweisheng/wot-design-uni/commit/410b180ec9c660ab9c49d6eb203d53c35919c512))
+
+### [0.2.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.5...v0.2.7) (2024-01-06)
+
+
+### ✨ Features | 新功能
+
+* ✨ 优化provide/inject的使用方式 ([892f467](https://github.com/Moonofweisheng/wot-design-uni/commit/892f4675a848ee3d4c965c36d5c4034aa5806b6d))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档网站增加自定义footer ([dd8bc00](https://github.com/Moonofweisheng/wot-design-uni/commit/dd8bc003eedcdc43cdd60bb896c897d108dd4a51))
+* ✏️ 修复vitepress自定义footer展示错误的问题 ([c0701d5](https://github.com/Moonofweisheng/wot-design-uni/commit/c0701d584e5d9b84e6d913dd23666b80d803407b))
+
+### [0.2.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.5...v0.2.6) (2024-01-06)
+
+
+### ✨ Features | 新功能
+
+* ✨ 优化provide/inject的使用方式 ([892f467](https://github.com/Moonofweisheng/wot-design-uni/commit/892f4675a848ee3d4c965c36d5c4034aa5806b6d))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档网站增加自定义footer ([dd8bc00](https://github.com/Moonofweisheng/wot-design-uni/commit/dd8bc003eedcdc43cdd60bb896c897d108dd4a51))
+
+### [0.2.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.4...v0.2.5) (2023-12-28)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Form 导入FormRules、ErrorMessage时未指定为type的问题 ([c88c84e](https://github.com/Moonofweisheng/wot-design-uni/commit/c88c84e8b71fc2404643a623c28f4953ffe36e71))
+* 🐛 修复 SwipeAction 组件在H5端导致页面无法上下滚动的问题 ([1f68ce1](https://github.com/Moonofweisheng/wot-design-uni/commit/1f68ce13c8109dd92ca4bf055f66aa8dff24c83d)), closes [#149](https://github.com/Moonofweisheng/wot-design-uni/issues/149)
+
+### [0.2.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.3...v0.2.4) (2023-12-27)
+
+### [0.2.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.2...v0.2.3) (2023-12-27)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复动态表单演示页面标题错误的问题 ([7c65359](https://github.com/Moonofweisheng/wot-design-uni/commit/7c65359c88614ae53c4800d0946d8e09ef547a26))
+
+### [0.2.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.1...v0.2.2) (2023-12-26)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 移除 Swiper 的list中不必填的属性 ([672f680](https://github.com/Moonofweisheng/wot-design-uni/commit/672f680051009edd23a67d4e32722839f519d9ba))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 Textarea 文档示例错误的问题 ([7da3a4c](https://github.com/Moonofweisheng/wot-design-uni/commit/7da3a4cdfe35f87193f57139de0819130424d6ea))
+* ✏️ 优化 Form 相关组件的文档介绍 ([6a0a7a7](https://github.com/Moonofweisheng/wot-design-uni/commit/6a0a7a730fcd8904609f8a48339e1079baf3e9be))
+
+### [0.2.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.2.0...v0.2.1) (2023-12-25)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ PassowrdInput 密码输入框组件增加文档标题 ([cccc4cc](https://github.com/Moonofweisheng/wot-design-uni/commit/cccc4cc0d4952f594e5387bad32a7248009ebd9e))
+
+## [0.2.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.70...v0.2.0) (2023-12-24)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Form 表单组件 ([c8086d6](https://github.com/Moonofweisheng/wot-design-uni/commit/c8086d624c01bfbae3b9dfc324d33d6bfe46e041))
+* ✨ 新增 PasswordInput 密码输入框 ([b8c68f9](https://github.com/Moonofweisheng/wot-design-uni/commit/b8c68f92f7ddbf3ae2a58bf36593a0cd0340f225))
+* ✨ 新增 textarea 文本域组件 ([ed56bcd](https://github.com/Moonofweisheng/wot-design-uni/commit/ed56bcdb0337c198e8834182d47d1cd83513091d))
+* ✨ 增加父子组件 Provide/Inject 的hooks ([eb971d4](https://github.com/Moonofweisheng/wot-design-uni/commit/eb971d4e86733b0337de0c63f26b373424a842f0))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Input 组件在支付宝平台存在一个默认padding的问题 ([921c906](https://github.com/Moonofweisheng/wot-design-uni/commit/921c90606e05ea1b29cdee39cde7858907b2cd4d))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整主题定制相关文档 ([2d5b1af](https://github.com/Moonofweisheng/wot-design-uni/commit/2d5b1af2787d33ec24eb6e6ab9db6ff941d80c2b))
+* ✏️ 增加 textarea 文本域组件功能的迁移说明 ([61ebc7d](https://github.com/Moonofweisheng/wot-design-uni/commit/61ebc7db1e1db3e8634a87c24fae0869f4b6f17b))
+* ✏️ PasswordInput 密码输入框文档增加版本介绍 ([56ccf60](https://github.com/Moonofweisheng/wot-design-uni/commit/56ccf6005e502237e1ff45b5b52e852b402a10c9))
+
+### [0.1.70](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.69...v0.1.70) (2023-12-23)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 picker 的列value为0时回显异常的问题 ([2ba93c3](https://github.com/Moonofweisheng/wot-design-uni/commit/2ba93c328c54c41b6e1e9ead946e9c46e278ebb9)), closes [#155](https://github.com/Moonofweisheng/wot-design-uni/issues/155)
+
+### [0.1.69](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.68...v0.1.69) (2023-12-13)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Notify 使用文档错误的问题 ([3fe6423](https://github.com/Moonofweisheng/wot-design-uni/commit/3fe6423c9c6727eaa3655029bf862b9be182b70b)), closes [#148](https://github.com/Moonofweisheng/wot-design-uni/issues/148)
+
+### [0.1.68](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.67...v0.1.68) (2023-12-07)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 增加 Gap 组件的文档 ([9e3a8c1](https://github.com/Moonofweisheng/wot-design-uni/commit/9e3a8c1506f9ef93f9f0155ac948c8bc4d215ea8))
+
+### [0.1.67](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.66...v0.1.67) (2023-12-06)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Gap 间隔槽组件 ([#147](https://github.com/Moonofweisheng/wot-design-uni/issues/147)) ([fa7cd16](https://github.com/Moonofweisheng/wot-design-uni/commit/fa7cd163810cbcd63fc2a99a6a92ccd8a803b2f1))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Picker组件v-model数据不更新的问题 ([e60f475](https://github.com/Moonofweisheng/wot-design-uni/commit/e60f47538130625a8c8f93e3a6795b7e71588002)), closes [#146](https://github.com/Moonofweisheng/wot-design-uni/issues/146)
+
+### [0.1.66](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.65...v0.1.66) (2023-12-01)
+
+
+### ✨ Features | 新功能
+
+* ✨ Tag 组件type增加属性值default ([#143](https://github.com/Moonofweisheng/wot-design-uni/issues/143)) ([48f0e4b](https://github.com/Moonofweisheng/wot-design-uni/commit/48f0e4b3c484755a0da4eb11fa814c6b52be74b1))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 ActionSheet 组件设置custom-class无效的问题 ([1e5bcf7](https://github.com/Moonofweisheng/wot-design-uni/commit/1e5bcf7d0a8be66b80de81a0359d3fb429fdf52d))
+
+### [0.1.65](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.64...v0.1.65) (2023-11-29)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 NumberKeyboard 数字键盘组件 ([#139](https://github.com/Moonofweisheng/wot-design-uni/issues/139)) ([7bb4455](https://github.com/Moonofweisheng/wot-design-uni/commit/7bb4455c6d9eca179ba174b8ad0da6ae8a09defc))
+* Tag新增类型标签添加slot ([7977dbb](https://github.com/Moonofweisheng/wot-design-uni/commit/7977dbbe3565eb06b700f2c55a31803647760fa9))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 新增关于 Tag 组件的add插槽的介绍 ([537fa5e](https://github.com/Moonofweisheng/wot-design-uni/commit/537fa5ebf8dcdc14ee12fc1f1e5a5f829653a14a))
+
+### [0.1.64](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.63...v0.1.64) (2023-11-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复DateTimePicker标题展示和模式为区间时before-confirm参数错误的问题 ([7bcd12b](https://github.com/Moonofweisheng/wot-design-uni/commit/7bcd12ba633224dd42b160f0b43fadc99ac76707))
+
+### [0.1.63](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.62...v0.1.63) (2023-11-23)
+
+
+### ✨ Features | 新功能
+
+* ✨ CountDown 倒计时组件支持custom-class和custom-style ([dd60d6d](https://github.com/Moonofweisheng/wot-design-uni/commit/dd60d6df855cc49eba36beb7bcfb9eeb96ed0c82))
+* ✨ Search 搜索组件支持自动聚焦和清空后自动聚焦 ([2e3ab63](https://github.com/Moonofweisheng/wot-design-uni/commit/2e3ab63d3dad582c44d9d9f8d2b57e21ee22f380))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复文档中config-provider等页面的错误 ([f71e641](https://github.com/Moonofweisheng/wot-design-uni/commit/f71e6412e770f2043e4cb9a35950a68aacf0e542))
+
+### [0.1.62](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.61...v0.1.62) (2023-11-22)
+
+
+### ✨ Features | 新功能
+
+* ✨ Badge 徽标组件支持控制是否显示0值 ([65cfb2c](https://github.com/Moonofweisheng/wot-design-uni/commit/65cfb2ca15c29783f6de48de0bda4ddc3d43664a))
+* ✨ Upload 上传组件支持h5端获取文件后缀名 ([59fe70c](https://github.com/Moonofweisheng/wot-design-uni/commit/59fe70c0d0c55c7ecca26902b41599be94e34fe3))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化 Upload 文档中关于云存储内容的样式 ([607ce05](https://github.com/Moonofweisheng/wot-design-uni/commit/607ce05100ffef9c5c98b503e580a718551f5552))
+
+### [0.1.61](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.60...v0.1.61) (2023-11-20)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 Tag 标签组件文档错乱的问题 ([502203b](https://github.com/Moonofweisheng/wot-design-uni/commit/502203bebf08d7e6851b8dd2f94768f6c620da26))
+* ✏️ ImgCropper 组件演示页面增加微信小程序隐私协议弹框 ([3af9246](https://github.com/Moonofweisheng/wot-design-uni/commit/3af9246d1f1876ba3c83f6829a9716ad37ae5829))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Calendar 日历组件存在未定义属性导致警告的问题 ([d0d3152](https://github.com/Moonofweisheng/wot-design-uni/commit/d0d3152a5ca1a3e06135b12f4565211258619d1f))
+* 🐛 修复 CountDown 倒计时组件文档手动控制示例错误的问题 ([3c373fb](https://github.com/Moonofweisheng/wot-design-uni/commit/3c373fbf3af02c8a73ddd3a4063f9408ec4f33ff))
+* 🐛 修复 SelectPicker 组件loading状态仍可以滚动的问题 ([c5a1bff](https://github.com/Moonofweisheng/wot-design-uni/commit/c5a1bfff576aad8a6f03288a6a12a8ed24f776f2))
+
+
+### ✨ Features | 新功能
+
+* ✨ Upload 上传组件支持上传至云存储 ([523a6be](https://github.com/Moonofweisheng/wot-design-uni/commit/523a6be40b065c4cc28cfe81fdcb200142d9a455))
+
+### [0.1.60](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.59...v0.1.60) (2023-11-20)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 CountDown 倒计时组件默认slot用法的介绍错误的问题 ([2fbb88f](https://github.com/Moonofweisheng/wot-design-uni/commit/2fbb88fcd9fe21de09637d48149278d9aef5e1d9))
+
+### [0.1.59](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.58...v0.1.59) (2023-11-19)
+
+### [0.1.58](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.57...v0.1.58) (2023-11-19)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 CountDown 倒计时组件 ([a805d04](https://github.com/Moonofweisheng/wot-design-uni/commit/a805d04827600525c08fbc1848cb3a524b48e81a))
+* ✨ CountDown 倒计时组件支持小程序 ([22f249a](https://github.com/Moonofweisheng/wot-design-uni/commit/22f249ae5bdedea1ecebfe31350c7b5a1e394f2e))
+
+### [0.1.57](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.56...v0.1.57) (2023-11-17)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Fab 悬浮动作按钮组件 ([3c526fe](https://github.com/Moonofweisheng/wot-design-uni/commit/3c526feb102ccf17da0678a6e1c004bb82d57f0f))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 Cell 组件点击反馈的介绍错误的问题 ([9096d81](https://github.com/Moonofweisheng/wot-design-uni/commit/9096d81f514348d6103f33590387d0406b217198))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Table 表格组件数字英文换行失效的问题 ([47ac339](https://github.com/Moonofweisheng/wot-design-uni/commit/47ac3390cb58d250129a9db6ade8d90f980855a1))
+
+### [0.1.56](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.55...v0.1.56) (2023-11-12)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabbar 标签栏组件 bordered 属性无效的问题 ([69c2656](https://github.com/Moonofweisheng/wot-design-uni/commit/69c265638c6fc36a1479a37c052a572da333006f))
+
+### [0.1.55](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.54...v0.1.55) (2023-11-12)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 修正README.md 中[贡献指南]链接错误,跳转失败的问题。 ([071de88](https://github.com/Moonofweisheng/wot-design-uni/commit/071de88f98fa90492032193606941fbcdfe9283d))
+
+
+### ✨ Features | 新功能
+
+* ✨ Swiper 轮播图组件增加imageMode属性支持自定义图片裁剪缩放模式 ([4205c01](https://github.com/Moonofweisheng/wot-design-uni/commit/4205c0149d3224e318ef21563e96f0a843ad13bc))
+
+### [0.1.54](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.53...v0.1.54) (2023-11-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 修正ColPicker多列选择器v-model类型提示使用Record[]实际上的数据是单维数组的问题 ([c490ac6](https://github.com/Moonofweisheng/wot-design-uni/commit/c490ac607e6f9eb7207b90943b83ce1696a30fd4))
+
+### [0.1.53](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.52...v0.1.53) (2023-11-09)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Input 输入框组件包含无用显示内容的问题 ([13a3106](https://github.com/Moonofweisheng/wot-design-uni/commit/13a3106055d66083d640912bfff67f2e08781f03))
+
+### [0.1.52](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.51...v0.1.52) (2023-11-09)
+
+
+### ✨ Features | 新功能
+
+* ✨ Input绑定值为null时的警告从error改为warn ([70f1407](https://github.com/Moonofweisheng/wot-design-uni/commit/70f1407eec057668da0117c9861b523ab667da70))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Badge 徽标组件暗黑模式下边框颜色未兼容的问题 ([c0a0b5a](https://github.com/Moonofweisheng/wot-design-uni/commit/c0a0b5aaea238f144978a3a9b2ab6db202dfdc21)), closes [#115](https://github.com/Moonofweisheng/wot-design-uni/issues/115)
+
+### [0.1.51](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.50...v0.1.51) (2023-11-06)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复引入错误依赖的问题 ([15bc876](https://github.com/Moonofweisheng/wot-design-uni/commit/15bc876a3026319c88ce4b757593243f9869ce39))
+
+### [0.1.50](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.49...v0.1.50) (2023-11-06)
+
+
+### ✨ Features | 新功能
+
+* ✨ SidebarItem、TabbarItem、GridItem组件增加徽标自定义属性badge-props ([7143098](https://github.com/Moonofweisheng/wot-design-uni/commit/71430989bff81a137fc5199eeeefe0a4da3ce31d))
+
+### [0.1.49](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.48...v0.1.49) (2023-11-05)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Sidebar 侧边栏组件 ([#113](https://github.com/Moonofweisheng/wot-design-uni/issues/113)) ([d189378](https://github.com/Moonofweisheng/wot-design-uni/commit/d189378a02aeb36c275218358849a187e88ce687))
+
+### [0.1.48](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.47...v0.1.48) (2023-11-04)
+
+
+### ✨ Features | 新功能
+
+* ✨ Input 输入框增加支持微信小程序原生属性always-embed ([57d00ec](https://github.com/Moonofweisheng/wot-design-uni/commit/57d00ececd9849a2d21f59fc863b6ad8933419d8))
+
+### [0.1.47](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.46...v0.1.47) (2023-11-02)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复 Image 图片组件演示demo样式不友好的问题 ([cbdab19](https://github.com/Moonofweisheng/wot-design-uni/commit/cbdab1959efff642a60a351ffd6454dcd173b9a4))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Input 组件为textarea类型时show-confirm-bar不生效的问题 ([eebec8a](https://github.com/Moonofweisheng/wot-design-uni/commit/eebec8a74fa9399bfd305cadb1a9b6a526e88568))
+* 🐛 img 预览demo布局错位 ([0397809](https://github.com/Moonofweisheng/wot-design-uni/commit/0397809d81010e109c238eefea56c82bd06a50cb))
+
+
+### ✨ Features | 新功能
+
+* ✨ 图片添加圆角大小设置 ([98edaed](https://github.com/Moonofweisheng/wot-design-uni/commit/98edaed6cb1c81b9ed6e05561814aaa51b31b2b3))
+* ✨ Badge 徽标组件增加customStyle自定义样式 ([d194106](https://github.com/Moonofweisheng/wot-design-uni/commit/d194106f07fb46f6a979967ba327dee1b41ca70e))
+
+### [0.1.46](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.45...v0.1.46) (2023-11-02)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabs 组件在微信小程序端有概率不绘制下划线的问题 ([d70ec65](https://github.com/Moonofweisheng/wot-design-uni/commit/d70ec65998d1ca1fbdbd3b4ef1af4a292a597f55))
+
+### [0.1.45](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.44...v0.1.45) (2023-11-01)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Switch 开关组件自定义大小无效的问题 ([15ffa1f](https://github.com/Moonofweisheng/wot-design-uni/commit/15ffa1f9172d3c11722c71ca370c1016e25f2b41))
+
+### [0.1.44](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.43...v0.1.44) (2023-11-01)
+
+
+### ✨ Features | 新功能
+
+* ✨ 使用 useQueue hook替换clickOut实现关闭多个气泡等组件的功能 ([3a24999](https://github.com/Moonofweisheng/wot-design-uni/commit/3a24999c1e28414b12806cad3c3bc6f7a445593f))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化演示项目首页样式 ([e98f30e](https://github.com/Moonofweisheng/wot-design-uni/commit/e98f30e0125e287d2bc5cdbcfff69a35cb7436d8))
+
+### [0.1.43](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.42...v0.1.43) (2023-10-31)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tooltip 文字提示组件微信端关闭按钮样式错误的问题 ([ec1b949](https://github.com/Moonofweisheng/wot-design-uni/commit/ec1b9490b9517d0e4ebe4a5130a418a684b1a589))
+
+### [0.1.42](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.41...v0.1.42) (2023-10-31)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Popover、Tooltip 组件展开过程中无法遮盖图片的问题 ([db009c1](https://github.com/Moonofweisheng/wot-design-uni/commit/db009c1229413f7ecc446e3e3a1db4d7678268b3))
+
+### [0.1.41](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.40...v0.1.41) (2023-10-31)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Popover、Tooltip 组件展开切换动画不流畅的问题 ([c765b08](https://github.com/Moonofweisheng/wot-design-uni/commit/c765b085a6018433bb95fd7647c091393e2e6e7c)), closes [#101](https://github.com/Moonofweisheng/wot-design-uni/issues/101)
+
+### [0.1.40](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.39...v0.1.40) (2023-10-30)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 移除文档中 Search 组件未支持的插槽 ([325e140](https://github.com/Moonofweisheng/wot-design-uni/commit/325e14046de38eb7c4e792a64a290c9997af5cba))
+
+### [0.1.39](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.38...v0.1.39) (2023-10-29)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 DateTimePicker 日期选择器组件双向绑定错误的问题 ([1b13873](https://github.com/Moonofweisheng/wot-design-uni/commit/1b13873cef4b7c760698abce7dca500cd548c660))
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Table 表格组件 ([#98](https://github.com/Moonofweisheng/wot-design-uni/issues/98)) ([c8395f8](https://github.com/Moonofweisheng/wot-design-uni/commit/c8395f8a7e1ad041b003672081b715a7c755adc1))
+* ✨ Collapse 折叠面板组件增加分割线 ([adc6633](https://github.com/Moonofweisheng/wot-design-uni/commit/adc6633ad80b74e801a48a50917c9a2d378de9e0)), closes [#97](https://github.com/Moonofweisheng/wot-design-uni/issues/97)
+
+### [0.1.38](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.37...v0.1.38) (2023-10-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Upload 组件showLimitNum属性名拼写错误的问题 ([301cbff](https://github.com/Moonofweisheng/wot-design-uni/commit/301cbff20facf60b5645108972f22c8c14235f87))
+
+### [0.1.37](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.36...v0.1.37) (2023-10-25)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复Tabbar组件类型警告的问题并优化文档相关链接 ([28c3cef](https://github.com/Moonofweisheng/wot-design-uni/commit/28c3cefdfc24f3f6f2669de5f93456a0db281f72))
+* ✏️ issues 模板更新 ([e34c5cd](https://github.com/Moonofweisheng/wot-design-uni/commit/e34c5cded1c850d22165c544a3c6a351701479ec))
+
+### [0.1.36](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.35...v0.1.36) (2023-10-21)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabs 指定name时双向绑定值仍为index的问题 ([756cad8](https://github.com/Moonofweisheng/wot-design-uni/commit/756cad8d6fcaefb0bf73f1cd2b9f4a24f5827b37)), closes [#91](https://github.com/Moonofweisheng/wot-design-uni/issues/91)
+
+### [0.1.35](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.34...v0.1.35) (2023-10-21)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabs 组件通过name匹配时抛出异常的问题 ([b36fb1f](https://github.com/Moonofweisheng/wot-design-uni/commit/b36fb1f9def0aa99c521ffc20c6cae8074b56838)), closes [#91](https://github.com/Moonofweisheng/wot-design-uni/issues/91)
+
+### [0.1.34](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.33...v0.1.34) (2023-10-18)
+
+
+### ✨ Features | 新功能
+
+* ✨ SelectPicker 单复选选择器增加 scroll-into-view 属性支持定位到选中值 ([00b27c1](https://github.com/Moonofweisheng/wot-design-uni/commit/00b27c187438426471dab2ea15bc39d627773ab2)), closes [#68](https://github.com/Moonofweisheng/wot-design-uni/issues/68)
+
+### [0.1.33](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.32...v0.1.33) (2023-10-17)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Navbar 导航栏组件 ([#86](https://github.com/Moonofweisheng/wot-design-uni/issues/86)) ([5f66f71](https://github.com/Moonofweisheng/wot-design-uni/commit/5f66f713fae9e693fda4a472bc3e0767a1a6d3e8))
+
+### [0.1.32](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.31...v0.1.32) (2023-10-16)
+
+
+### ✨ Features | 新功能
+
+* ✨ Tabs 组件调整为受控组件 ([b2a70bc](https://github.com/Moonofweisheng/wot-design-uni/commit/b2a70bc8f32800119924b29283db760af8a3ddb1)), closes [#82](https://github.com/Moonofweisheng/wot-design-uni/issues/82)
+
+### [0.1.31](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.30...v0.1.31) (2023-10-16)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复wd-popup组件的click-modal方法错误调用的问题 ([224e3e5](https://github.com/Moonofweisheng/wot-design-uni/commit/224e3e53f912a236e8e24f8afef64fa09f6a89aa))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 更新文档中关于组件数量的介绍 ([4fa7355](https://github.com/Moonofweisheng/wot-design-uni/commit/4fa7355e69a8bb32d1c9924cfc717caaf3345ee5))
+* ✏️ 增加 Overlay 遮罩层组件的文档 ([3bca4b6](https://github.com/Moonofweisheng/wot-design-uni/commit/3bca4b65c2bc7cd7f90e8b9513c619799f9a438b))
+
+### [0.1.30](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.29...v0.1.30) (2023-10-14)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Overlay 遮罩层组件 ([41b2c4f](https://github.com/Moonofweisheng/wot-design-uni/commit/41b2c4f3677dcce9c3e18875b7a1ec32d02b3d6a))
+* ✨ Popup 弹出层组件增加 lock-scroll 属性 ([a6987e6](https://github.com/Moonofweisheng/wot-design-uni/commit/a6987e65da2f121d4e95c1b5cb271ed8f9a06e58))
+
+### [0.1.29](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.28...v0.1.29) (2023-10-13)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Tabbar 标签栏组件固定底部时不设置placeholder情况下仍占据相应空间的问题 ([b58f9df](https://github.com/Moonofweisheng/wot-design-uni/commit/b58f9dfc8230e9427f2af658c8315c5b022b232c))
+
+### [0.1.28](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.27...v0.1.28) (2023-10-12)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 文档样式优化 ([f21ecb9](https://github.com/Moonofweisheng/wot-design-uni/commit/f21ecb9dfbfbf0afe49a760d24ebdc08e4799717))
+
+### [0.1.27](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.26...v0.1.27) (2023-10-12)
+
+
+### ⚡ Performance Improvements | 性能优化
+
+* ⚡ Segmented 分段器组件兼容支付宝小程序 ([3fd57a6](https://github.com/Moonofweisheng/wot-design-uni/commit/3fd57a600b537b945a8224bb97344baa9b0929e0))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 调整文档中图片的CDN地址 ([f704568](https://github.com/Moonofweisheng/wot-design-uni/commit/f704568f0299acbd3cc2d88934bfa1641b6cc792))
+* ✏️ 修复文档中根节点错写为根结点的问题 ([6da4145](https://github.com/Moonofweisheng/wot-design-uni/commit/6da414503ceb8b6de680b10332af45dbbbe7229d))
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Tabbar 标签栏组件 ([aa0bf19](https://github.com/Moonofweisheng/wot-design-uni/commit/aa0bf194865e381af41f7afa18e46105e0c812a9))
+* ✨ Icon 组件新增图标并支持第三方iconfont ([bc241ac](https://github.com/Moonofweisheng/wot-design-uni/commit/bc241acfc103309f196f4c04e08288526a056073))
+
+### [0.1.26](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.25...v0.1.26) (2023-10-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Slider 滑块组件双向滑动时右边滑块百分比计算错误的问题 ([92db0f2](https://github.com/Moonofweisheng/wot-design-uni/commit/92db0f2c7fb60b04e1562c55f6296b1b2b456144))
+
+### [0.1.25](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.24...v0.1.25) (2023-10-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Silder 滑块组件双向滑动时自定义最大值小于100无法滚动到最大值的问题 ([a70afa4](https://github.com/Moonofweisheng/wot-design-uni/commit/a70afa43239bc233ee0250e26227dbacd5c7021b)), closes [#69](https://github.com/Moonofweisheng/wot-design-uni/issues/69)
+
+### [0.1.24](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.23...v0.1.24) (2023-10-10)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 优化 Badge 徽标组件超出max的显示并修复分段器组件错误依赖的问题 ([a48adc8](https://github.com/Moonofweisheng/wot-design-uni/commit/a48adc8395ab167bb88a7a647420b467d7e4c46d))
+
+### [0.1.23](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.22...v0.1.23) (2023-09-28)
+
+
+### ✨ Features | 新功能
+
+* ✨ 增加 segmented 分段器组件 ([00f52c8](https://github.com/Moonofweisheng/wot-design-uni/commit/00f52c89e0aebc86f70aa8a7391ce1f17412333d))
+
+### [0.1.22](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.21...v0.1.22) (2023-09-25)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Swiper 轮播图组件 ([cf9fe98](https://github.com/Moonofweisheng/wot-design-uni/commit/cf9fe9807efe863e786bc56eedf506647ac143d2))
+
+### [0.1.21](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.20...v0.1.21) (2023-09-22)
+
+### [0.1.20](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.19...v0.1.20) (2023-09-20)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 恢复展示 Circle 组件的演示Demo ([c2cba05](https://github.com/Moonofweisheng/wot-design-uni/commit/c2cba056578593172998f03592652ab63ed23aef))
+* ✏️ 文档演示项目 Circle 页面文件调整为大写 ([fff8de8](https://github.com/Moonofweisheng/wot-design-uni/commit/fff8de8f8d5f829c5b054d863905a7bb116f45f4))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Circle 组件重复创建canvas导致警告的问题 ([6917201](https://github.com/Moonofweisheng/wot-design-uni/commit/69172016ba840458dd40755050929a8231fd4cd5))
+* 🐛 修复 Skeleton 骨架屏组件编译到APP端异常的问题([#52](https://github.com/Moonofweisheng/wot-design-uni/issues/52)) ([7a9a31b](https://github.com/Moonofweisheng/wot-design-uni/commit/7a9a31bd5db76419408a114fbed02c108b972049))
+* 🐛 修复 Tag 组件编译到微信小程序平台样式错误的问题([#53](https://github.com/Moonofweisheng/wot-design-uni/issues/53)) ([6aec241](https://github.com/Moonofweisheng/wot-design-uni/commit/6aec2414a384c68e7b4b09f57d028173be942f7b))
+
+### [0.1.19](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.18...v0.1.19) (2023-09-20)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Cell、Grid 组件跳转方法在编译到H5端失效的问题([#49](https://github.com/Moonofweisheng/wot-design-uni/issues/49)) ([51425b1](https://github.com/Moonofweisheng/wot-design-uni/commit/51425b107a8b262bf9c1f0c7ee41bb8d56a12837))
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 Circle 环形进度条组件,支持进度渐变动画 ([7c38a6f](https://github.com/Moonofweisheng/wot-design-uni/commit/7c38a6f03e76d91d82a80d2a4cdd875acfb7290b))
+
+### [0.1.18](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.17...v0.1.18) (2023-09-19)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ README中增加展示 star-history ([e7cd794](https://github.com/Moonofweisheng/wot-design-uni/commit/e7cd794201435ae8109b562daf70def74ab4ac98))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 PickerView 组件选中框被遮盖的问题([#46](https://github.com/Moonofweisheng/wot-design-uni/issues/46)) ([a60440b](https://github.com/Moonofweisheng/wot-design-uni/commit/a60440b8c52723e4c194b103e9b1b236a7cb29fe))
+
+### [0.1.17](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.16...v0.1.17) (2023-09-19)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复 Slider 滑块组件最大值和最小值不生效的问题([#43](https://github.com/Moonofweisheng/wot-design-uni/issues/43)) ([0fa7f46](https://github.com/Moonofweisheng/wot-design-uni/commit/0fa7f46718e918007491a3d9494292a003924243))
+
+### [0.1.16](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.15...v0.1.16) (2023-09-18)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增 WaterMark 水印组件 ([70d8c25](https://github.com/Moonofweisheng/wot-design-uni/commit/70d8c2546135fce1709edb0e1ba0c3b66c1e9e2e))
+
+### [0.1.15](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.14...v0.1.15) (2023-09-18)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 优化DateTimePicker组件关于time类型选择器绑定值格式的介绍 ([9e958c7](https://github.com/Moonofweisheng/wot-design-uni/commit/9e958c73f1d09ee0e02097e3ca8eeabfcc1bc59b))
+
+### [0.1.14](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.13...v0.1.14) (2023-09-14)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 增加QQ群沟通渠道 ([80efad9](https://github.com/Moonofweisheng/wot-design-uni/commit/80efad950613d65e7e65d305ad6efe7cd0e201d8))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复SelectPicker 单复选选择器单选可搜索状态搜索报错的问题([#38](https://github.com/Moonofweisheng/wot-design-uni/issues/38)) ([01cf01d](https://github.com/Moonofweisheng/wot-design-uni/commit/01cf01d46fbc4ac35f0c09e3db6f6d18b2d3455e))
+
+### [0.1.13](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.12...v0.1.13) (2023-09-12)
+
+
+### ✨ Features | 新功能
+
+* ✨ Tabs组件增加animated属性支持切换动画 ([2572ea4](https://github.com/Moonofweisheng/wot-design-uni/commit/2572ea4c31f834bb9c8776322c24148ca2bda4e2))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Popover组件content属性必填警告的问题 ([4d8f8e6](https://github.com/Moonofweisheng/wot-design-uni/commit/4d8f8e640742b0588b91b0a5b82a062b976f8306))
+
+### [0.1.12](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.11...v0.1.12) (2023-09-12)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 修复文档中定制主题和反馈组件404的问题 ([c0302ad](https://github.com/Moonofweisheng/wot-design-uni/commit/c0302ada89ea15039ef516f4a425b5e18512c2d5))
+* ✏️ 修复Button组件文档中loading属性重复的问题 ([b26da5a](https://github.com/Moonofweisheng/wot-design-uni/commit/b26da5aba7d698adc75c3e1d143660a698ce5de8))
+
+### [0.1.11](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.10...v0.1.11) (2023-09-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复文档中部分页面存在死链问题 ([b3e5cbe](https://github.com/Moonofweisheng/wot-design-uni/commit/b3e5cbef1116d9a356f7c9c18dffc1caec20ea22))
+
+### [0.1.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.9...v0.1.10) (2023-09-08)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 将驼峰命名的文档文件改为短横线命名便于爬虫爬取及搜索 ([497e991](https://github.com/Moonofweisheng/wot-design-uni/commit/497e991903559c9d62dcb1b00842ee377d70b445))
+* ✏️ 优化icon组件文档的体验,支持点击图标复制使用示例 ([ce0526b](https://github.com/Moonofweisheng/wot-design-uni/commit/ce0526b99dcd203d3f1081a8fd6a0551da88b9b8))
+
+### [0.1.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.8...v0.1.9) (2023-09-08)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复npm包未配置主入口导致在使用Hbx创建的项目中通过npm安装编译警告的问题 ([fa95a0d](https://github.com/Moonofweisheng/wot-design-uni/commit/fa95a0d19b6e13157154405ddaa2525545bd9f7e))
+
+### [0.1.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.7...v0.1.8) (2023-09-07)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复ActionSheet等组件在H5端隐藏导航栏或在tabbar页面高度计算错误的问题 ([39201cb](https://github.com/Moonofweisheng/wot-design-uni/commit/39201cbeddde1c7ea883ad331c0607bced755475))
+* 🐛 修复pmpm安装时ts导入类型信息在H5平台报错的问题 ([237c03c](https://github.com/Moonofweisheng/wot-design-uni/commit/237c03c6ae8d041c565ca6bb984765be4418f9e1))
+
+### [0.1.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.6...v0.1.7) (2023-09-06)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复tabs组件change事件执行两次的问题 ([819059a](https://github.com/Moonofweisheng/wot-design-uni/commit/819059abe19fcf8f9646703fcc7a472b6ae62d4e))
+
+### [0.1.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.5...v0.1.6) (2023-09-06)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Input组件内置变量showClear和showWordCount定义为props的问题 ([8021a35](https://github.com/Moonofweisheng/wot-design-uni/commit/8021a35ac9d05d549909531ff4f1c7325127833e))
+* 🐛 修复pnpm安装时运行到h5平台Ref导入报错的问题 ([39c68bf](https://github.com/Moonofweisheng/wot-design-uni/commit/39c68bf57720c1a12b99412c96e46b341cf536b5))
+
+### [0.1.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.4...v0.1.5) (2023-09-05)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 增加Stickty和Tabs组件关于H5端自定义导航栏的offset-top的处理方案 ([8a03c4d](https://github.com/Moonofweisheng/wot-design-uni/commit/8a03c4da64296e88a7b3aff5efed4ac04cd039b6))
+
+### [0.1.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.3...v0.1.4) (2023-09-05)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复CollapseItem组件在微信小程序中展开/收起时指向图标未跟随转动的问题 ([7d0eeae](https://github.com/Moonofweisheng/wot-design-uni/commit/7d0eeae92f2f7b7664a23f7d548187ed8075d5b0))
+
+### [0.1.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.2...v0.1.3) (2023-09-03)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复通过npm安装时配置自动导入Notify、Toast、Message组件无法打开的问题 ([f45b739](https://github.com/Moonofweisheng/wot-design-uni/commit/f45b73907227c25d9c2fd7b7f0018cc2ab5c47d1))
+
+### [0.1.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.1...v0.1.2) (2023-09-03)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复部分js引入路径问题 ([67cdfae](https://github.com/Moonofweisheng/wot-design-uni/commit/67cdfaebf9478e286758b2ef851e1a44dc8565a6))
+
+### [0.1.1](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.1.0...v0.1.1) (2023-09-02)
+
+## [0.1.0](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.14...v0.1.0) (2023-09-02)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ ConfigProvider组件演示页面增加手动切换暗黑模式 ([e5f55c7](https://github.com/Moonofweisheng/wot-design-uni/commit/e5f55c72fc1ed6e603f22e501d6cff9d8212a976))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Grid组件不展示border的问题 ([819bbbc](https://github.com/Moonofweisheng/wot-design-uni/commit/819bbbca6ab1c999096936da5e9d2dd664e480ce))
+* 🐛 修复MessageBox组件取消按钮不展示的问题 ([d8563d8](https://github.com/Moonofweisheng/wot-design-uni/commit/d8563d833d75b27d0c497c6c945fae8c00ef8dc7))
+
+### [0.0.14](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.13...v0.0.14) (2023-09-02)
+
+
+### ✨ Features | 新功能
+
+* ✨ 优化缺省状态组件StautsTip,增加支持自定义url和图片大小 ([f463d32](https://github.com/Moonofweisheng/wot-design-uni/commit/f463d3258a954e64352df36004d34b0f12be9a8f))
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复util中addUnit无法处理有单位的字符串的问题 ([8967540](https://github.com/Moonofweisheng/wot-design-uni/commit/8967540ad0f3f0ad7426ee79571cfc4dee6c4d0c))
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 完善和修复文档中不详细不正确的内容 ([d1b118e](https://github.com/Moonofweisheng/wot-design-uni/commit/d1b118ea78a797499f465269d3a838c0770d993a))
+
+### [0.0.13](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.12...v0.0.13) (2023-09-01)
+
+
+### ✏️ Documentation | 文档
+
+* ✏️ 官网地址迁移至阿里云oss ([a98868a](https://github.com/Moonofweisheng/wot-design-uni/commit/a98868ae6213c7d7002e5a88893aabe1d0f5d11b))
+
+### [0.0.12](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.11...v0.0.12) (2023-08-30)
+
+### [0.0.11](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.10...v0.0.11) (2023-08-30)
+
+
+### ✨ Features | 新功能
+
+* ✨ util工具类提供更好的类型提示 ([4fed439](https://github.com/Moonofweisheng/wot-design-uni/commit/4fed43926f49be6a86ebab54bb36a1a086df4ac6))
+
+### [0.0.10](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.9...v0.0.10) (2023-08-27)
+
+
+### ✨ Features | 新功能
+
+* ✨ 新增Notify组件、演示demo、文档 ([#9](https://github.com/Moonofweisheng/wot-design-uni/issues/9)) ([996fc39](https://github.com/Moonofweisheng/wot-design-uni/commit/996fc39d708699214faf2e54224b8d38a8a706f7))
+* ✨ 新增Skeleton组件、演示demo、文档 ([#12](https://github.com/Moonofweisheng/wot-design-uni/issues/12)) ([a49e22c](https://github.com/Moonofweisheng/wot-design-uni/commit/a49e22c370163ec3c93bbeb360cc89b3b3c0abc0))
+
+### [0.0.9](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.8...v0.0.9) (2023-08-25)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复Cell 单格组件 is-link 不触发 click ([ece5568](https://github.com/Moonofweisheng/wot-design-uni/commit/ece5568ecc03fd8470c2c02120b94c1ee27d55e7))
+
+### [0.0.8](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.7...v0.0.8) (2023-08-24)
+
+
+### ✨ Features | 新功能
+
+* ✨ 演示项目新增用户隐私保护指引的处理 ([4dd7efe](https://github.com/Moonofweisheng/wot-design-uni/commit/4dd7efe4049c4c815ea1bc57a7fd1819055f10bc))
+* ✨ ActionSheet组件调整为使用v-model设置显示与隐藏 ([aa92332](https://github.com/Moonofweisheng/wot-design-uni/commit/aa92332f3913be000d1aef36a8aed7f34b736ad6))
+
+### [0.0.7](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.6...v0.0.7) (2023-08-23)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复部分组件某些属性必填警告的问题 ([1b866c0](https://github.com/Moonofweisheng/wot-design-uni/commit/1b866c062eb7a4ab894d5b2ecd7b7b3fd50ef864))
+
+### [0.0.6](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.5...v0.0.6) (2023-08-22)
+
+### [0.0.5](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.4...v0.0.5) (2023-08-22)
+
+### [0.0.4](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.3...v0.0.4) (2023-08-21)
+
+
+### ✨ Features | 新功能
+
+* ✨ Picker组件优化性能 ([24dd43f](https://github.com/Moonofweisheng/wot-design-uni/commit/24dd43f3a05b7b4ce6bb897219a215f8198e64ac))
+
+### [0.0.3](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.2...v0.0.3) (2023-08-18)
+
+### [0.0.2](https://github.com/Moonofweisheng/wot-design-uni/compare/v0.0.1...v0.0.2) (2023-08-18)
+
+
+### 🐛 Bug Fixes | Bug 修复
+
+* 🐛 修复CheckBoxGroup组件的disabled属性作用在子组件上失效的问题 ([1bab820](https://github.com/Moonofweisheng/wot-design-uni/commit/1bab820c0335c89e099c597caa47af16bb998d83))
+
+### 0.0.1 (2023-08-16)
+
+
+### ✨ Features | 新功能
+
+* ✨ 适配暗黑模式 ([f5946a4](https://github.com/Moonofweisheng/wot-design-uni/commit/f5946a4b7134fed161bc123d66485e7bc91cdc68))
+* ✨ 新增 50+ 组件
diff --git a/node_modules/wot-design-uni/components/common/AbortablePromise.ts b/node_modules/wot-design-uni/components/common/AbortablePromise.ts
new file mode 100644
index 0000000..efe5167
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/AbortablePromise.ts
@@ -0,0 +1,28 @@
+export class AbortablePromise {
+ promise: Promise
+ private _reject: ((res?: any) => void) | null = null
+
+ constructor(executor: (resolve: (value: T | PromiseLike) => void, reject: (reason?: any) => void) => void) {
+ this.promise = new Promise((resolve, reject) => {
+ executor(resolve, reject)
+ this._reject = reject // 保存reject方法的引用,以便在abort时调用
+ })
+ }
+ // 提供abort方法来中止Promise
+ abort(error?: any) {
+ if (this._reject) {
+ this._reject(error) // 调用reject方法来中止Promise
+ }
+ }
+
+ then(
+ onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null,
+ onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null
+ ): Promise {
+ return this.promise.then(onfulfilled, onrejected)
+ }
+
+ catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): Promise {
+ return this.promise.catch(onrejected)
+ }
+}
diff --git a/node_modules/wot-design-uni/components/common/abstracts/_config.scss b/node_modules/wot-design-uni/components/common/abstracts/_config.scss
new file mode 100644
index 0000000..fe65cb4
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/abstracts/_config.scss
@@ -0,0 +1,7 @@
+/**
+ * SCSS 配置项:命名空间以及BEM
+ */
+$namespace: 'wd';
+$elementSeparator: '__';
+$modifierSeparator: '--';
+$state-prefix: 'is-';
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/common/abstracts/_function.scss b/node_modules/wot-design-uni/components/common/abstracts/_function.scss
new file mode 100644
index 0000000..24c0ca0
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/abstracts/_function.scss
@@ -0,0 +1,89 @@
+/**
+ * 辅助函数
+ */
+@import 'config';
+$default-theme: #4d80f0 !default; // 正常色
+
+/* 转换成字符串 */
+@function selectorToString($selector) {
+ $selector: inspect($selector);
+ $selector: str-slice($selector, 2, -2);
+
+ @return $selector;
+}
+
+/* 判断是否存在 Modifier */
+@function containsModifier($selector) {
+ $selector: selectorToString($selector);
+
+ @if str-index($selector, $modifierSeparator) {
+ @return true;
+ }
+
+ @else {
+ @return false;
+ }
+}
+
+/* 判断是否存在伪类 */
+@function containsPseudo($selector) {
+ $selector: selectorToString($selector);
+
+ @if str-index($selector, ':') {
+ @return true;
+ }
+
+ @else {
+ @return false;
+ }
+}
+
+
+/**
+ * 主题色切换
+ * @params $theme-color 主题色
+ * @params $type 变暗’dark‘ 变亮 'light'
+ * @params $mix-color 自己设置的混色
+ */
+@function themeColor($theme-color, $type: "", $mix-color: "") {
+ @if $default-theme !=#4d80f0 {
+ @if $type=="dark" {
+ @return darken($theme-color, 10%);
+ }
+
+ @else if $type=="light" {
+ @return lighten($theme-color, 10%);
+ }
+
+ @else {
+ @return $theme-color;
+ }
+ }
+
+ @else {
+ @return $mix-color;
+ }
+}
+
+/**
+ * 颜色结果切换, 如果开启线性渐变色 使用渐变色,如果没有开启,那么使用主题色
+ * @params $open-linear 是否开启线性渐变色
+ * @params $deg 渐变色角度
+ * @params $theme-color 当前配色
+ * @params [Array] $set 主题色明暗设置,与 $color-list 数量对应
+ * @params [Array] $color-list 渐变色顺序, $color-list 和 $per-list 数量相同
+ * @params [Array] $per-list 渐变色比例
+ */
+@function resultColor($deg, $theme-color, $set, $color-list, $per-list) {
+ // 开启渐变
+
+ $len: length($color-list);
+ $arg: $deg;
+
+ @for $i from 1 through $len {
+ $arg: $arg + ","+ themeColor($theme-color, nth($set, $i), nth($color-list, $i)) + " "+ nth($per-list, $i);
+ }
+
+ @return linear-gradient(unquote($arg));
+
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/common/abstracts/_mixin.scss b/node_modules/wot-design-uni/components/common/abstracts/_mixin.scss
new file mode 100644
index 0000000..3d1cd94
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/abstracts/_mixin.scss
@@ -0,0 +1,385 @@
+/**
+ * 混合宏
+ */
+@import "config";
+@import "function";
+
+/**
+ * BEM,定义块(b)
+ */
+@mixin b($block) {
+ $B: $namespace + "-"+ $block !global;
+
+ .#{$B} {
+ @content;
+ }
+}
+
+/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
+@mixin e($element...) {
+ $selector: &;
+ $selectors: "";
+
+ @if containsPseudo($selector) {
+ @each $item in $element {
+ $selectors: #{$selectors + "." + $B + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selector} {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+ }
+
+ @else {
+ @each $item in $element {
+ $selectors: #{$selectors + $selector + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+}
+
+
+
+/* 此方法用于生成穿透样式 */
+
+/* 定义元素(e),对于伪类,会自动将 e 嵌套在 伪类 底下 */
+@mixin edeep($element...) {
+ $selector: &;
+ $selectors: "";
+
+ @if containsPseudo($selector) {
+ @each $item in $element {
+ $selectors: #{$selectors + "." + $B + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selector} {
+ :deep() {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+ }
+ }
+
+ @else {
+ @each $item in $element {
+ $selectors: #{$selectors + $selector + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ :deep() {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+ }
+}
+
+
+/* 定义状态(m) */
+@mixin m($modifier...) {
+ $selectors: "";
+
+ @each $item in $modifier {
+ $selectors: #{$selectors + & + $modifierSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selectors} {
+ @content;
+ }
+ }
+}
+
+/* 定义状态(m) */
+@mixin mdeep($modifier...) {
+ $selectors: "";
+
+ @each $item in $modifier {
+ $selectors: #{$selectors + & + $modifierSeparator + $item + ","};
+ }
+
+ @at-root {
+ :deep() {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+}
+
+/* 对于需要需要嵌套在 m 底下的 e,调用这个混合宏,一般在切换整个组件的状态,如切换颜色的时候 */
+@mixin me($element...) {
+ $selector: &;
+ $selectors: "";
+
+ @if containsModifier($selector) {
+ @each $item in $element {
+ $selectors: #{$selectors + "." + $B + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selector} {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+ }
+
+ @else {
+ @each $item in $element {
+ $selectors: #{$selectors + $selector + $elementSeparator + $item + ","};
+ }
+
+ @at-root {
+ #{$selectors} {
+ @content;
+ }
+ }
+ }
+}
+
+/* 状态,生成 is-$state 类名 */
+@mixin when($states...) {
+ @at-root {
+ @each $state in $states {
+ &.#{$state-prefix + $state} {
+ @content;
+ }
+ }
+ }
+}
+
+/**
+ * 常用混合宏
+ */
+
+/* 单行超出隐藏 */
+@mixin lineEllipsis {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+/* 多行超出隐藏 */
+@mixin multiEllipsis($lineNumber: 3) {
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: $lineNumber;
+ overflow: hidden;
+}
+
+/* 清除浮动 */
+@mixin clearFloat {
+ &::after {
+ display: block;
+ content: "";
+ height: 0;
+ clear: both;
+ overflow: hidden;
+ visibility: hidden;
+ }
+}
+
+/* 0.5px 边框 指定方向*/
+@mixin halfPixelBorder($direction: "bottom", $left: 0, $color: $-color-border-light) {
+ position: relative;
+
+ &::after {
+ position: absolute;
+ display: block;
+ content: "";
+
+ @if ($left==0) {
+ width: 100%;
+ }
+
+ @else {
+ width: calc(100% - #{$left});
+ }
+
+ height: 1px;
+ left: $left;
+
+ @if ($direction=="bottom") {
+ bottom: 0;
+ }
+
+ @else {
+ top: 0;
+ }
+
+ transform: scaleY(0.5);
+ background: $color;
+ }
+}
+
+
+/* 0.5px 边框 环绕 */
+@mixin halfPixelBorderSurround($color: $-color-border-light) {
+ position: relative;
+
+ &::after {
+ position: absolute;
+ display: block;
+ content: ' ';
+ pointer-events: none;
+ width: 200%;
+ height: 200%;
+ left: 0;
+ top: 0;
+ border: 1px solid $color;
+ transform: scale(0.5);
+ box-sizing: border-box;
+ transform-origin: left top;
+ }
+}
+
+@mixin buttonClear {
+ outline: none;
+ -webkit-appearance: none;
+ -webkit-tap-highlight-color: transparent;
+ background: transparent;
+}
+
+/**
+ * 三角形实现尖角样式,适用于背景透明情况
+ * @param $size 三角形高,底边为 $size * 2
+ * @param $bg 三角形背景颜色
+ */
+@mixin triangleArrow($size, $bg) {
+ @include e(arrow) {
+ position: absolute;
+ width: 0;
+ height: 0;
+ }
+
+ @include e(arrow-down) {
+ border-left: $size solid transparent;
+ border-right: $size solid transparent;
+ border-top: $size solid $bg;
+ transform: translateX(-50%);
+ bottom: calc(-1 * $size)
+ }
+
+ @include e(arrow-up) {
+ border-left: $size solid transparent;
+ border-right: $size solid transparent;
+ border-bottom: $size solid $bg;
+ transform: translateX(-50%);
+ top: calc(-1 * $size)
+ }
+
+ @include e(arrow-left) {
+ border-top: $size solid transparent;
+ border-bottom: $size solid transparent;
+ border-right: $size solid $bg;
+ transform: translateY(-50%);
+ left: calc(-1 * $size)
+ }
+
+ @include e(arrow-right) {
+ border-top: $size solid transparent;
+ border-bottom: $size solid transparent;
+ border-left: $size solid $bg;
+ transform: translateY(-50%);
+ right: calc(-1 * $size)
+ }
+}
+
+/**
+ * 正方形实现尖角样式,适用于背景不透明情况
+ * @param $size 正方形边长
+ * @param $bg 正方形背景颜色
+ * @param $z-index z-index属性值,不得大于外部包裹器
+ * @param $box-shadow 阴影
+*/
+@mixin squareArrow($size, $bg, $z-index, $box-shadow) {
+ @include e(arrow) {
+ position: absolute;
+ width: $size;
+ height: $size;
+ z-index: $z-index;
+ }
+
+ @include e(arrow-down) {
+ transform: translateX(-50%);
+ bottom: 0;
+
+ &:after {
+ content: "";
+ width: $size;
+ height: $size;
+ background-color: $bg;
+ position: absolute;
+ left: 0;
+ bottom: calc(-1 * $size / 2);
+ transform: rotateZ(45deg);
+ box-shadow: $box-shadow;
+ }
+ }
+
+ @include e(arrow-up) {
+ transform: translateX(-50%);
+ top: 0;
+
+ &:after {
+ content: "";
+ width: $size;
+ height: $size;
+ background-color: $bg;
+ position: absolute;
+ left: 0;
+ top: calc(-1 * $size / 2);
+ transform: rotateZ(45deg);
+ box-shadow: $box-shadow;
+ }
+ }
+
+ @include e(arrow-left) {
+ transform: translateY(-50%);
+ left: 0;
+
+ &:after {
+ content: "";
+ width: $size;
+ height: $size;
+ background-color: $bg;
+ position: absolute;
+ left: calc(-1 * $size / 2);
+ top: 0;
+ transform: rotateZ(45deg);
+ box-shadow: $box-shadow;
+ }
+ }
+
+ @include e(arrow-right) {
+ transform: translateY(-50%);
+ right: 0;
+
+ &:after {
+ content: "";
+ width: $size;
+ height: $size;
+ background-color: $bg;
+ position: absolute;
+ right: calc(-1 * $size / 2);
+ top: 0;
+ transform: rotateZ(45deg);
+ box-shadow: $box-shadow;
+ }
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/common/abstracts/variable.scss b/node_modules/wot-design-uni/components/common/abstracts/variable.scss
new file mode 100644
index 0000000..bc83b74
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/abstracts/variable.scss
@@ -0,0 +1,1030 @@
+@import './function';
+
+/**
+ * UI规范基础变量
+ */
+/*----------------------------------------- Theme color. start ----------------------------------------*/
+/* 主题颜色 */
+$-color-theme: var(--wot-color-theme, $default-theme) !default; // 主题色
+$-color-white: var(--wot-color-white, rgb(255, 255, 255)) !default; // 用于mix的白色
+$-color-black: var(--wot-color-black, rgb(0, 0, 0)) !default; // 用于mix的黑色
+
+/* 辅助色 */
+$-color-success: var(--wot-color-success, #34d19d) !default; // 成功色
+$-color-warning: var(--wot-color-warning, #f0883a) !default; // 警告色
+$-color-danger: var(--wot-color-danger, #fa4350) !default; // 危险出错色
+$-color-purple: var(--wot-color-purple, #8268de) !default; // 紫色
+$-color-yellow: var(--wot-color-yellow, #f0cd1d) !default; // 黄色
+$-color-blue: var(--wot-color-blue, #2bb3ed) !default; // 蓝色
+$-color-info: var(--wot-color-info, #909399) !default;
+
+$-color-gray-1: var(--wot-color-gray-1, #f7f8fa) !default;
+$-color-gray-2: var(--wot-color-gray-2, #f2f3f5) !default;
+$-color-gray-3: var(--wot-color-gray-3, #ebedf0) !default;
+$-color-gray-4: var(--wot-color-gray-4, #dcdee0) !default;
+$-color-gray-5: var(--wot-color-gray-5, #c8c9cc) !default;
+$-color-gray-6: var(--wot-color-gray-6, #969799) !default;
+$-color-gray-7: var(--wot-color-gray-7, #646566) !default;
+$-color-gray-8: var(--wot-color-gray-8, #323233) !default;
+
+$-font-gray-1: var(--wot-font-gray-1, rgba(0, 0, 0, 0.9));
+$-font-gray-2: var(--wot-font-gray-2, rgba(0, 0, 0, 0.6));
+$-font-gray-3: var(--wot-font-gray-3, rgba(0, 0, 0, 0.4));
+$-font-gray-4: var(--wot-font-gray-4, rgba(0, 0, 0, 0.26));
+
+$-font-white-1: var(--wot-font-white-1, rgba(255, 255, 255, 1));
+$-font-white-2: var(--wot-font-white-2, rgba(255, 255, 255, 0.55));
+$-font-white-3: var(--wot-font-white-3, rgba(255, 255, 255, 0.35));
+$-font-white-4: var(--wot-font-white-4, rgba(255, 255, 255, 0.22));
+
+/* 文字颜色(默认浅色背景下 */
+$-color-title: var(--wot-color-title, $-color-black) !default; // 模块标题/重要正文 000
+$-color-content: var(--wot-color-content, #262626) !default; // 普通正文 262626
+$-color-secondary: var(--wot-color-secondary, #595959) !default; // 次要信息,注释/补充/正文 595959
+$-color-aid: var(--wot-color-aid, #8c8c8c) !default; // 辅助文字字号,弱化信息,引导性/不可点文字 8c8c8c
+$-color-tip: var(--wot-color-tip, #bfbfbf) !default; // 失效、默认提示文字 bfbfbf
+$-color-border: var(--wot-color-border, #d9d9d9) !default; // 控件边框线 d9d9d9
+$-color-border-light: var(--wot-color-border-light, #e8e8e8) !default; // 分割线颜色 e8e8e8
+$-color-bg: var(--wot-color-bg, #f5f5f5) !default; // 背景色、禁用填充色 f5f5f5
+
+/* 暗黑模式 */
+$-dark-background: var(--wot-dark-background, #131313) !default;
+$-dark-background2: var(--wot-dark-background2, #1b1b1b) !default;
+$-dark-background3: var(--wot-dark-background3, #141414) !default;
+$-dark-background4: var(--wot-dark-background4, #323233) !default;
+$-dark-background5: var(--wot-dark-background5, #646566) !default;
+$-dark-background6: var(--wot-dark-background6, #380e08) !default;
+$-dark-background7: var(--wot-dark-background7, #707070) !default;
+$-dark-color: var(--wot-dark-color, $-color-white) !default;
+$-dark-color2: var(--wot-dark-color2, #f2270c) !default;
+$-dark-color3: var(--wot-dark-color3, rgba(232, 230, 227, 0.8)) !default;
+$-dark-color-gray: var(--wot-dark-color-gray, $-color-secondary) !default;
+$-dark-border-color: var(--wot-dark-border-color, #3a3a3c) !default;
+
+/* 图形颜色 */
+$-color-icon: var(--wot-color-icon, #d9d9d9) !default; // icon颜色
+$-color-icon-active: var(--wot-color-icon-active, #eee) !default; // icon颜色hover
+$-color-icon-disabled: var(--wot-color-icon-disabled, #a7a7a7) !default; // icon颜色disabled
+
+/*----------------------------------------- Theme color. end -------------------------------------------*/
+
+/*-------------------------------- Theme color application size. start --------------------------------*/
+
+/* 文字字号 */
+$-fs-big: var(--wot-fs-big, 24px) !default; // 大型标题
+$-fs-important: var(--wot-fs-important, 19px) !default; // 重要数据
+$-fs-title: var(--wot-fs-title, 16px) !default; // 标题字号/重要正文字号
+$-fs-content: var(--wot-fs-content, 14px) !default; // 普通正文
+$-fs-secondary: var(--wot-fs-secondary, 12px) !default; // 次要信息,注释/补充/正文
+$-fs-aid: var(--wot-fs-aid, 10px) !default; // 辅助文字字号,弱化信息,引导性/不可点文字
+
+/* 文字字重 */
+$-fw-medium: var(--wot-fw-medium, 500) !default; // PingFangSC-Medium
+$-fw-semibold: var(--wot-fw-semibold, 600) !default; // PingFangSC-Semibold
+
+/* 尺寸 */
+$-size-side-padding: var(--wot-size-side-padding, 15px) !default; // 屏幕两边留白
+$-size-side-padding-small: var(--wot-size-side-padding-small, 6px) !default; // 屏幕两边留白小值
+
+/*-------------------------------- Theme color application size. end --------------------------------*/
+
+/* component var */
+
+/* action-sheet */
+$-action-sheet-weight: var(--wot-action-sheet-weight, 500) !default; // 面板字重
+$-action-sheet-radius: var(--wot-action-sheet-radius, 16px) !default; // 面板圆角大小
+$-action-sheet-loading-size: var(--wot-action-sheet-loading-size, 20px) !default; // loading动画尺寸
+$-action-sheet-action-height: var(--wot-action-sheet-action-height, 48px) !default; // 单条菜单高度
+$-action-sheet-color: var(--wot-action-sheet-color, rgba(0, 0, 0, 0.85)) !default; // 选项名称颜色
+$-action-sheet-fs: var(--wot-action-sheet-fs, $-fs-title) !default; // 选项名称字号
+$-action-sheet-active-color: var(--wot-action-sheet-active-color, $-color-bg) !default; // 点击高亮颜色
+$-action-sheet-subname-fs: var(--wot-action-sheet-subname-fs, $-fs-secondary) !default; // 描述信息字号
+$-action-sheet-subname-color: var(--wot-action-sheet-subname-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息颜色
+$-action-sheet-disabled-color: var(--wot-action-sheet-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
+$-action-sheet-bg: var(--wot-action-sheet-bg, $-color-white) !default; // 菜单容器颜色(取消按钮上方的颜色)
+$-action-sheet-title-height: var(--wot-action-sheet-title-height, 64px) !default; // 标题高度
+$-action-sheet-title-fs: var(--wot-action-sheet-title-fs, $-fs-title) !default; // 标题字号
+$-action-sheet-close-fs: var(--wot-action-sheet-close-fs, $-fs-title) !default; // 关闭按钮大小
+$-action-sheet-close-color: var(--wot-action-sheet-close-color, rgba(0, 0, 0, 0.65)) !default; // 关闭按钮颜色
+$-action-sheet-close-top: var(--wot-action-sheet-close-top, 25px) !default; // 关闭按钮距离标题顶部距离
+$-action-sheet-close-right: var(--wot-action-sheet-close-right, 15px) !default; // 关闭按钮距离标题右侧距离
+$-action-sheet-cancel-color: var(--wot-action-sheet-cancel-color, #131415) !default; // 取消按钮颜色
+$-action-sheet-cancel-height: var(--wot-action-sheet-cancel-height, 44px) !default; // 取消按钮高度
+$-action-sheet-cancel-bg: var(--wot-action-sheet-cancel-bg, rgba(240, 240, 240, 1)) !default; // 取消按钮背景色
+$-action-sheet-cancel-radius: var(--wot-action-sheet-cancel-radius, 22px) !default; // 取消按钮圆角大小
+$-action-sheet-panel-padding: var(--wot-action-sheet-panel-padding, 12px 0 11px) !default; // 自定义面板内边距大小
+$-action-sheet-panel-img-fs: var(--wot-action-sheet-panel-img-fs, 40px) !default; // 自定义面板图片大小
+$-action-sheet-panel-img-radius: var(--wot-action-sheet-panel-img-radius, 4px) !default; // 自定义面板图片圆角大小
+
+/* badge */
+$-badge-bg: var(--wot-badge-bg, $-color-danger) !default; // 背景填充颜色
+$-badge-color: var(--wot-badge-color, #fff) !default; // 文字颜色
+$-badge-fs: var(--wot-badge-fs, 12px) !default; // 文字字号
+$-badge-padding: var(--wot-badge-padding, 0 5px) !default; // padding
+$-badge-height: var(--wot-badge-height, 16px) !default; // 高度
+$-badge-primary: var(--wot-badge-primary, $-color-theme) !default;
+$-badge-success: var(--wot-badge-success, $-color-success) !default;
+$-badge-warning: var(--wot-badge-warning, $-color-warning) !default;
+$-badge-danger: var(--wot-badge-danger, $-color-danger) !default;
+$-badge-info: var(--wot-badge-info, $-color-info) !default;
+$-badge-dot-size: var(--wot-badge-dot-size, 6px) !default; // dot 类型大小
+$-badge-border: var(--wot-badge-border, 2px solid $-badge-color) !default; // 边框样式
+
+/* button */
+$-button-disabled-opacity: var(--wot-button-disabled-opacity, 0.6) !default; // button禁用透明度
+$-button-small-height: var(--wot-button-small-height, 28px) !default; // 小型按钮高度
+$-button-small-padding: var(--wot-button-small-padding, 0 12px) !default; // 小型按钮padding
+$-button-small-fs: var(--wot-button-small-fs, $-fs-secondary) !default; // 小型按钮字号
+$-button-small-radius: var(--wot-button-small-radius, 2px) !default; // 小型按钮圆角大小
+$-button-small-loading: var(--wot-button-small-loading, 14px) !default; // 小型按钮loading图标大小
+$-button-medium-height: var(--wot-button-medium-height, 36px) !default; // 中型按钮高度
+$-button-medium-padding: var(--wot-button-medium-padding, 0 16px) !default; // 中型按钮padding
+$-button-medium-fs: var(--wot-button-medium-fs, $-fs-content) !default; // 中型按钮字号
+$-button-medium-radius: var(--wot-button-medium-radius, 4px) !default; // 中型按钮圆角大小
+$-button-medium-loading: var(--wot-button-medium-loading, 18px) !default; // 中型按钮loading图标大小
+$-button-medium-box-shadow-size: var(--wot-button-medium-box-shadow-size, 0px 2px 4px 0px) !default; // 中尺寸阴影尺寸
+$-button-large-height: var(--wot-button-large-height, 44px) !default; // 大型按钮高度
+$-button-large-padding: var(--wot-button-large-padding, 0 36px) !default; // 大型按钮padding
+$-button-large-fs: var(--wot-button-large-fs, $-fs-title) !default; // 大型按钮字号
+$-button-large-radius: var(--wot-button-large-radius, 8px) !default; // 大型按钮圆角大小
+$-button-large-loading: var(--wot-button-large-loading, 24px) !default; // 大小按钮loading图标大小
+$-button-large-box-shadow-size: var(--wot-button-large-box-shadow-size, 0px 4px 8px 0px) !default; // 大尺寸阴影尺寸
+$-button-icon-fs: var(--wot-button-icon-fs, 18px) !default; // 带图标的按钮的图标大小
+$-button-icon-size: var(--wot-button-icon-size, 40px) !default; // icon 类型按钮尺寸
+$-button-icon-color: var(--wot-button-icon-color, rgba(0, 0, 0, 0.65)) !default; // icon 类型按钮颜色
+$-button-icon-disabled-color: var(--wot-button-icon-disabled-color, $-color-icon-disabled) !default; // icon 类型按钮禁用颜色
+$-button-normal-color: var(--wot-button-normal-color, $-color-title) !default; // 文字颜色
+$-button-normal-disabled-color: var(--wot-button-normal-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 默认按钮禁用文字色
+$-button-plain-bg-color: var(--wot-button-plain-bg-color, $-color-white) !default; // 幽灵按钮背景色
+$-button-primary-color: var(--wot-button-primary-color, $-color-white) !default; // 主要按钮颜色
+$-button-primary-bg-color: var(--wot-button-primary-bg-color, $-color-theme) !default; // 主要按钮背景颜色
+$-button-success-color: var(--wot-button-success-color, $-color-white) !default; // 成功按钮文字颜色
+$-button-success-bg-color: var(--wot-button-success-bg-color, $-color-success) !default; // 成功按钮颜色
+$-button-info-color: var(--wot-button-info-color, $-color-title) !default; // 信息按钮颜色
+$-button-info-bg-color: var(--wot-button-info-bg-color, #f0f0f0) !default; // 信息按钮背景颜色
+$-button-info-plain-border-color: var(--wot-button-info-plain-border-color, rgba(0, 0, 0, 0.45)) !default; // 信息按钮禁用颜色
+$-button-info-plain-normal-color: var(--wot-button-info-plain-normal-color, rgba(0, 0, 0, 0.85)) !default; // 信息幽灵按钮默认颜色
+$-button-warning-color: var(--wot-button-warning-color, $-color-white) !default; // 警告按钮字体颜色
+$-button-warning-bg-color: var(--wot-button-warning-bg-color, $-color-warning) !default; // 警告按钮背景颜色
+$-button-error-color: var(--wot-button-error-color, $-color-white) !default; // 错误按钮颜色
+$-button-error-bg-color: var(--wot-button-error-bg-color, $-color-danger) !default; // 错误按钮背景颜色
+$-button-text-hover-opacity: var(--wot-button-text-hover-opacity, 0.7) !default; // 文字button激活时透明度
+
+/* cell */
+$-cell-padding: var(--wot-cell-padding, $-size-side-padding) !default; // cell 左右padding距离
+$-cell-line-height: var(--wot-cell-line-height, 24px) !default; // 行高
+
+$-cell-group-title-fs: var(--wot-cell-group-title-fs, $-fs-title) !default; // 组标题字号
+$-cell-group-padding: var(--wot-cell-group-padding, 13px $-cell-padding) !default; // 组padding
+$-cell-group-title-color: var(--wot-cell-group-title-color, rgba(0, 0, 0, 0.85)) !default; // 组标题文字颜色
+$-cell-group-value-fs: var(--wot-cell-group-value-fs, $-fs-content) !default; // 组值字号
+$-cell-group-value-color: var(--wot-cell-group-value-color, $-color-content) !default; // 组值文字颜色
+$-cell-group-insert-radius: var(--wot-cell-group-insert-radius, 8px) !default; // insert 模式圆角大小
+$-cell-group-insert-margin: var(--wot-cell-group-insert-margin, 0 16px) !default; // insert 模式外边距
+
+$-cell-wrapper-padding: var(--wot-cell-wrapper-padding, 10px) !default; // cell 容器padding
+$-cell-wrapper-padding-large: var(--wot-cell-wrapper-padding-large, 12px) !default; // large类型cell容器padding
+
+$-cell-wrapper-padding-with-label: var(--wot-cell-wrapper-padding-with-label, 16px) !default; // cell 容器上下padding(有label情况下)
+$-cell-icon-right: var(--wot-cell-icon-right, 4px) !default; // 图标距离右边缘
+$-cell-icon-size: var(--wot-cell-icon-size, 16px) !default; // 图标大小
+$-cell-title-fs: var(--wot-cell-title-fs, 14px) !default; // 标题字号
+$-cell-title-color: var(--wot-cell-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题文字颜色
+$-cell-label-fs: var(--wot-cell-label-fs, 12px) !default; // 描述信息字号
+$-cell-label-color: var(--wot-cell-label-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息文字颜色
+$-cell-value-fs: var(--wot-cell-value-fs, 14px) !default; // 右侧内容字号
+$-cell-value-fs-large: var(--wot-cell-value-fs-large, 16px) !default; // 大尺寸右侧内容字号
+$-cell-value-color: var(--wot-cell-value-color, rgba(0, 0, 0, 0.85)) !default; // 右侧内容文字颜色
+$-cell-arrow-size: var(--wot-cell-arrow-size, 18px) !default; // 右箭头大小
+$-cell-arrow-color: var(--wot-cell-arrow-color, rgba(0, 0, 0, 0.25)) !default; // 右箭头颜色
+$-cell-clear-color: var(--wot-cell-clear-color, #585858) !default; // 清空按钮颜色
+$-cell-tap-bg: var(--wot-cell-tap-bg, rgba(0, 0, 0, 0.06)) !default; // 点击态背景色
+
+$-cell-title-fs-large: var(--wot-cell-title-fs-large, 16px) !default; // 大尺寸标题字号
+$-cell-label-fs-large: var(--wot-cell-label-fs-large, 14px) !default; // 描述信息字号
+$-cell-icon-size-large: var(--wot-cell-icon-size-large, 18px) !default; // 图标大小
+
+$-cell-required-color: var(--wot-cell-required-color, $-color-danger) !default; // 要求必填*颜色
+$-cell-required-size: var(--wot-cell-required-size, 18px) !default; // 必填*字号
+$-cell-required-margin: var(--wot-cell-required-margin, 4px) !default; // 必填*间距
+$-cell-vertical-top: var(--wot-cell-vertical-top, 16px) !default; // 表单类型-上下结构的间距
+
+/* calendar */
+$-calendar-fs: var(--wot-calendar-fs, 16px) !default;
+$-calendar-panel-padding: var(--wot-calendar-panel-padding, 0 12px) !default;
+$-calendar-panel-title-fs: var(--wot-calendar-panel-title-fs, 14px) !default;
+$-calendar-panel-title-color: var(--wot-calendar-panel-title-color, rgba(0, 0, 0, 0.85)) !default;
+$-calendar-week-color: var(--wot-calendar-week-color, rgba(0, 0, 0, 0.85)) !default;
+$-calendar-week-height: var(--wot-calendar-week-height, 36px) !default;
+$-calendar-week-fs: var(--wot-calendar-week-fs, 12px) !default;
+$-calendar-day-fs: var(--wot-calendar-day-fs, 16px) !default;
+$-calendar-day-color: var(--wot-calendar-day-color, rgba(0, 0, 0, 0.85)) !default;
+$-calendar-day-fw: var(--wot-calendar-day-fw, 500) !default;
+$-calendar-day-height: var(--wot-calendar-day-height, 64px) !default;
+$-calendar-month-width: var(--wot-calendar-month-width, 50px) !default;
+$-calendar-active-color: var(--wot-calendar-active-color, $-color-theme) !default;
+$-calendar-selected-color: var(--wot-calendar-selected-color, $-color-white) !default;
+$-calendar-disabled-color: var(--wot-calendar-disabled-color, rgba(0, 0, 0, 0.25)) !default;
+$-calendar-range-color: var(--wot-calendar-range-color, rgba(#4d80f0, 0.09)) !default;
+$-calendar-active-border: var(--wot-calendar-active-border, 8px) !default;
+$-calendar-info-fs: var(--wot-calendar-info-fs, 10px) !default;
+$-calendar-item-margin-bottom: var(--wot-calendar-item-margin-bottom, 4px) !default;
+
+
+/* checkbox */
+$-checkbox-margin: var(--wot-checkbox-margin, 10px) !default; // 多个复选框距离
+$-checkbox-bg: var(--wot-checkbox-bg, $-color-white) !default; // 多个复选框距离
+$-checkbox-label-margin: var(--wot-checkbox-label-margin, 9px) !default; // 右侧文字与左侧图标距离
+$-checkbox-size: var(--wot-checkbox-size, 16px) !default; // 左侧图标尺寸
+$-checkbox-icon-size: var(--wot-checkbox-icon-size, 14px) !default; // 左侧图标尺寸
+$-checkbox-border-color: var(--wot-checkbox-border-color, #dcdcdc) !default; // 左侧图标边框颜色
+$-checkbox-check-color: var(--wot-checkbox-check-color, $-color-white) !default; // 左侧图标边框颜色
+$-checkbox-label-fs: var(--wot-checkbox-label-fs, 14px) !default; // 右侧文字字号
+$-checkbox-label-color: var(--wot-checkbox-label-color, rgba(0, 0, 0, 0.85)) !default; // 右侧文字颜色
+$-checkbox-checked-color: var(--wot-checkbox-checked-color, $-color-theme) !default; // 选中颜色
+
+$-checkbox-disabled-color: var(--wot-checkbox-disabled-color, rgba(0, 0, 0, 0.04)) !default; // 禁用背景颜色
+$-checkbox-disabled-label-color: var(--wot-checkbox-disabled-label-color, rgba(0, 0, 0, 0.25)) !default; // 禁用文字颜色
+$-checkbox-disabled-check-color: var(--wot-checkbox-disabled-check-color, rgba(0, 0, 0, 0.15)) !default; // 禁用图标颜色
+$-checkbox-disabled-check-bg: var(--wot-checkbox-disabled-check-bg, rgba(0, 0, 0, 0.15)) !default; // 禁用边框背景颜色
+$-checkbox-square-radius: var(--wot-checkbox-square-radius, 4px) !default; // 方型圆角大小
+
+$-checkbox-large-size: var(--wot-checkbox-large-size, 18px) !default; // 左侧图标尺寸
+$-checkbox-large-label-fs: var(--wot-checkbox-large-label-fs, 16px) !default; // 右侧文字字号
+
+$-checkbox-button-height: var(--wot-checkbox-button-height, 32px) !default; // 按钮模式复选框高
+$-checkbox-button-min-width: var(--wot-checkbox-button-min-width, 78px) !default; // 按钮模式最小宽
+$-checkbox-button-radius: var(--wot-checkbox-button-radius, 16px) !default; // 按钮圆角大小
+$-checkbox-button-bg: var(--wot-checkbox-button-bg, rgba(0, 0, 0, 0.04)) !default; // 按钮模式背景颜色
+$-checkbox-button-font-size: var(--wot-checkbox-button-font-size, 14px) !default; // 按钮模式字号
+$-checkbox-button-border: var(--wot-checkbox-button-border, #f5f5f5) !default; // 按钮边框颜色
+$-checkbox-button-disabled-border: var(--wot-checkbox-button-disabled-border, rgba(0, 0, 0, 0.15)) !default; // 按钮禁用边框颜色
+
+/* collapse */
+$-collapse-side-padding: var(--wot-collapse-side-padding, $-size-side-padding) !default; // 左右间距
+$-collapse-body-padding: var(--wot-collapse-body-padding, 14px $-size-side-padding) !default; // body padding
+$-collapse-header-padding: var(--wot-collapse-header-padding, 13px $-size-side-padding) !default; // 头部padding
+$-collapse-title-color: var(--wot-collapse-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
+$-collapse-title-fs: var(--wot-collapse-title-fs, 16px) !default; // 标题字号
+$-collapse-arrow-size: var(--wot-collapse-arrow-size, 18px) !default; // 箭头大小
+$-collapse-arrow-color: var(--wot-collapse-arrow-color, #d8d8d8) !default; // 箭头颜色
+$-collapse-body-fs: var(--wot-collapse-body-fs, 14px) !default; // 内容字号
+$-collapse-body-color: var(--wot-collapse-body-color, rgba(0, 0, 0, 0.65)) !default; // 内容颜色
+$-collapse-disabled-color: var(--wot-collapse-disabled-color, rgba(0, 0, 0, 0.15)) !default; // 禁用颜色
+$-collapse-retract-fs: var(--wot-collapse-retract-fs, 14px) !default; // 更多 字号
+$-collapse-more-color: var(--wot-collapse-more-color, $-color-theme) !default; // 更多 颜色
+
+/* divider */
+$-divider-padding: var(--wot-divider-padding, 0 $-size-side-padding) !default; // 两边间距
+$-divider-margin: var(--wot-divider-margin, 16px 0) !default; // 上下间距
+$-divider-color: var(--wot-divider-color, rgba(0, 0, 0, 0.45)) !default; // 字体颜色
+$-divider-line-color: var(--wot-divider-line-color, currentColor) !default; // 线条颜色
+$-divider-line-height: var(--wot-divider-line-height, 1px) !default; // 线条高度
+$-divider-fs: var(--wot-divider-fs, 14px) !default; // 字体大小
+$-divider-content-left-width: var(--wot-divider-content-left-width, 10%) !default; // 左侧内容宽度
+$-divider-content-left-margin: var(--wot-divider-content-left-margin, 12px) !default; // 左侧内容距离线距离
+$-divider-content-right-margin: var(--wot-divider-content-right-margin, 12px) !default; // 右侧内容距离线距离
+$-divider-content-right-width: var(--wot-divider-content-right-width, 10%) !default; // 右侧内容宽度
+$-divider-vertical-height: var(--wot-divider-vertical-height, 16px) !default; // 垂直分割线高度
+$-divider-vertical-content-margin: var(--wot-divider-vertical-content-margin, 0 8px) !default; // 垂直分割线内容间距
+$-divider-vertical-line-width: var(--wot-divider-vertical-line-width, 1px) !default; // 线条高度
+
+
+
+
+/* drop-menu */
+$-drop-menu-height: var(--wot-drop-menu-height, 48px) !default; // 展示选中项的高度
+$-drop-menu-color: var(--wot-drop-menu-color, $-color-content) !default; // 展示选中项的颜色
+$-drop-menu-fs: var(--wot-drop-menu-fs, $-fs-content) !default; // 展示选中项的字号
+$-drop-menu-arrow-fs: var(--wot-drop-menu-arrow-fs, $-fs-secondary) !default; // 箭头图标大小
+
+$-drop-menu-side-padding: var(--wot-drop-menu-side-padding, $-size-side-padding) !default; // 两边留白间距
+$-drop-menu-disabled-color: var(--wot-drop-menu-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
+$-drop-menu-item-height: var(--wot-drop-menu-item-height, 48px) !default; // 选项高度
+$-drop-menu-item-color: var(--wot-drop-menu-item-color, $-color-content) !default; // 选项颜色
+$-drop-menu-item-fs: var(--wot-drop-menu-item-fs, $-fs-content) !default; // 选项字号
+$-drop-menu-item-color-active: var(--wot-drop-menu-item-color-active, $-color-theme) !default; // 选中颜色
+$-drop-menu-item-color-tip: var(--wot-drop-menu-item-color-tip, rgba(0, 0, 0, 0.45)) !default; // 提示文字颜色
+$-drop-menu-item-fs-tip: var(--wot-drop-menu-item-fs-tip, $-fs-secondary) !default; // 提示文字字号
+$-drop-menu-option-check-size: var(--wot-drop-menu-option-check-size, 20px) !default; // check 图标大小
+$-drop-menu-line-color: var(--wot-drop-menu-line-color, $-color-theme) !default; // 下划线颜色
+$-drop-menu-line-height: var(--wot-drop-menu-line-height, 3px) !default; // 下划线高度
+
+/* input-number */
+$-input-number-color: var(--wot-input-number-color, #262626) !default; // 文字颜色
+$-input-number-border-color: var(--wot-input-number-border-color, #e8e8e8) !default; // 边框颜色
+$-input-number-disabled-color: var(--wot-input-number-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用颜色
+$-input-number-height: var(--wot-input-number-height, 24px) !default; // 加减号按钮高度
+$-input-number-btn-width: var(--wot-input-number-btn-width, 26px) !default; // 加减号按钮宽度
+$-input-number-input-width: var(--wot-input-number-input-width, 36px) !default; // 输入框宽度
+$-input-number-radius: var(--wot-input-number-radius, 4px) !default; // 加减号按钮圆角大小
+$-input-number-fs: var(--wot-input-number-fs, 12px) !default; // 输入框字号
+$-input-number-icon-size: var(--wot-input-number-icon-size, 14px) !default; // 加减号图标大小
+$-input-number-icon-color: var(--wot-input-number-icon-color, rgba(0, 0, 0, 0.65)) !default; // icon颜色
+
+/* input */
+$-input-padding: var(--wot-input-padding, $-size-side-padding) !default; // input 左右padding距离
+$-input-border-color: var(--wot-input-border-color, #dadada) !default; // 无label边框颜色
+$-input-not-empty-border-color: var(--wot-input-not-empty-border-color, #262626) !default; // 输入框有值时 无label边框颜色
+$-input-fs: var(--wot-input-fs, $-cell-title-fs) !default; // 字号
+$-input-fs-large: var(--wot-input-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
+$-input-icon-margin: var(--wot-input-icon-margin, 8px) !default; // 图标距离
+$-input-color: var(--wot-input-color, #262626) !default; // 文字颜色
+$-input-placeholder-color: var(--wot-input-placeholder-color, #bfbfbf) !default; // 占位符颜色
+$-input-disabled-color: var(--wot-input-disabled-color, #d9d9d9) !default; // 输入框禁用颜色
+$-input-error-color: var(--wot-input-error-color, $-color-danger) !default; // 输入框错误颜色
+$-input-icon-color: var(--wot-input-icon-color, #bfbfbf) !default; // 图标颜色
+$-input-clear-color: var(--wot-input-clear-color, #585858) !default; // 关闭按钮颜色
+$-input-count-color: var(--wot-input-count-color, #bfbfbf) !default; // 计数文字颜色
+$-input-count-current-color: var(--wot-input-count-current-color, #262626) !default; // 当前长度颜色
+$-input-bg: var(--wot-input-bg, $-color-white) !default; // 默认背景颜色
+
+$-input-cell-bg: var(--wot-input-cell-bg, $-color-white) !default; // cell 类型背景色
+$-input-cell-border-color: var(--wot-input-cell-border-color, $-color-border-light) !default; // cell 类型边框颜色
+$-input-cell-padding: var(--wot-input-cell-padding, 10px) !default; // cell 容器padding
+$-input-cell-padding-large: var(--wot-input-cell-padding-large, 12px) !default; // large类型cell容器padding
+$-input-cell-height: var(--wot-input-cell-height, 24px) !default; // cell 高度
+$-input-cell-label-width: var(--wot-input-cell-label-width, 33%) !default; // cell 下 label 的宽度
+$-input-inner-height: var(--wot-input-inner-height, 34px) !default; // 非cell和textarea下的高度
+$-input-inner-height-no-border: var(--wot-input-inner-height-no-border, 24px) !default; // 无边框下的高度
+$-input-count-fs: var(--wot-input-count-fs, 14px) !default; // 计数字号
+$-input-count-fs-large: var(--wot-input-count-fs-large, 14px) !default; // 大尺寸计数字号
+$-input-icon-size: var(--wot-input-icon-size, 16px) !default; // 图标大小
+$-input-icon-size-large: var(--wot-input-icon-size-large, 18px) !default; // 大尺寸图标大小
+
+/* textarea */
+$-textarea-padding: var(--wot-textarea-padding, $-size-side-padding) !default; // textarea 左右padding距离
+$-textarea-border-color: var(--wot-textarea-border-color, #dadada) !default; // 无label边框颜色
+$-textarea-not-empty-border-color: var(--wot-textarea-not-empty-border-color, #262626) !default; // 输入框有值时 无label边框颜色
+$-textarea-fs: var(--wot-textarea-fs, $-cell-title-fs) !default; // 字号
+$-textarea-fs-large: var(--wot-textarea-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
+$-textarea-icon-margin: var(--wot-textarea-icon-margin, 8px) !default; // 图标距离
+$-textarea-color: var(--wot-textarea-color, #262626) !default; // 文字颜色
+$-textarea-icon-color: var(--wot-textarea-icon-color, #bfbfbf) !default; // 图标颜色
+$-textarea-clear-color: var(--wot-textarea-clear-color, #585858) !default; // 关闭按钮颜色
+$-textarea-count-color: var(--wot-textarea-count-color, #bfbfbf) !default; // 计数文字颜色
+$-textarea-count-current-color: var(--wot-textarea-count-current-color, #262626) !default; // 当前长度颜色
+$-textarea-bg: var(--wot-textarea-bg, $-color-white) !default; // 默认背景颜色
+$-textarea-cell-border-color: var(--wot-textarea-cell-border-color, $-color-border-light) !default; // cell 类型边框颜色
+$-textarea-cell-padding: var(--wot-textarea-cell-padding, 10px) !default; // cell 容器padding
+$-textarea-cell-padding-large: var(--wot-textarea-cell-padding-large, 12px) !default; // large类型cell容器padding
+$-textarea-cell-height: var(--wot-textarea-cell-height, 24px) !default; // cell 高度
+$-textarea-count-fs: var(--wot-textarea-count-fs, 14px) !default; // 计数字号
+$-textarea-count-fs-large: var(--wot-textarea-count-fs-large, 14px) !default; // 大尺寸计数字号
+$-textarea-icon-size: var(--wot-textarea-icon-size, 16px) !default; // 图标大小
+$-textarea-icon-size-large: var(--wot-textarea-icon-size-large, 18px) !default; // 大尺寸图标大小
+
+/* loadmore */
+$-loadmore-height: var(--wot-loadmore-height, 48px) !default; // 高度
+$-loadmore-color: var(--wot-loadmore-color, rgba(0, 0, 0, 0.45)) !default; // 颜色
+$-loadmore-fs: var(--wot-loadmore-fs, 14px) !default; // 字号
+$-loadmore-error-color: var(--wot-loadmore-error-color, $-color-theme) !default; // 点击重试颜色
+$-loadmore-refresh-fs: var(--wot-loadmore-refresh-fs, $-fs-title) !default; // refresh图标字号
+$-loadmore-loading-size: var(--wot-loadmore-loading-size, $-fs-title) !default; // loading尺寸
+
+/* message-box */
+$-message-box-width: var(--wot-message-box-width, 300px) !default; // 宽度
+$-message-box-bg: var(--wot-message-box-bg, $-color-white) !default; // 默认背景颜色
+$-message-box-radius: var(--wot-message-box-radius, 16px) !default; // 圆角大小
+$-message-box-padding: var(--wot-message-box-padding, 25px 24px 0) !default; // 主体内容padding
+$-message-box-title-fs: var(--wot-message-box-title-fs, 16px) !default; // 标题字号
+$-message-box-title-color: var(--wot-message-box-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
+$-message-box-content-fs: var(--wot-message-box-content-fs, 14px) !default; // 内容字号
+$-message-box-content-color: var(--wot-message-box-content-color, #666666) !default; // 内容颜色
+$-message-box-content-max-height: var(--wot-message-box-content-max-height, 264px) !default; // 内容最大高度
+$-message-box-content-scrollbar-width: var(--wot-message-box-content-scrollbar-width, 4px) !default; // 内容滚动条宽度
+$-message-box-content-scrollbar-color: var(--wot-message-box-content-scrollbar-color, rgba(0, 0, 0, 0.1)) !default; // 内容滚动条颜色
+$-message-box-input-error-color: var(--wot-message-box-input-error-color, $-input-error-color) !default; // 输入框错误颜色
+
+/* notice-bar */
+$-notice-bar-fs: var(--wot-notice-bar-fs, 12px) !default; // 字号
+$-notice-bar-line-height: var(--wot-notice-bar-line-height, 18px) !default; // 行高
+$-notice-bar-border-radius: var(--wot-notice-bar-border-radius, 8px) !default; // 圆角
+$-notice-bar-padding: var(--wot-notice-bar-padding, 9px 20px 9px 15px) !default; // 非换行下的padding
+$-notice-bar-warning-bg: var(--wot-notice-bar-warning-bg, #fff6c8) !default; // 背景色
+$-notice-bar-info-bg: var(--wot-notice-bar-info-bg, #f4f9ff) !default; // 背景色
+$-notice-bar-danger-bg: var(--wot-notice-bar-danger-bg, #feeced) !default; // 背景色
+$-notice-bar-warning-color: var(--wot-notice-bar-warning-color, $-color-warning) !default; // 文字和图标颜色
+$-notice-bar-info-color: var(--wot-notice-bar-info-color, $-color-theme) !default; // 文字和图标颜色
+$-notice-bar-danger-color: var(--wot-notice-bar-danger-color, $-color-danger) !default; // 文字和图标颜色
+$-notice-bar-prefix-size: var(--wot-notice-bar-prefix-size, 18px) !default; // 图标大小
+$-notice-bar-close-bg: var(--wot-notice-bar-close-bg, rgba(0, 0, 0, 0.15)) !default; // 右侧关闭按钮背景颜色
+$-notice-bar-close-size: var(--wot-notice-bar-close-size, 18px) !default; // 右侧关闭按钮背景颜色
+$-notice-bar-close-color: var(--wot-notice-bar-close-color, $-color-white) !default; // 右侧关闭按钮颜色
+$-notice-bar-wrap-padding: var(--wot-notice-bar-wrap-padding, 14px $-size-side-padding) !default; // 换行下的padding
+
+/* pagination */
+$-pagination-content-padding: var(--wot-pagination-content-padding, 10px 15px) !default;
+$-pagination-message-padding: var(--wot-pagination-message-padding, 1px 0 16px 0) !default;
+$-pagination-message-fs: var(--wot-pagination-message-fs, 12px) !default;
+$-pagination-message-color: var(--wot-pagination-message-color, rgba(0, 0, 0, 0.69)) !default;
+$-pagination-nav-border: var(--wot-pagination-nav-border, 1px solid rgba(0, 0, 0, 0.45)) !default;
+$-pagination-nav-border-radius: var(--wot-pagination-nav-border-radius, 16px) !default;
+$-pagination-nav-fs: var(--wot-pagination-nav-fs, 12px) !default;
+$-pagination-nav-width: var(--wot-pagination-nav-width, 60px) !default;
+$-pagination-nav-color: var(--wot-pagination-nav-color, rgba(0, 0, 0, 0.85)) !default;
+$-pagination-nav-content-fs: var(--wot-pagination-nav-content-fs, 12px) !default;
+$-pagination-nav-sepatator-padding: var(--wot-pagination-nav-sepatator-padding, 0 4px) !default;
+$-pagination-nav-current-color: var(--wot-pagination-nav-current-color, $-color-theme) !default;
+$-pagination-icon-size: var(--wot-pagination-icon-size, $-fs-content) !default;
+
+/* picker */
+$-picker-toolbar-height: var(--wot-picker-toolbar-height, 54px) !default; // toolbar 操作条的高度
+$-picker-action-height: var(--wot-picker-action-height, 16px) !default; // toolbar 操作条的高度
+$-picker-toolbar-finish-color: var(--wot-picker-toolbar-finish-color, $-color-theme) !default; // toolbar 操作条完成按钮的颜色
+$-picker-toolbar-cancel-color: var(--wot-picker-toolbar-cancel-color, #666666) !default; // toolbar 操作条的边框颜色
+$-picker-toolbar-fs: var(--wot-picker-toolbar-fs, $-fs-title) !default; // toolbar 操作条的字号
+$-picker-toolbar-title-color: var(--wot-picker-toolbar-title-color, rgba(0, 0, 0, 0.85)) !default; // toolbar 操作台的标题颜色
+$-picker-column-fs: var(--wot-picker-column-fs, 16px) !default; // 选择器选项的字号
+$-picker-bg: var(--wot-picker-bg, $-color-white) !default; // 选择器选项的字号
+$-picker-column-active-fs: var(--wot-picker-column-active-fs, 18px) !default; // 选择器选项被选中的字号
+$-picker-column-color: var(--wot-picker-column-color, rgba(0, 0, 0, 0.85)) !default; // 选择器选项的颜色
+$-picker-column-height: var(--wot-picker-column-height, 210px) !default; // 列高 滚筒外部的高度
+$-picker-column-item-height: var(--wot-picker-column-item-height, 35px) !default; // 列高 滚筒外部的高度
+$-picker-column-select-bg: var(--wot-picker-column-select-bg, #f5f5f5) !default;
+$-picker-loading-button-color: var(--wot-picker-loading-button-color, rgba(0, 0, 0, 0.25)) !default; // loading 背景颜色
+$-picker-column-padding: var(--wot-picker-column-padding, 0 $-size-side-padding-small) !default; // 选项内间距
+
+$-picker-column-disabled-color: var(--wot-picker-column-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 选择器选项禁用的颜色
+$-picker-mask: var(--wot-picker-mask, linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25)))
+ linear-gradient(0deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25)) !default; // 上下阴影
+$-picker-loading-bg: var(--wot-picker-loading-bg, rgba($-color-white, 0.8)) !default; // loading 背景颜色
+$-picker-region-separator-color: var(--wot-picker-region-separator-color, rgba(0, 0, 0, 0.65)) !default; // 区域选择文字颜色
+$-picker-cell-arrow-size-large: var(--wot-picker-cell-arrow-size-large, $-cell-icon-size) !default; // cell 类型的大尺寸 右侧icon尺寸
+
+$-picker-region-color: var(--wot-picker-region-color, rgba(0, 0, 0, 0.45)) !default; // 区域选择文字颜色
+$-picker-region-bg-active-color: var(--wot-picker-region-bg-active-color, $-color-theme) !default; // 区域选择激活选中背景颜色
+
+$-picker-region-fs: var(--wot-picker-region-fs, 14px) !default; // 区域选择文字字号
+
+/* col-picker */
+$-col-picker-selected-height: var(--wot-col-picker-selected-height, 44px) !default; // 弹框顶部值高度
+$-col-picker-selected-padding: var(--wot-col-picker-selected-padding, 0 16px) !default; // 弹框顶部值左右间距
+$-col-picker-selected-fs: var(--wot-col-picker-selected-fs, 14px) !default; // 弹框顶部值字号
+$-col-picker-selected-color: var(--wot-col-picker-selected-color, rgba(0, 0, 0, 0.85)) !default; // 弹框顶部值文字颜色
+$-col-picker-selected-fw: var(--wot-col-picker-selected-fw, 700) !default; // 弹框顶部值高亮字重
+$-col-picker-line-width: var(--wot-col-picker-line-width, 16px) !default; // 弹框顶部值高亮线条宽度
+$-col-picker-line-height: var(--wot-col-picker-line-height, 3px) !default; // 弹框顶部值高亮线条高度
+$-col-picker-line-color: var(
+ --wot-col-picker-line-color,
+ linear-gradient(315deg, rgba(81, 124, 240, 1), rgba(118, 158, 245, 1))
+) !default; // 弹框顶部值高亮线条颜色
+$-col-picker-line-box-shadow: var(--wot-col-picker-line-box-shadow, 0px 1px 2px 0px rgba(1, 87, 255, 0.2)) !default; // 弹框顶部值高亮线条阴影
+$-col-picker-list-height: var(--wot-col-picker-list-height, 53vh) !default; // 弹框列表高度
+$-col-picker-list-padding-bottom: var(--wot-col-picker-list-padding-bottom, 30px) !default; // 弹框列表底部间距
+$-col-picker-list-color: var(--wot-col-picker-list-color, rgba(0, 0, 0, 0.85)) !default; // 弹框列表文字颜色
+$-col-picker-list-color-disabled: var(--wot-col-picker-list-color-disabled, rgba(0, 0, 0, 0.15)) !default; // 弹框列表文字禁用颜色
+$-col-picker-list-color-tip: var(--wot-col-picker-list-color-tip, rgba(0, 0, 0, 0.45)) !default; // 弹框列表提示文字颜色
+$-col-picker-list-fs: var(--wot-col-picker-list-fs, 14px) !default; // 弹框列表文字字号
+$-col-picker-list-fs-tip: var(--wot-col-picker-list-fs-tip, 12px) !default; // 弹框列表提示文字字号
+$-col-picker-list-item-padding: var(--wot-col-picker-list-item-padding, 12px 15px) !default; // 弹框列表选项间距
+$-col-picker-list-checked-icon-size: var(--wot-col-picker-list-checked-icon-size, 18px) !default; // 弹框列表选中箭头大小
+$-col-picker-list-color-checked: var(--wot-col-picker-list-color-checked, $-color-theme) !default; // 弹框列表选中选项颜色
+
+/* overlay */
+$-overlay-bg: var(--wot-overlay-bg, rgba(0, 0, 0, 0.65)) !default;
+$-overlay-bg-dark: var(--wot-overlay-bg-dark, rgba(0, 0, 0, 0.75)) !default;
+
+/* popup */
+$-popup-close-size: var(--wot-popup-close-size, 24px) !default; // 关闭按钮尺寸
+$-popup-close-color: var(--wot-popup-close-color, #666) !default; // 关闭按钮颜色
+
+/* progress */
+$-progress-padding: var(--wot-progress-padding, 9px 0 8px) !default; // 进度条内边距
+$-progress-bg: var(--wot-progress-bg, rgba(229, 229, 229, 1)) !default; // 进度条底色
+$-progress-danger-color: var(--wot-progress-danger-color, $-color-danger) !default; // 进度条danger颜色
+$-progress-success-color: var(--wot-progress-success-color, $-color-success) !default; // 进度条success进度条颜色
+$-progress-warning-color: var(--wot-progress-warning-color, $-color-warning) !default; // 进度条warning进度条颜色
+
+$-progress-color: var(--wot-progress-color, $-color-theme) !default; // 进度条颜色
+$-progress-height: var(--wot-progress-height, 3px) !default; // 进度条高度
+$-progress-label-color: var(--wot-progress-label-color, #333) !default; // 文字颜色
+$-progress-label-fs: var(--wot-progress-label-fs, 14px) !default; // 文字字号
+$-progress-icon-fs: var(--wot-progress-icon-fs, 18px) !default; // 图标字号
+
+/* radio */
+$-radio-margin: var(--wot-radio-margin, $-checkbox-margin) !default; // 多个单选框距离
+$-radio-label-margin: var(--wot-radio-label-margin, $-checkbox-label-margin) !default; // 右侧文字与左侧图标距离
+$-radio-size: var(--wot-radio-size, 16px) !default; // 左侧图标尺寸
+$-radio-bg: var(--wot-radio-bg, $-color-white) !default; // 左侧图标尺寸
+$-radio-label-fs: var(--wot-radio-label-fs, $-checkbox-label-fs) !default; // 右侧文字字号
+$-radio-label-color: var(--wot-radio-label-color, $-checkbox-label-color) !default; // 右侧文字颜色
+$-radio-checked-color: var(--wot-radio-checked-color, $-checkbox-checked-color) !default; // 选中颜色
+$-radio-disabled-color: var(--wot-radio-disabled-color, $-checkbox-disabled-color) !default; // 禁用颜色
+$-radio-disabled-label-color: var(--wot-radio-disabled-label-color, $-checkbox-disabled-label-color) !default; // 禁用文字颜色
+
+$-radio-large-size: var(--wot-radio-large-size, $-checkbox-large-size) !default; // 左侧图标尺寸
+$-radio-large-label-fs: var(--wot-radio-large-label-fs, $-checkbox-large-label-fs) !default; // 右侧文字字号
+
+$-radio-button-height: var(--wot-radio-button-height, $-checkbox-button-height) !default; // 按钮模式复选框高
+$-radio-button-min-width: var(--wot-radio-button-min-width, 60px) !default; // 按钮模式最小宽
+$-radio-button-max-width: var(--wot-radio-button-max-width, 144px) !default; // 按钮模式最大宽
+$-radio-button-radius: var(--wot-radio-button-radius, $-checkbox-button-radius) !default; // 按钮圆角大小
+$-radio-button-bg: var(--wot-radio-button-bg, $-checkbox-button-bg) !default; // 按钮模式背景颜色
+$-radio-button-fs: var(--wot-radio-button-fs, $-checkbox-button-font-size) !default; // 按钮模式字号
+$-radio-button-border: var(--wot-radio-button-border, $-checkbox-button-border) !default; // 按钮边框颜色
+$-radio-button-disabled-border: var(--wot-radio-button-disabled-border, $-checkbox-button-disabled-border) !default; // 按钮禁用边框颜色
+
+$-radio-dot-size: var(--wot-radio-dot-size, 8px) !default; // 单选dot模式圆点尺寸
+$-radio-dot-large-size: var(--wot-radio-dot-large-size, 10px) !default; // 单选dot模式大尺寸圆点尺寸
+$-radio-dot-checked-bg: var(--wot-radio-dot-checked-bg, $-color-theme) !default; // 单选dot模式选中背景色
+$-radio-dot-checked-border-color: var(--wot-radio-dot-checked-border-color, $-color-theme) !default; // 单选dot模式选中边框色
+$-radio-dot-border-color: var(--wot-radio-dot-border-color, #dcdcdc) !default; // 单选dot模式边框色
+$-radio-dot-disabled-border: var(--wot-radio-dot-disabled-border, #d9d9d9) !default; // 单选dot模式禁用边框颜色
+$-radio-dot-disabled-bg: var(--wot-radio-dot-disabled-bg, #d9d9d9) !default; // 单选dot模式禁用背景颜色
+
+/* search */
+$-search-side-padding: var(--wot-search-side-padding, $-size-side-padding) !default; // 左右间距
+$-search-padding: var(--wot-search-padding, 10px 0 10px $-search-side-padding) !default; // 不包含取消按钮的间距
+$-search-input-radius: var(--wot-search-input-radius, 15px) !default; // 输入框圆角大小
+$-search-input-bg: var(--wot-search-input-bg, $-color-bg) !default; // 输入框背景色
+$-search-input-height: var(--wot-search-input-height, 30px) !default; // 输入框高度
+$-search-input-padding: var(--wot-search-input-padding, 0 32px 0 42px) !default; // 输入框间距
+$-search-input-fs: var(--wot-search-input-fs, $-fs-content) !default; // 输入框字号
+$-search-input-color: var(--wot-search-input-color, #262626) !default; // 输入框文字颜色
+$-search-icon-color: var(--wot-search-icon-color, $-color-icon) !default; // 图标颜色
+$-search-icon-size: var(--wot-search-icon-size, 18px) !default; // 图标大小
+$-search-clear-icon-size: var(--wot-search-clear-icon-size, $-fs-title) !default; // 清除图标大小
+$-search-placeholder-color: var(--wot-search-placeholder-color, #bfbfbf) !default; // placeholder 颜色
+$-search-cancel-padding: var(--wot-search-cancel-padding, 0 $-search-side-padding 0 10px) !default; // 取消按钮间距
+$-search-cancel-fs: var(--wot-search-cancel-fs, $-fs-title) !default; // 取消按钮字号
+$-search-cancel-color: var(--wot-search-cancel-color, rgba(0, 0, 0, 0.65)) !default; // 取消按钮颜色
+$-search-light-bg: var(--wot-search-light-bg, $-color-bg) !default; // light 类型的容器背景色
+
+/* slider */
+$-slider-fs: var(--wot-slider-fs, $-fs-content) !default; // 字体大小
+$-slider-handle-radius: var(--wot-slider-handle-radius, 12px) !default; // 滑块半径
+$-slider-handle-bg: var(--wot-slider-handle-bg, resultColor(139deg, $-color-theme, 'dark' 'light', #ffffff #f7f7f7, 0% 100%)) !default; // 滑块背景
+$-slider-axie-height: var(--wot-slider-axie-height, 3px) !default; // 滑轴高度
+$-slider-color: var(--wot-slider-color, #333) !default; // 字体颜色
+$-slider-axie-bg: var(--wot-slider-axie-bg, #e5e5e5) !default; // 滑轴的默认背景色
+$-slider-line-color: var(
+ --wot-slider-line-color,
+ resultColor(315deg, $-color-theme, 'dark' 'light', #517cf0 #769ef5, 0% 100%)
+) !default; // 进度条颜色
+$-slider-disabled-color: var(--wot-slider-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 禁用状态下字体颜色
+
+/* sort-button */
+$-sort-button-fs: var(--wot-sort-button-fs, $-fs-content) !default; // 字号
+$-sort-button-color: var(--wot-sort-button-color, $-color-content) !default; // 颜色
+$-sort-button-height: var(--wot-sort-button-height, 48px) !default; // 高度
+$-sort-button-line-height: var(--wot-sort-button-line-height, 3px) !default; // 下划线高度
+$-sort-button-line-color: var(--wot-sort-button-line-color, $-color-theme) !default; // 下划线颜色
+
+/* steps */
+$-steps-icon-size: var(--wot-steps-icon-size, 22px) !default; // 图标尺寸
+$-steps-inactive-color: var(--wot-steps-inactive-color, rgba(0, 0, 0, 0.25)) !default; // 等待状态文字颜色
+$-steps-finished-color: var(--wot-steps-finished-color, $-color-theme) !default; // 完成文字颜色
+$-steps-icon-text-fs: var(--wot-steps-icon-text-fs, $-fs-content) !default; // 数字图标文字字号
+$-steps-error-color: var(--wot-steps-error-color, $-color-danger) !default; // 异常颜色
+$-steps-title-fs: var(--wot-steps-title-fs, $-fs-content) !default; // 标题字号
+$-steps-title-fw: var(--wot-steps-title-fw, $-fw-medium) !default; // 标题字重
+$-steps-label-fs: var(--wot-steps-label-fs, $-fs-secondary) !default; // 描述信息字号
+$-steps-description-color: var(--wot-steps-description-color, rgba(0, 0, 0, 0.45)) !default; // 描述信息颜色
+$-steps-is-icon-width: var(--wot-steps-is-icon-width, 30px) !default; // 自定义图标的宽度,给左右留白
+$-steps-line-color: var(--wot-steps-line-color, rgba(0, 0, 0, 0.15)) !default; // 线条颜色
+$-steps-dot-size: var(--wot-steps-dot-size, 7px) !default; // 点状大小
+$-steps-dot-active-size: var(--wot-steps-dot-active-size, 9px) !default; // 点状高亮大小
+
+/* switch */
+$-switch-size: var(--wot-switch-size, 28px) !default; // switch大小
+$-switch-width: var(--wot-switch-width, calc(1.8em + 4px)) !default; // 宽度
+$-switch-height: var(--wot-switch-height, calc(1em + 4px)) !default; // 高度
+$-switch-circle-size: var(--wot-switch-circle-size, 1em) !default; // 圆点大小
+$-switch-border-color: var(--wot-switch-border-color, #e5e5e5) !default; // 边框颜色选中状态背景颜色
+$-switch-active-color: var(--wot-switch-active-color, $-color-theme) !default; // 选中状态背景
+$-switch-active-shadow-color: var(--wot-switch-active-shadow-color, rgba(0, 83, 162, 0.5)) !default; // 选中状态shadow颜色
+$-switch-inactive-color: var(--wot-switch-inactive-color, #eaeaea) !default; // 非选中背景颜色
+$-switch-inactive-shadow-color: var(--wot-switch-inactive-shadow-color, rgba(155, 155, 155, 0.5)) !default; // 非选中状态shadow颜色
+
+/* tabs */
+$-tabs-nav-arrow-fs: var(--wot-tabs-nav-arrow-fs, 18px) !default; // 全部Icon字号
+$-tabs-nav-arrow-open-fs: var(--wot-tabs-nav-arrow-open-fs, 14px) !default; // 展开Icon字号
+$-tabs-nav-width: var(--wot-tabs-nav-width, 100vw) !default; // tabs 头部切换宽度
+$-tabs-nav-height: var(--wot-tabs-nav-height, 42px) !default; // 头部切换高度
+$-tabs-nav-fs: var(--wot-tabs-nav-fs, $-fs-content) !default; // 头部切换文字大小
+$-tabs-nav-color: var(--wot-tabs-nav-color, rgba(0, 0, 0, 0.85)) !default; // 头部切换文字颜色
+$-tabs-nav-bg: var(--wot-tabs-nav-bg, $-color-white) !default; // 背景颜色
+$-tabs-nav-active-color: var(--wot-tabs-nav-active-color, $-color-theme) !default; // 头部高亮颜色
+$-tabs-nav-disabled-color: var(--wot-tabs-nav-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 头部禁用颜色
+$-tabs-nav-line-height: var(--wot-tabs-nav-line-height, 3px) !default; // 高亮边框高度
+$-tabs-nav-line-width: var(--wot-tabs-nav-line-width, 19px) !default; // 高亮边框宽度
+$-tabs-nav-line-bg-color: var(--wot-tabs-nav-line-bg-color, $-color-theme) !default; // 底部条颜色
+$-tabs-nav-map-fs: var(--wot-tabs-nav-map-fs, $-fs-content) !default; // map 类型按钮字号
+$-tabs-nav-map-color: var(--wot-tabs-nav-map-color, rgba(0, 0, 0, 0.85)) !default; // map 类型按钮文字颜色
+$-tabs-nav-map-arrow-color: var(--wot-tabs-nav-map-arrow-color, rgba(0, 0, 0, 0.65)) !default; // map 类型箭头颜色
+$-tabs-nav-map-btn-before-bg: var(
+ --wot-tabs-nav-map-btn-before-bg,
+ linear-gradient(270deg, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0) 100%)
+) !default; // 左侧map遮罩阴影
+$-tabs-nav-map-button-back-color: var(--wot-tabs-nav-map-button-back-color, rgba(0, 0, 0, 0.04)) !default; // map 类型按钮边框颜色
+$-tabs-nav-map-button-radius: var(--wot-tabs-nav-map-button-radius, 16px) !default; // map 类型按钮圆角大小
+$-tabs-nav-map-modal-bg: var(--wot-tabs-nav-map-modal-bg, $-overlay-bg) !default; // map 类型蒙层背景色
+
+/* tag */
+$-tag-fs: var(--wot-tag-fs, $-fs-secondary) !default; // 字号
+$-tag-color: var(--wot-tag-color, $-color-white) !default; // 字体颜色
+$-tag-small-fs: var(--wot-tag-small-fs, $-fs-aid) !default; // 小尺寸字号
+$-tag-info-color: var(--wot-tag-info-color, #585858) !default; // info 颜色
+$-tag-primary-color: var(--wot-tag-primary-color, $-color-theme) !default; // 主颜色
+$-tag-danger-color: var(--wot-tag-danger-color, $-color-danger) !default; // danger 颜色
+$-tag-warning-color: var(--wot-tag-warning-color, $-color-warning) !default; // warning 颜色
+$-tag-success-color: var(--wot-tag-success-color, $-color-success) !default; // success 颜色
+$-tag-info-bg: var(--wot-tag-info-bg, resultColor(49deg, $-color-black, 'dark' 'light', #808080 #999999, 0% 100%)) !default; // info 背景颜色
+$-tag-primary-bg: var(--wot-tag-primary-bg, $-color-theme) !default; // 主背景颜色
+$-tag-danger-bg: var(--wot-tag-danger-bg, $-color-danger) !default; // danger 背景颜色
+$-tag-warning-bg: var(--wot-tag-warning-bg, $-color-warning) !default; // warning 背景颜色
+$-tag-success-bg: var(--wot-tag-success-bg, $-color-success) !default; // success 背景颜色
+$-tag-round-color: var(--wot-tag-round-color, rgba(102, 102, 102, 1)) !default; // round 字体颜色
+$-tag-round-border-color: var(--wot-tag-round-border-color, rgba(225, 225, 225, 1)) !default; // round 边框颜色
+$-tag-round-radius: var(--wot-tag-round-radius, 12px) !default; // round 圆角大小
+$-tag-mark-radius: var(--wot-tag-mark-radius, 6px 2px 6px 2px) !default; // mark 圆角大小
+$-tag-close-size: var(--wot-tag-close-size, 14px) !default; // 关闭按钮字号
+$-tag-close-color: var(--wot-tag-close-color, $-tag-info-color) !default; // 关闭按钮颜色
+$-tag-close-active-color: var(--wot-tag-close-active-color, rgba(0, 0, 0, 0.45)) !default; // 关闭按钮 active 颜色
+
+/* toast */
+$-toast-color: var(--wot-toast-color, $-color-white) !default; // 文字颜色
+$-toast-padding: var(--wot-toast-padding, 16px 24px) !default; // padding
+$-toast-max-width: var(--wot-toast-max-width, 300px) !default; // 最大宽度
+$-toast-radius: var(--wot-toast-radius, 8px) !default; // 圆角大小
+$-toast-bg: var(--wot-toast-bg, $-overlay-bg) !default; // 背景色
+$-toast-fs: var(--wot-toast-fs, $-fs-content) !default; // 字号
+$-toast-line-height: var(--wot-toast-line-height, 20px) !default; // 行高
+$-toast-with-icon-min-width: var(--wot-toast-with-icon-min-width, 150px) !default; // 有图标的情况下最小宽度
+$-toast-icon-size: var(--wot-toast-icon-size, 32px) !default; // 图标大小
+$-toast-msg-margin-left: var(--wot-toast-msg-margin-left, 12px) !default; // 消息内容左边距
+$-toast-icon-margin-bottom: var(--wot-toast-icon-margin-bottom, 12px) !default; // 图标下边距
+$-toast-loading-padding: var(--wot-toast-loading-padding, 10px) !default; // loading状态下的padding
+$-toast-loading-margin-bottom: var(--wot-toast-loading-margin-bottom, 16px) !default; // loading动画的margin-bottom
+$-toast-box-shadow: var(--wot-toast-box-shadow, 0px 6px 16px 0px rgba(0, 0, 0, 0.08)) !default; // 外部阴影
+
+/* loading */
+$-loading-size: var(--wot-loading-size, 32px) !default; // loading 大小
+$-loading-duration: var(--wot-loading-duration, 2s) !default; // loading 动画时长
+
+/* tooltip */
+$-tooltip-bg: var(--wot-tooltip-bg, rgba(38, 39, 40, 0.8)) !default; // 背景色
+$-tooltip-color: var(--wot-tooltip-color, $-color-white) !default; // 文字颜色
+$-tooltip-radius: var(--wot-tooltip-radius, 8px) !default; // 圆角大小
+$-tooltip-arrow-size: var(--wot-tooltip-arrow-size, 5px) !default; // 箭头大小
+$-tooltip-fs: var(--wot-tooltip-fs, $-fs-content) !default; // 字号
+$-tooltip-blur: var(--wot-tooltip-blur, 10px) !default; // 背景高斯模糊效果
+$-tooltip-padding: var(--wot-tooltip-padding, 9px 20px) !default; // 间距
+$-tooltip-close-size: var(--wot-tooltip-close-size, 6px) !default; // 背景高斯模糊效果
+$-tooltip-z-index: var(--wot-tooltip-z-index, 500) !default;
+$-tooltip-line-height: var(--wot-tooltip-line-height, 18px) !default; // 行高
+
+/* popover */
+$-popover-bg: var(--wot-popover-bg, $-color-white) !default; // 背景色
+$-popover-color: var(--wot-popover-color, rgba(0, 0, 0, 0.85)) !default; // 文字颜色
+$-popover-box-shadow: var(--wot-popover-box-shadow, 0px 2px 10px 0px rgba(0, 0, 0, 0.1)) !default; // 阴影颜色
+$-popover-arrow-box-shadow: var(--wot-popover-arrow-box-shadow, 0px 2px 10px 0px rgba(0, 0, 0, 0.2)) !default; // 阴影颜色
+$-popover-border-color: var(--wot-popover-border-color, rgba(0, 0, 0, 0.09)) !default; // 阴影颜色
+$-popover-radius: var(--wot-popover-radius, 4px) !default; // 圆角大小
+$-popover-arrow-size: var(--wot-popover-arrow-size, 6px) !default; // 箭头大小
+$-popover-fs: var(--wot-popover-fs, $-fs-content) !default; // 字号
+$-popover-padding: var(--wot-popover-padding, 15px) !default; // 间距
+$-popover-line-height: var(--wot-popover-line-height, 18px) !default; // 行高
+$-popover-z-index: var(--wot-popover-z-index, $-tooltip-z-index) !default;
+
+/* grid-item */
+$-grid-item-fs: var(--wot-grid-item-fs, 12px) !default; // 字号
+$-grid-item-bg: var(--wot-grid-item-bg, $-color-white) !default; // 字号
+$-grid-item-padding: var(--wot-grid-item-padding, 14px 0px) !default; // 内容的 padding
+$-grid-item-border-color: var(--wot-grid-item-border-color, $-color-border-light) !default; // 边框颜色
+$-grid-item-hover-bg: var(--wot-grid-item-hover-bg, $-color-gray-3) !default; // hover背景色
+$-grid-item-hover-bg-dark: var(--wot-grid-item-hover-bg-dark, $-color-gray-7) !default; // 暗黑模式hover背景色
+
+/* statustip */
+$-statustip-fs: var(--wot-statustip-fs, $-fs-content) !default; // 字号
+$-statustip-color: var(--wot-statustip-color, rgba(0, 0, 0, 0.45)) !default; // 文字颜色
+$-statustip-line-height: var(--wot-statustip-line-height, 16px) !default; // 文字行高
+$-statustip-padding: var(--wot-statustip-padding, 5px 10px) !default; // 间距
+
+/* card */
+$-card-bg: var(--wot-card-bg, $-color-white) !default; // 背景色
+$-card-fs: var(--wot-card-fs, $-fs-content) !default; // 卡片字号
+$-card-padding: var(--wot-card-padding, 0 $-size-side-padding) !default; // 内边距
+$-card-footer-padding: var(--wot-card-footer-padding, 12px 0 16px) !default; // 底部内边距
+$-card-shadow-color: var(--wot-card-shadow-color, 0px 4px 8px 0px rgba(0, 0, 0, 0.02)) !default; // 阴影
+$-card-radius: var(--wot-card-radius, 8px) !default; // 圆角大小
+$-card-line-height: var(--wot-card-line-height, 1.1) !default; // 行高
+$-card-margin: var(--wot-card-margin, 0 $-size-side-padding) !default; // 外边距
+$-card-title-color: var(--wot-card-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
+$-card-title-fs: var(--wot-card-title-fs, $-fs-title) !default; // 矩形卡片标题字号
+$-card-content-border-color: var(--wot-card-content-border-color, rgba(0, 0, 0, 0.09)) !default; // 内容边框
+$-card-rectangle-title-padding: var(--wot-card-rectangle-title-padding, 15px 15px 12px) !default; // 矩形卡片头部内边距
+$-card-rectangle-content-padding: var(--wot-card-rectangle-content-padding, 16px 0) !default; // 矩形卡片内容内边距
+$-card-rectangle-footer-padding: var(--wot-card-rectangle-footer-padding, 12px 0) !default; // 矩形卡片底部内边距
+$-card-content-color: var(--wot-card-content-color, rgba(0, 0, 0, 0.45)) !default; // 文本内容颜色
+$-card-content-line-height: var(--wot-card-content-line-height, 1.428) !default; // 文本内容行高
+$-card-content-margin: var(--wot-card-content-margin, 13px 0 12px) !default; // 内容外边距
+$-card-content-rectangle-margin: var(--wot-card-content-rectangle-margin, 14px 0 12px) !default; // 矩形卡片内容外边距
+
+/* upload */
+$-upload-size: var(--wot-upload-size, 80px) !default; // upload的外边框默认尺寸
+$-upload-evoke-icon-size: var(--wot-upload-evoke-icon-size, 32px) !default; // 唤起项的图标大小
+$-upload-evoke-bg: var(--wot-upload-evoke-bg, rgba(0, 0, 0, 0.04)) !default; // 唤起项的背景色
+$-upload-evoke-color: var(--wot-upload-evoke-color, rgba(0, 0, 0, 0.25)) !default; // 唤起项的图标颜色
+$-upload-evoke-disabled-color: var(--wot-upload-evoke-disabled-color, rgba(0, 0, 0, 0.09)) !default; // 唤起项禁用颜色
+$-upload-close-icon-size: var(--wot-upload-close-icon-size, 16px) !default; // 移除按钮尺寸
+$-upload-close-icon-color: var(--wot-upload-close-icon-color, rgba(0, 0, 0, 0.65)) !default; // 移除按钮颜色
+$-upload-progress-fs: var(--wot-upload-progress-fs, 14px) !default; // 进度文字字号
+$-upload-file-fs: var(--wot-upload-file-fs, 12px) !default; // 文件名字号
+$-upload-file-color: var(--wot-upload-file-color, $-color-secondary) !default; // 文件名字颜色
+$-upload-preview-name-fs: var(--wot-upload-preview-name-fs, 12px) !default; // 预览图片名字号
+$-upload-preview-icon-size: var(--wot-upload-preview-icon-size, 24px) !default; // 预览内部图标尺寸
+$-upload-preview-name-bg: var(--wot-upload-preview-name-bg, rgba(0, 0, 0, 0.6)) !default; // 预览文件名背景色
+$-upload-preview-name-height: var(--wot-upload-preview-name-height, 22px) !default; // 预览文件名背景高度
+$-upload-cover-icon-size: var(--wot-upload-cover-icon-size, 22px) !default; // 视频/文件图标尺寸
+
+/* curtain */
+$-curtain-content-radius: var(--wot-curtain-content-radius, 24px) !default; // 内容圆角
+$-curtain-content-close-color: var(--wot-curtain-content-close-color, $-color-white) !default; // 关闭按钮颜色
+$-curtain-content-close-fs: var(--wot-curtain-content-close-fs, $-fs-big) !default; // 关闭按钮大小
+
+/* notify */
+$-notify-text-color: var(--wot-notify-text-color, $-color-white) !default;
+$-notify-padding: var(--wot-notify-padding, 8px 16px) !default;
+$-notify-font-size: var(--wot-notify-font-size, $-fs-content) !default;
+$-notify-line-height: var(--wot-notify-line-height, 20px) !default;
+$-notify-primary-background: var(--wot-notify-primary-background, $-color-theme) !default;
+$-notify-success-background: var(--wot-notify-success-background, $-color-success) !default;
+$-notify-danger-background: var(--wot-notify-danger-background, $-color-danger) !default;
+$-notify-warning-background: var(--wot-notify-warning-background, $-color-warning) !default;
+
+/* skeleton */
+$-skeleton-background-color: var(--wot-skeleton-background-color, #eee) !default;
+$-skeleton-animation-gradient: var(--wot-skeleton-animation-gradient, rgba(0, 0, 0, 0.04)) !default;
+$-skeleton-animation-flashed: var(--wot-skeleton-animation-flashed, rgba(230, 230, 230, 0.3)) !default;
+$-skeleton-text-height-default: var(--wot-skeleton-text-height-default, 16px) !default;
+$-skeleton-rect-height-default: var(--wot-skeleton-rect-height-default, 16px) !default;
+$-skeleton-circle-height-default: var(--wot-skeleton-circle-height-default, 48px) !default;
+$-skeleton-row-margin-bottom: var(--wot-skeleton-row-margin-bottom, 16px) !default;
+$-skeleton-border-radius-text: var(--wot-skeleton-border-radius-text, 2px) !default;
+$-skeleton-border-radius-rect: var(--wot-skeleton-border-radius-rect, 4px) !default;
+$-skeleton-border-radius-circle: var(--wot-skeleton-border-radius-circle, 50%) !default;
+
+/* circle */
+$-circle-text-color: var(--wot-circle-text-color, $-color-content) !default; // circle文字颜色
+
+/* swiper */
+$-swiper-radius: var(--wot-swiper-radius, 8px);
+$-swiper-item-padding: var(--wot-swiper-item-padding, 0);
+$-swiper-item-text-color: var(--wot-swiper-item-text-color, #ffffff);
+$-swiper-item-text-fs: var(--wot-swiper-item-text-fs, $-fs-title);
+
+
+/* swiper-nav */
+// dot & dots-bar
+$-swiper-nav-dot-color: var(--wot-swiper-nav-dot-color, $-font-white-2) !default;
+$-swiper-nav-dot-active-color: var(--wot-swiper-nav-dot-active-color, $-font-white-1) !default;
+$-swiper-nav-dot-size: var(--wot-swiper-nav-dot-size, 12rpx) !default;
+$-swiper-nav-dots-bar-active-width: var(--wot-swiper-nav-dots-bar-active-width, 40rpx) !default;
+// fraction
+$-swiper-nav-fraction-color: var(--wot-swiper-nav-fraction-color, $-font-white-1) !default;
+$-swiper-nav-fraction-bg-color: var(--wot-swiper-nav-fraction-bg-color, $-font-gray-3) !default;
+$-swiper-nav-fraction-height: var(--wot-swiper-nav-fraction-height, 48rpx) !default;
+$-swiper-nav-fraction-font-size: var(--wot-swiper-nav-fraction-font-size, 24rpx) !default;
+// button
+$-swiper-nav-btn-color: var(--wot-swiper-nav-btn-color, $-font-white-1) !default;
+$-swiper-nav-btn-bg-color: var(--wot-swiper-nav-btn-bg-color, $-font-gray-3) !default;
+$-swiper-nav-btn-size: var(--wot-swiper-nav-btn-size, 48rpx) !default;
+
+/* segmented */
+$-segmented-padding: var(--wot-segmented-padding, 4px) !default; // 分段器padding
+$-segmented-item-bg-color: var(--wot-segmented-item-bg-color, #eeeeee) !default;
+$-segmented-item-color: var(--wot-segmented-item-color, rgba(0, 0, 0, 0.85)) !default; // 标题文字颜色
+$-segmented-item-acitve-bg: var(--wot-segmented-item-acitve-bg, #ffffff) !default; // 标题文字颜色
+$-segmented-item-disabled-color: var(--wot-segmented-item-disabled-color, rgba(0, 0, 0, 0.25)) !default; // 标题文字禁用颜色
+
+/* tabbar */
+$-tabbar-height: var(--wot-tabbar-height, 50px) !default;
+$-tabbar-box-shadow: var(
+ --wot-tabbar-box-shadow,
+ 0 6px 30px 5px rgba(0, 0, 0, 0.05),
+ 0 16px 24px 2px rgba(0, 0, 0, 0.04),
+ 0 8px 10px -5px rgba(0, 0, 0, 0.08)
+) !default; // round类型tabbar阴影
+
+/* tabbar-item */
+$-tabbar-item-title-font-size: var(--wot-tabbar-item-title-font-size, 10px) !default; // tabbar选项文字大小
+$-tabbar-item-title-line-height: var(--wot-tabbar-item-title-line-height, initial) !default; // tabbar选项标题文字行高
+$-tabbar-inactive-color: var(--wot-tabbar-inactive-color, $-color-title) !default; // 标题文字和图标颜色
+$-tabbar-active-color: var(--wot-tabbar-active-color, $-color-theme) !default; // 选中文字和图标颜色
+$-tabbar-item-icon-size: var(--wot-tabbar-item-icon-size, 20px) !default; // tabbar选项图标大小
+
+/* navbar */
+$-navbar-height: var(--wot-navbar-height, 44px) !default; // navbar高度
+$-navbar-color: var(--wot-navbar-color, $-font-gray-1) !default; // navbar字体颜色
+$-navbar-background: var(--wot-navbar-background, $-color-white) !default; // navbar背景颜色
+$-navbar-arrow-size: var(--wot-navbar-arrow-size, 24px) !default; // navbar左箭头图标大小
+$-navbar-desc-font-size: var(--wot-navbar-desc-font-size, 16px); // navbar 左箭头字体大小
+$-navbar-desc-font-color: var(--wot-navbar-desc-font-color, $-font-gray-1) !default; // navbar左右两侧字体颜色
+$-navbar-title-font-size: var(--wot-navbar-title-font-size, 18px); // navbar title字体大小
+$-navbar-title-font-weight: var(--wot-navbar-title-font-weight, 600); // navbar title字重
+$-navbar-disabled-opacity: var(--wot-navbar-disabled-opacity, 0.6) !default; // navbar左右两侧字体禁用
+$-navbar-hover-color: var(--wot-navbar-hover-color, #eee) !default; // navbar hover样式
+
+/* navbar-capsule */
+$-navbar-capsule-border-color: var(--wot-navbar-capsule-border-color, #e7e7e7) !default;
+$-navbar-capsule-border-radius: var(--wot-navbar-capsule-border-radius, 16px) !default;
+$-navbar-capsule-width: var(--wot-navbar-capsule-width, 88px) !default;
+$-navbar-capsule-height: var(--wot-navbar-capsule-height, 32px) !default;
+$-navbar-capsule-icon-size: var(--wot-navbar-capsule-icon-size, 20px) !default; // navbar capsule图标大小
+
+/* table */
+$-table-color: var(--wot-table-color, $-font-gray-1) !default; // 表格字体颜色
+$-table-bg: var(--wot-table-bg, #ffffff) !default; // 表格背景颜色
+$-table-stripe-bg: var(--wot-table-stripe-bg, #f3f3f3) !default; // 表格背景颜色
+$-table-border-color: var(--wot-table-border-color, #ececec) !default; // 表格边框颜色
+$-table-font-size: var(--wot-table-font-size, 13px) !default; // 表格字体大小
+
+/* sidebar */
+$-sidebar-bg: var(--wot-sidebar-bg, $-color-gray-1) !default; // 侧边栏背景色
+$-sidebar-width: var(--wot-sidebar-width, 104px) !default; // 侧边栏宽度
+$-sidebar-height: var(--wot-sidebar-height, 100%) !default; // 侧边栏高度
+
+/* sidebar-item */
+$-sidebar-color: var(--wot-sidebar-color, $-font-gray-1) !default;
+$-sidebar-item-height: var(--wot-sidebar-item-height, 56px) !default;
+$-sidebar-item-line-height: var(--wot-sidebar-item-line-height, 24px) !default;
+$-sidebar-disabled-color: var(--wot-side-bar-disabled-color, $-font-gray-4) !default;
+$-sidebar-active-color: var(--wot-sidebar-active-color, $-color-theme) !default; // 激活项字体颜色
+$-sidebar-active-bg: var(--wot-sidebar-active-bg, $-color-white) !default; // 激活项背景颜色
+$-sidebar-hover-bg: var(--wot-sidebar-hover-bg, $-color-gray-2) !default; // 激活项点击背景颜色
+$-sidebar-border-radius: var(--wot-sidebar-border-radius, 8px) !default;
+$-sidebar-font-size: var(--wot-sidebar-font-size, 16px) !default;
+$-sidebar-icon-size: var(--wot-sidebar-icon-size, 20px) !default;
+$-sidebar-active-border-width: var(--wot-sidebar-active-border-width, 4px) !default;
+$-sidebar-active-border-height: var(--wot-sidebar-active-border-height, 16px) !default;
+
+/* fab */
+$-fab-trigger-height: var(--wot-fab-trigger-height, 56px) !default;
+$-fab-trigger-width: var(--wot-fab-trigger-width, 56px) !default;
+$-fab-actions-padding: var(--wot-actions-padding, 12px) !default;
+$-fab-icon-fs: var(--wot-fab-icon-fs, 20px) !default;
+
+/* count-down */
+$-count-down-text-color: var(--wot-count-down-text-color, $-color-gray-8) !default;
+$-count-down-font-size: var(--wot-count-down-font-size, $-fs-content) !default;
+$-count-down-line-height: var(--wot-count-down-line-height, 20px) !default;
+
+/* keyboard */
+$-keyboard-key-height: var(--wot-keyboard-key-height, 48px) !default;
+$-keyboard-key-font-size: var(--wot-keyboard-key-font-size, 28px) !default;
+$-keyboard-key-background: var(--wot-keyboard-key-background, $-color-white) !default;
+$-keyboard-key-border-radius: var(--wot-keyboard-key-border-radius, 8px) !default;
+$-keyboard-delete-font-size: var(--wot-keyboard-delete-font-size, 16px) !default;
+$-keyboard-key-active-color: var(--wot-keyboard-key-active-color, $-color-gray-3) !default;
+$-keyboard-button-text-color: var(--wot-keyboard-button-text-color, $-color-white) !default;
+$-keyboard-button-background: var(--wot-keyboard--button-background, $-color-theme) !default;
+$-keyboard-button-active-opacity: var(--wot-keyboard-button-active-opacity, 0.6) !default;
+$-keyboard-background: var(--wot-keyboard-background, $-color-gray-2) !default;
+$-keyboard-title-height: var(--wot-keyboard-title-height, 34px) !default;
+$-keyboard-title-color: var(--wot-keyboard-title-color, $-color-gray-7) !default;
+$-keyboard-title-font-size: var(--wot-keyboard-title-font-size, 16px) !default;
+$-keyboard-close-padding: var(--wot-keyboard-title-font-size, 0 16px) !default;
+$-keyboard-close-color: var(--wot-keyboard-close-color, $-color-theme) !default;
+$-keyboard-close-font-size: var(--wot-keyboard-close-font-size, 14px) !default;
+$-keyboard-icon-size: var(--wot-keyboard-icon-size, 22px) !default;
+
+/* number-keyboard */
+$-number-keyboard-key-height: var(--wot-number-keyboard-key-height, 48px) !default;
+$-number-keyboard-key-font-size: var(--wot-number-keyboard-key-font-size, 28px) !default;
+$-number-keyboard-key-background: var(--wot-number-keyboard-key-background, $-color-white) !default;
+$-number-keyboard-key-border-radius: var(--wot-number-keyboard-key-border-radius, 8px) !default;
+$-number-keyboard-delete-font-size: var(--wot-number-keyboard-delete-font-size, 16px) !default;
+$-number-keyboard-key-active-color: var(--wot-number-keyboard-key-active-color, $-color-gray-3) !default;
+$-number-keyboard-button-text-color: var(--wot-number-keyboard-button-text-color, $-color-white) !default;
+$-number-keyboard-button-background: var(--wot-number-keyboard--button-background, $-color-theme) !default;
+$-number-keyboard-button-active-opacity: var(--wot-number-keyboard-button-active-opacity, 0.6) !default;
+$-number-keyboard-background: var(--wot-number-keyboard-background, $-color-gray-2) !default;
+$-number-keyboard-title-height: var(--wot-number-keyboard-title-height, 34px) !default;
+$-number-keyboard-title-color: var(--wot-number-keyboard-title-color, $-color-gray-7) !default;
+$-number-keyboard-title-font-size: var(--wot-number-keyboard-title-font-size, 16px) !default;
+$-number-keyboard-close-padding: var(--wot-number-keyboard-title-font-size, 0 16px) !default;
+$-number-keyboard-close-color: var(--wot-number-keyboard-close-color, $-color-theme) !default;
+$-number-keyboard-close-font-size: var(--wot-number-keyboard-close-font-size, 14px) !default;
+$-number-keyboard-icon-size: var(--wot-number-keyboard-icon-size, 22px) !default;
+
+/* passwod-input */
+$-password-input-height: var(--wot-password-input-height, 50px);
+$-password-input-margin: var(--wot-password-input-margin, 16px);
+$-password-input-font-size: var(--wot-password-input-margin, 20px);
+$-password-input-radius: var(--wot-password-input-radius, 6px);
+$-password-input-background: var(--wot-password-input-background, #fff);
+$-password-input-info-color: var(--wot-password-input-info-color, $-color-info);
+$-password-input-info-font-size: var(--wot-password-input-info-font-size, $-fs-content);
+$-password-input-border-color: var(--wot-password-border-color, #ebedf0);
+$-password-input-error-info-color: var(--wot-password-input-error-info-color, $-color-danger);
+$-password-input-dot-size: var(--wot-password-input-dot-size, 10px);
+$-password-input-dot-color: var(--wot-password-input-dot-color, $-color-gray-8);
+$-password-input-text-color: var(--wot-password-input-text-color, $-color-gray-8);
+$-password-input-cursor-color: var(--wot-password-input-cursor-color, $-color-gray-8);
+$-password-input-cursor-width: var(--wot-password-input-cursor-width, 1px);
+$-password-input-cursor-height: var(--wot-password-input-cursor-height, 40%);
+$-password-input-cursor-duration: var(--wot-password-input-cursor-duration, 1s);
+
+/* form-item */
+$-form-item-error-message-color: var(--wot-form-item-error-message-color, $-color-danger) !default;
+$-form-item-error-message-font-size: var(--wot-form-item-error-message-font-size, $-fs-secondary) !default;
+$-form-item-error-message-line-height: var(--wot-form-item-error-message-line-height, 24px) !default;
+
+/* backtop */
+$-backtop-bg: var(--wot-backtop-bg, #e1e1e1) !default;
+$-backtop-icon-size: var(--wot-backtop-icon-size, 20px) !default;
+
+/* index-bar */
+$-index-bar-index-font-size: var(--wot-index-bar-index-font-size, $-fs-aid) !default;
+
+/* text */
+$-text-info-color: var(--wot-text-info-color, $-color-info) !default;
+$-text-primary-color: var(--wot-text-primary-color, $-color-theme) !default;
+$-text-error-color: var(--wot-text-error-color, $-color-danger) !default;
+$-text-warning-color: var(--wot-text-warning-color, $-color-warning) !default;
+$-text-success-color: var(--wot-text-success-color, $-color-success) !default;
+
+/* video-preview */
+$-video-preview-bg: var(--wot-video-preview-bg, rgba(0, 0, 0, 0.8)) !default; // 背景色
+$-video-preview-close-color: var(--wot-video-preview-close-color, #fff) !default; // 图标颜色
+$-video-preview-close-font-size: var(--wot-video-preview-close-font-size, 20px) !default; // 图标大小
+
+/* img-cropper */
+$-img-cropper-icon-size: var(--wot-img-cropper-icon-size, $-fs-big) !default; // 图标大小
+$-img-cropper-icon-color: var(--wot-img-cropper-icon-color, #fff) !default; // 图标颜色
+
+/* floating-panel */
+$-floating-panel-bg: var(--wot-floating-panel-bg, $-color-white) !default; // 背景色
+$-floating-panel-radius: var(--wot-floating-panel-radius, 16px) !default; // 圆角
+$-floating-panel-z-index: var(--wot-floating-panel-z-index, 99) !default; // 层级
+$-floating-panel-header-height: var(--wot-floating-panel-header-height, 30px) !default; // 头部高度
+$-floating-panel-bar-width: var(--wot-floating-panel-bar-width, 20px) !default; // bar 宽度
+$-floating-panel-bar-height: var(--wot-floating-panel-bar-height, 3px) !default; // bar 高度
+$-floating-panel-bar-bg: var(--wot-floating-panel-bar-bg, $-color-gray-5) !default; // bar 背景色
+$-floating-panel-bar-radius: var(--wot-floating-panel-bar-radius, 4px) !default; // bar 圆角
+$-floating-panel-content-bg: var(--wot-floating-panel-content-bg, $-color-white) !default; // 内容背景色
+
+/* signature */
+$-signature-bg: var(--wot-signature-bg, $-color-white) !default; // 背景色
+$-signature-radius: var(--wot-signature-radius, 4px) !default; // 圆角
+$-signature-border: var(--wot-signature-border, 1px solid $-color-gray-5) !default; // 边框圆角
+$-signature-footer-margin-top: var(--wot-signature-footer-margin-top, 8px) !default; // 底部按钮上边距
+$-signature-button-margin-left: var(--wot-signature-button-margin-left, 8px) !default; // 底部按钮左边距
+
+/* tour */
+$-tour-z-index: var(--wot-tour-z-index, 999) !default; // 层级
+$-tour-popover-z-index: var(--wot-tour-popover-z-index, $-tour-z-index + 1) !default; // 层级
+$-tour-popover-padding: var(--wot-tour-popover-padding, 10px 12px) !default; // 内边距
+$-tour-popover-radius: var(--wot-tour-popover-radius, 8px) !default; // 圆角
+$-tour-popover-min-width: var(--wot-tour-popover-min-width, 200px) !default; // 最小宽度
+$-tour-popover-max-width: var(--wot-tour-popover-max-width, 340px) !default; // 最大宽度
+$-tour-popover-info-font-size: var(--wot-tour-popover-info-font-size, $-fs-secondary) !default; // 字体大小
+$-tour-popover-bg: var(--wot-tour-popover-bg, $-color-white) !default; // 弹层背景色
+$-tour-info-bg: var(--wot-tour-info-bg, $-color-white) !default; // 信息框背景色
+$-tour-info-border-color: var(--wot-tour-info-border-color, $-color-white) !default; // 信息框边框颜色
+$-tour-info-border-width: var(--wot-tour-info-border-width, 1px) !default; // 信息框边框宽度
+$-tour-info-text-color: var(--wot-tour-info-text-color, $-color-title) !default; // 信息框文字颜色
+$-tour-animation-duration: var(--wot-tour-animation-duration, 0.3s) !default; // 动画时长
+$-tour-popover-animation-timing: var(--wot-tour-popover-animation-timing, ease) !default; // 弹层动画缓动
+$-tour-highlight-animation-timing: var(--wot-tour-highlight-animation-timing, ease-in-out) !default; // 高亮动画缓动
+$-tour-button-font-size: var(--wot-tour-button-font-size, $-fs-secondary) !default; // 按钮字体大小
+$-tour-button-radius: var(--wot-tour-button-radius, 4px) !default; // 按钮圆角
+$-tour-button-padding: var(--wot-tour-button-padding, 4px 8px) !default; // 按钮内边距
+$-tour-primary-button-bg-color: var(--wot-tour-primary-button-bg-color, $-button-primary-bg-color) !default; // 主按钮背景色
+$-tour-primary-button-text-color: var(--wot-tour-primary-button-text-color, $-color-white) !default; // 主按钮文字颜色
+$-tour-skip-bg-color: var(--wot-tour-skip-bg-color, $-color-white) !default; // 跳过按钮背景色
+$-tour-button-text-color: var(--wot-tour-button-text-color, $-color-black) !default; // 按钮文字默认颜色
+$-tour-highlight-shadow-color: var(--wot-tour-highlight-shadow-color, rgba(0, 0, 0, 0.65)) !default; // 高亮阴影颜色
+
+/* avatar */
+$-avatar-size: var(--wot-avatar-size, 54px) !default; // 默认尺寸
+$-avatar-size-large: var(--wot-avatar-size-large, 76px) !default; // 大尺寸
+$-avatar-size-medium: var(--wot-avatar-size-medium, 64px) !default; // 中尺寸
+$-avatar-size-small: var(--wot-avatar-size-small, 48px) !default; // 小尺寸
+$-avatar-text-color: var(--wot-avatar-text-color, #fff) !default; // 文字颜色
+$-avatar-font-weight: var(--wot-avatar-font-weight, $-fw-medium) !default; // 字重
+$-avatar-font-size: var(--wot-avatar-font-size, 20px) !default; // 默认字号
+$-avatar-font-size-large: var(--wot-avatar-font-size-large, 28px) !default; // 大尺寸字号
+$-avatar-font-size-medium: var(--wot-avatar-font-size-medium, 24px) !default; // 中尺寸字号
+$-avatar-font-size-small: var(--wot-avatar-font-size-small, 18px) !default; // 小尺寸字号
+$-avatar-line-height: var(--wot-avatar-line-height, 1.2) !default; // 行高
+$-avatar-bg-color: var(--wot-avatar-bg-color, $-color-gray-5) !default; // 背景颜色
+$-avatar-border-radius: var(--wot-avatar-border-radius, 8px) !default; // 圆角大小
+
+/* avatar-group */
+$-avatar-group-overlap: var(--wot-avatar-group-overlap, -12px) !default; // 重叠距离
+$-avatar-group-collapse-font-size: var(--wot-avatar-group-collapse-font-size, 12px) !default; // 折叠文字字号
+
+/* slide-verify */
+$-slide-verify-disabled-color: var(--wot-slide-verify-disabled-color, #cccccc) !default; // 禁用文字颜色
+$-slide-verify-text-color: var(--wot-slide-verify-text-color, #333333) !default; // 提示文字颜色
+$-slide-verify-text-size: var(--wot-slide-verify-text-size, 12px) !default; // 提示文字大小
+$-slide-verify-success-text-color: var(--wot-slide-verify-success-text-color, #ffffff) !default; // 成功提示文字颜色
+$-slide-verify-button-bg: var(--wot-slide-verify-button-bg, #ffffff) !default; // 滑块背景色
+$-slide-verify-button-shadow: var(--wot-slide-verify-button-shadow, rgba(0, 0, 0, 0.15)) !default; // 滑块阴影
+$-slide-verify-button-color: var(--wot-slide-verify-button-color, #666666) !default; // 滑块图标颜色
+$-slide-verify-button-size: var(--wot-slide-verify-button-size, 40px) !default; // 滑块尺寸
+$-slide-verify-track-width: var(--wot-slide-verify-track-width, 100%) !default; // 滑道宽度
+
diff --git a/node_modules/wot-design-uni/components/common/base64.ts b/node_modules/wot-design-uni/components/common/base64.ts
new file mode 100644
index 0000000..65aa2e8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/base64.ts
@@ -0,0 +1,29 @@
+const _b64chars: string[] = [...'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/']
+const _mkUriSafe = (src: string): string => src.replace(/[+/]/g, (m0: string) => (m0 === '+' ? '-' : '_')).replace(/=+\$/m, '')
+const fromUint8Array = (src: Uint8Array, rfc4648 = false): string => {
+ let b64 = ''
+ for (let i = 0, l = src.length; i < l; i += 3) {
+ const [a0, a1, a2] = [src[i], src[i + 1], src[i + 2]]
+ const ord = (a0 << 16) | (a1 << 8) | a2
+ b64 += _b64chars[ord >>> 18]
+ b64 += _b64chars[(ord >>> 12) & 63]
+ b64 += typeof a1 !== 'undefined' ? _b64chars[(ord >>> 6) & 63] : '='
+ b64 += typeof a2 !== 'undefined' ? _b64chars[ord & 63] : '='
+ }
+ return rfc4648 ? _mkUriSafe(b64) : b64
+}
+const _btoa: (s: string) => string =
+ typeof btoa === 'function'
+ ? (s: string) => btoa(s)
+ : (s: string) => {
+ if (s.charCodeAt(0) > 255) {
+ throw new RangeError('The string contains invalid characters.')
+ }
+ return fromUint8Array(Uint8Array.from(s, (c: string) => c.charCodeAt(0)))
+ }
+const utob = (src: string): string => unescape(encodeURIComponent(src))
+
+export default function encode(src: string, rfc4648 = false): string {
+ const b64 = _btoa(utob(src))
+ return rfc4648 ? _mkUriSafe(b64) : b64
+}
diff --git a/node_modules/wot-design-uni/components/common/canvasHelper.ts b/node_modules/wot-design-uni/components/common/canvasHelper.ts
new file mode 100644
index 0000000..ee17e14
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/canvasHelper.ts
@@ -0,0 +1,49 @@
+/**
+ * 适配 canvas 2d 上下文
+ * @param ctx canvas 2d 上下文
+ * @returns
+ */
+export function canvas2dAdapter(ctx: CanvasRenderingContext2D): UniApp.CanvasContext {
+ return Object.assign(ctx, {
+ setFillStyle(color: string | CanvasGradient) {
+ ctx.fillStyle = color
+ },
+ setStrokeStyle(color: string | CanvasGradient | CanvasPattern) {
+ ctx.strokeStyle = color
+ },
+ setLineWidth(lineWidth: number) {
+ ctx.lineWidth = lineWidth
+ },
+ setLineCap(lineCap: 'butt' | 'round' | 'square') {
+ ctx.lineCap = lineCap
+ },
+
+ setFontSize(font: string) {
+ ctx.font = font
+ },
+ setGlobalAlpha(alpha: number) {
+ ctx.globalAlpha = alpha
+ },
+ setLineJoin(lineJoin: 'bevel' | 'round' | 'miter') {
+ ctx.lineJoin = lineJoin
+ },
+ setTextAlign(align: 'left' | 'center' | 'right') {
+ ctx.textAlign = align
+ },
+ setMiterLimit(miterLimit: number) {
+ ctx.miterLimit = miterLimit
+ },
+ setShadow(offsetX: number, offsetY: number, blur: number, color: string) {
+ ctx.shadowOffsetX = offsetX
+ ctx.shadowOffsetY = offsetY
+ ctx.shadowBlur = blur
+ ctx.shadowColor = color
+ },
+ setTextBaseline(textBaseline: 'top' | 'bottom' | 'middle') {
+ ctx.textBaseline = textBaseline
+ },
+ createCircularGradient() {},
+ draw() {},
+ addColorStop() {}
+ }) as unknown as UniApp.CanvasContext
+}
diff --git a/node_modules/wot-design-uni/components/common/clickoutside.ts b/node_modules/wot-design-uni/components/common/clickoutside.ts
new file mode 100644
index 0000000..0800afd
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/clickoutside.ts
@@ -0,0 +1,34 @@
+/*
+ * @Author: weisheng
+ * @Date: 2023-07-02 22:51:06
+ * @LastEditTime: 2024-03-16 19:59:07
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/common/clickoutside.ts
+ * 记得注释
+ */
+let queue: any[] = []
+
+export function pushToQueue(comp: any) {
+ queue.push(comp)
+}
+
+export function removeFromQueue(comp: any) {
+ queue = queue.filter((item) => {
+ return item.$.uid !== comp.$.uid
+ })
+}
+
+export function closeOther(comp: any) {
+ queue.forEach((item) => {
+ if (item.$.uid !== comp.$.uid) {
+ item.$.exposed.close()
+ }
+ })
+}
+
+export function closeOutside() {
+ queue.forEach((item) => {
+ item.$.exposed.close()
+ })
+}
diff --git a/node_modules/wot-design-uni/components/common/event.ts b/node_modules/wot-design-uni/components/common/event.ts
new file mode 100644
index 0000000..44a00e4
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/event.ts
@@ -0,0 +1,8 @@
+export const UPDATE_MODEL_EVENT = 'update:modelValue'
+export const CHANGE_EVENT = 'change'
+export const INPUT_EVENT = 'input'
+export const CLICK_EVENT = 'click'
+export const CLOSE_EVENT = 'close'
+export const OPEN_EVENT = 'open'
+export const CONFIRM_EVENT = 'confirm'
+export const CANCEL_EVENT = 'cancel'
diff --git a/node_modules/wot-design-uni/components/common/interceptor.ts b/node_modules/wot-design-uni/components/common/interceptor.ts
new file mode 100644
index 0000000..d573491
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/interceptor.ts
@@ -0,0 +1,43 @@
+import { isPromise } from './util'
+
+function noop() {}
+
+export type Interceptor = (...args: any[]) => Promise | boolean | undefined | void
+
+export function callInterceptor(
+ interceptor: Interceptor | undefined,
+ {
+ args = [],
+ done,
+ canceled,
+ error
+ }: {
+ args?: unknown[]
+ done: () => void
+ canceled?: () => void
+ error?: () => void
+ }
+) {
+ if (interceptor) {
+ // eslint-disable-next-line prefer-spread
+ const returnVal = interceptor.apply(null, args)
+
+ if (isPromise(returnVal)) {
+ returnVal
+ .then((value) => {
+ if (value) {
+ done()
+ } else if (canceled) {
+ canceled()
+ }
+ })
+ .catch(error || noop)
+ } else if (returnVal) {
+ done()
+ } else if (canceled) {
+ canceled()
+ }
+ } else {
+ done()
+ }
+}
diff --git a/node_modules/wot-design-uni/components/common/props.ts b/node_modules/wot-design-uni/components/common/props.ts
new file mode 100644
index 0000000..ebb9dc0
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/props.ts
@@ -0,0 +1,51 @@
+import type { PropType } from 'vue'
+
+export const unknownProp = null as unknown as PropType
+
+export const numericProp = [Number, String]
+
+export const truthProp = {
+ type: Boolean,
+ default: true as const
+}
+
+export const makeRequiredProp = (type: T) => ({
+ type,
+ required: true as const
+})
+
+export const makeArrayProp = () => ({
+ type: Array as PropType,
+ default: () => []
+})
+
+export const makeBooleanProp = (defaultVal: T) => ({
+ type: Boolean,
+ default: defaultVal
+})
+
+export const makeNumberProp = (defaultVal: T) => ({
+ type: Number,
+ default: defaultVal
+})
+
+export const makeNumericProp = (defaultVal: T) => ({
+ type: numericProp,
+ default: defaultVal
+})
+
+export const makeStringProp = (defaultVal: T) => ({
+ type: String as unknown as PropType,
+ default: defaultVal
+})
+
+export const baseProps = {
+ /**
+ * 自定义根节点样式
+ */
+ customStyle: makeStringProp(''),
+ /**
+ * 自定义根节点样式类
+ */
+ customClass: makeStringProp('')
+}
diff --git a/node_modules/wot-design-uni/components/common/util.ts b/node_modules/wot-design-uni/components/common/util.ts
new file mode 100644
index 0000000..6890d24
--- /dev/null
+++ b/node_modules/wot-design-uni/components/common/util.ts
@@ -0,0 +1,836 @@
+import { AbortablePromise } from './AbortablePromise'
+
+type NotUndefined = T extends undefined ? never : T
+
+/**
+ * 生成uuid
+ * @returns string
+ */
+export function uuid() {
+ return s4() + s4() + s4() + s4() + s4() + s4() + s4() + s4()
+}
+
+function s4() {
+ return Math.floor((1 + Math.random()) * 0x10000)
+ .toString(16)
+ .substring(1)
+}
+
+/**
+ * @description 对num自动填充px
+ * @param {Number} num
+ * @return {string} num+px
+ */
+export function addUnit(num: number | string) {
+ return Number.isNaN(Number(num)) ? `${num}` : `${num}px`
+}
+
+/**
+ * @description 判断target是否对象
+ * @param value
+ * @return {boolean}
+ */
+export function isObj(value: any): value is object {
+ return Object.prototype.toString.call(value) === '[object Object]' || typeof value === 'object'
+}
+
+/**
+ * 获取目标原始类型
+ * @param target 任意类型
+ * @returns {string} type 数据类型
+ */
+export function getType(target: unknown): string {
+ // 得到原生类型
+ const typeStr = Object.prototype.toString.call(target)
+ // 拿到类型值
+ const match = typeStr.match(/\[object (\w+)\]/)
+ const type = match && match.length ? match[1].toLowerCase() : ''
+ // 类型值转小写并返回
+ return type
+}
+
+/**
+ * @description 默认的外部格式化函数 - picker 组件
+ * @param items - 要格式化的数据项数组或单个数据项
+ * @param kv - 配置对象,包含 labelKey 作为键值
+ * @returns 格式化后的字符串
+ */
+export const defaultDisplayFormat = function (items: any[] | Record, kv?: { labelKey?: string }): string {
+ const labelKey: string = kv?.labelKey || 'value'
+
+ if (Array.isArray(items)) {
+ return items.map((item) => item[labelKey]).join(', ')
+ } else {
+ return items[labelKey]
+ }
+}
+
+/**
+ * @description 默认函数占位符 - pickerView组件
+ * @param value 值
+ * @return value
+ */
+export const defaultFunction = (value: T): T => value
+
+/**
+ * @description 检查值是否不为空
+ * @param value 值
+ * @return {Boolean} 是否不为空
+ */
+export const isDef = (value: T): value is NonNullable => value !== undefined && value !== null
+
+/**
+ * @description 防止数字小于零
+ * @param {number} num
+ * @param {string} label 标签
+ */
+export const checkNumRange = (num: number, label: string = 'value'): void => {
+ if (num < 0) {
+ throw new Error(`${label} shouldn't be less than zero`)
+ }
+}
+
+/**
+ * @description 防止 pixel 无意义
+ * @param {number} num
+ * @param {string} label 标签
+ */
+export const checkPixelRange = (num: number, label: string = 'value'): void => {
+ if (num <= 0) {
+ throw new Error(`${label} should be greater than zero`)
+ }
+}
+
+/**
+ * 将 RGB 值转换为十六进制颜色代码。
+ * @param {number} r - 红色分量 (0-255)。
+ * @param {number} g - 绿色分量 (0-255)。
+ * @param {number} b - 蓝色分量 (0-255)。
+ * @returns {string} 十六进制颜色代码 (#RRGGBB)。
+ */
+export function rgbToHex(r: number, g: number, b: number): string {
+ // 将 RGB 分量组合成一个十六进制数。
+ const hex = ((r << 16) | (g << 8) | b).toString(16)
+
+ // 使用零填充十六进制数,确保它有 6 位数字(RGB 范围)。
+ const paddedHex = '#' + '0'.repeat(Math.max(0, 6 - hex.length)) + hex
+
+ return paddedHex
+}
+
+/**
+ * 将十六进制颜色代码转换为 RGB 颜色数组。
+ * @param hex 十六进制颜色代码(例如:'#RRGGBB')
+ * @returns 包含红、绿、蓝三个颜色分量的数组
+ */
+export function hexToRgb(hex: string): number[] {
+ const rgb: number[] = []
+
+ // 从第一个字符开始,每两个字符代表一个颜色分量
+ for (let i = 1; i < 7; i += 2) {
+ // 将两个字符的十六进制转换为十进制,并添加到 rgb 数组中
+ rgb.push(parseInt('0x' + hex.slice(i, i + 2), 16))
+ }
+
+ return rgb
+}
+
+/**
+ * 计算渐变色的中间变量数组。
+ * @param {string} startColor 开始颜色
+ * @param {string} endColor 结束颜色
+ * @param {number} step 获取渲染位置,默认为中间位置
+ * @returns {string[]} 渐变色中间颜色变量数组
+ */
+export const gradient = (startColor: string, endColor: string, step: number = 2): string[] => {
+ // 将hex转换为rgb
+ const sColor: number[] = hexToRgb(startColor)
+ const eColor: number[] = hexToRgb(endColor)
+
+ // 计算R\G\B每一步的差值
+ const rStep: number = (eColor[0] - sColor[0]) / step
+ const gStep: number = (eColor[1] - sColor[1]) / step
+ const bStep: number = (eColor[2] - sColor[2]) / step
+
+ const gradientColorArr: string[] = []
+ for (let i = 0; i < step; i++) {
+ // 计算每一步的hex值
+ gradientColorArr.push(
+ rgbToHex(parseInt(String(rStep * i + sColor[0])), parseInt(String(gStep * i + sColor[1])), parseInt(String(bStep * i + sColor[2])))
+ )
+ }
+ return gradientColorArr
+}
+
+/**
+ * 确保数值不超出指定范围。
+ * @param {number} num 要限制范围的数值
+ * @param {number} min 最小范围
+ * @param {number} max 最大范围
+ * @returns {number} 在指定范围内的数值
+ */
+export const range = (num: number, min: number, max: number): number => {
+ // 使用 Math.min 和 Math.max 保证 num 不会超出指定范围
+ return Math.min(Math.max(num, min), max)
+}
+
+/**
+ * 比较两个值是否相等。
+ * @param {any} value1 第一个值
+ * @param {any} value2 第二个值
+ * @returns {boolean} 如果值相等则为 true,否则为 false
+ */
+export const isEqual = (value1: any, value2: any): boolean => {
+ // 使用严格相等运算符比较值是否相等
+ if (value1 === value2) {
+ return true
+ }
+
+ // 如果其中一个值不是数组,则认为值不相等
+ if (!Array.isArray(value1) || !Array.isArray(value2)) {
+ return false
+ }
+
+ // 如果数组长度不相等,则认为值不相等
+ if (value1.length !== value2.length) {
+ return false
+ }
+
+ // 逐个比较数组元素是否相等
+ for (let i = 0; i < value1.length; ++i) {
+ if (value1[i] !== value2[i]) {
+ return false
+ }
+ }
+
+ // 所有比较均通过,则认为值相等
+ return true
+}
+
+/**
+ * 在数字前补零,使其达到指定长度。
+ * @param {number | string} number 要补零的数字
+ * @param {number} length 目标长度,默认为 2
+ * @returns {string} 补零后的结果
+ */
+export const padZero = (number: number | string, length: number = 2): string => {
+ // 将输入转换为字符串
+ let numStr: string = number.toString()
+
+ // 在数字前补零,直到达到指定长度
+ while (numStr.length < length) {
+ numStr = '0' + numStr
+ }
+
+ return numStr
+}
+
+/** @description 全局变量id */
+export const context = {
+ id: 1000
+}
+
+export type RectResultType = T extends true ? UniApp.NodeInfo[] : UniApp.NodeInfo
+
+/**
+ * 获取节点信息
+ * @param selector 节点选择器 #id,.class
+ * @param all 是否返回所有 selector 对应的节点
+ * @param scope 作用域(支付宝小程序无效)
+ * @param useFields 是否使用 fields 方法获取节点信息
+ * @returns 节点信息或节点信息数组
+ */
+export function getRect(selector: string, all: T, scope?: any, useFields?: boolean): Promise> {
+ return new Promise>((resolve, reject) => {
+ let query: UniNamespace.SelectorQuery | null = null
+ if (scope) {
+ query = uni.createSelectorQuery().in(scope)
+ } else {
+ query = uni.createSelectorQuery()
+ }
+
+ const method = all ? 'selectAll' : 'select'
+
+ const callback = (rect: UniApp.NodeInfo | UniApp.NodeInfo[]) => {
+ if (all && isArray(rect) && rect.length > 0) {
+ resolve(rect as RectResultType)
+ } else if (!all && rect) {
+ resolve(rect as RectResultType)
+ } else {
+ reject(new Error('No nodes found'))
+ }
+ }
+
+ if (useFields) {
+ query[method](selector).fields({ size: true, node: true }, callback).exec()
+ } else {
+ query[method](selector).boundingClientRect(callback).exec()
+ }
+ })
+}
+
+/**
+ * 将驼峰命名转换为短横线命名。
+ * @param {string} word 待转换的词条
+ * @returns {string} 转换后的结果
+ */
+export function kebabCase(word: string): string {
+ // 使用正则表达式匹配所有大写字母,并在前面加上短横线,然后转换为小写
+ const newWord: string = word
+ .replace(/[A-Z]/g, function (match) {
+ return '-' + match
+ })
+ .toLowerCase()
+
+ return newWord
+}
+
+/**
+ * 将短横线链接转换为驼峰命名
+ * @param word 需要转换的短横线链接
+ * @returns 转换后的驼峰命名字符串
+ */
+export function camelCase(word: string): string {
+ return word.replace(/-(\w)/g, (_, c) => c.toUpperCase())
+}
+
+/**
+ * 检查给定值是否为数组。
+ * @param {any} value 要检查的值
+ * @returns {boolean} 如果是数组则返回 true,否则返回 false
+ */
+export function isArray(value: any): value is Array {
+ // 如果 Array.isArray 函数可用,直接使用该函数检查
+ if (typeof Array.isArray === 'function') {
+ return Array.isArray(value)
+ }
+ // 否则,使用对象原型的 toString 方法进行检查
+ return Object.prototype.toString.call(value) === '[object Array]'
+}
+
+/**
+ * 检查给定值是否为函数。
+ * @param {any} value 要检查的值
+ * @returns {boolean} 如果是函数则返回 true,否则返回 false
+ */
+// eslint-disable-next-line @typescript-eslint/ban-types
+export function isFunction(value: any): value is T {
+ return getType(value) === 'function' || getType(value) === 'asyncfunction'
+}
+
+/**
+ * 检查给定值是否为字符串。
+ * @param {unknown} value 要检查的值
+ * @returns {value is string} 如果是字符串则返回 true,否则返回 false
+ */
+export function isString(value: unknown): value is string {
+ return getType(value) === 'string'
+}
+
+/**
+ * 否是数值
+ * @param {*} value
+ */
+export function isNumber(value: any): value is number {
+ return getType(value) === 'number'
+}
+
+/**
+ * 检查给定值是否为 Promise 对象。
+ * @param {unknown} value 要检查的值
+ * @returns {value is Promise} 如果是 Promise 对象则返回 true,否则返回 false
+ */
+export function isPromise(value: unknown): value is Promise {
+ // 先将 value 断言为 object 类型
+ if (isObj(value) && isDef(value)) {
+ // 然后进一步检查 value 是否具有 then 和 catch 方法,并且它们是函数类型
+ return isFunction((value as Promise).then) && isFunction((value as Promise).catch)
+ }
+ return false // 如果 value 不是对象类型,则肯定不是 Promise
+}
+
+/**
+ * 检查给定的值是否为布尔类型
+ * @param value 要检查的值
+ * @returns 如果值为布尔类型,则返回true,否则返回false
+ */
+export function isBoolean(value: any): value is boolean {
+ return typeof value === 'boolean'
+}
+
+export function isUndefined(value: any): value is undefined {
+ return typeof value === 'undefined'
+}
+
+export function isNotUndefined(value: T): value is NotUndefined {
+ return !isUndefined(value)
+}
+
+/**
+ * 检查给定的值是否为奇数
+ * @param value 要检查的值
+ * @returns
+ */
+export function isOdd(value: number): boolean {
+ if (typeof value !== 'number') {
+ throw new Error('输入必须为数字')
+ }
+
+ // 使用取模运算符来判断是否为奇数
+ // 如果 number 除以 2 的余数为 1,就是奇数
+ // 否则是偶数
+ return value % 2 === 1
+}
+
+/**
+ * 是否为base64图片
+ * @param {string} url
+ * @return
+ */
+export function isBase64Image(url: string) {
+ // 使用正则表达式检查URL是否以"data:image"开头,这是Base64图片的常见前缀
+ return /^data:image\/(png|jpg|jpeg|gif|bmp);base64,/.test(url)
+}
+
+/**
+ * 将外部传入的样式格式化为可读的 CSS 样式。
+ * @param {object | object[]} styles 外部传入的样式对象或数组
+ * @returns {string} 格式化后的 CSS 样式字符串
+ */
+export function objToStyle(styles: Record | Record[]): string {
+ // 如果 styles 是数组类型
+ if (isArray(styles)) {
+ // 使用过滤函数去除空值和 null 值的元素
+ // 对每个非空元素递归调用 objToStyle,然后通过分号连接
+ const result = styles
+ .filter(function (item) {
+ return item != null && item !== ''
+ })
+ .map(function (item) {
+ return objToStyle(item)
+ })
+ .join(';')
+
+ // 如果结果不为空,确保末尾有分号
+ return result ? (result.endsWith(';') ? result : result + ';') : ''
+ }
+
+ if (isString(styles)) {
+ // 如果是字符串且不为空,确保末尾有分号
+ return styles ? (styles.endsWith(';') ? styles : styles + ';') : ''
+ }
+
+ // 如果 styles 是对象类型
+ if (isObj(styles)) {
+ // 使用 Object.keys 获取所有属性名
+ // 使用过滤函数去除值为 null 或空字符串的属性
+ // 对每个属性名和属性值进行格式化,通过分号连接
+ const result = Object.keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== ''
+ })
+ .map(function (key) {
+ // 使用 kebabCase 函数将属性名转换为 kebab-case 格式
+ // 将属性名和属性值格式化为 CSS 样式的键值对
+ return [kebabCase(key), styles[key]].join(':')
+ })
+ .join(';')
+
+ // 如果结果不为空,确保末尾有分号
+ return result ? (result.endsWith(';') ? result : result + ';') : ''
+ }
+ // 如果 styles 不是对象也不是数组,则直接返回
+ return ''
+}
+
+/**
+ * 判断一个对象是否包含任何字段
+ * @param obj 要检查的对象
+ * @returns {boolean} 如果对象为空(不包含任何字段)则返回 true,否则返回 false
+ */
+export function hasFields(obj: unknown): boolean {
+ // 如果不是对象类型或为 null,则认为没有字段
+ if (!isObj(obj) || obj === null) {
+ return false
+ }
+
+ // 使用 Object.keys 检查对象是否有属性
+ return Object.keys(obj).length > 0
+}
+
+/**
+ * 判断一个对象是否为空对象(不包含任何字段)
+ * @param obj 要检查的对象
+ * @returns {boolean} 如果对象为空(不包含任何字段)则返回 true,否则返回 false
+ */
+export function isEmptyObj(obj: unknown): boolean {
+ return !hasFields(obj)
+}
+
+export const requestAnimationFrame = (cb = () => {}) => {
+ return new AbortablePromise((resolve) => {
+ const timer = setInterval(() => {
+ clearInterval(timer)
+ resolve(true)
+ cb()
+ }, 1000 / 30)
+ })
+}
+
+/**
+ * 暂停指定时间函数
+ * @param ms 延迟时间
+ * @returns
+ */
+export const pause = (ms: number = 1000 / 30) => {
+ return new AbortablePromise((resolve) => {
+ const timer = setTimeout(() => {
+ clearTimeout(timer)
+ resolve(true)
+ }, ms)
+ })
+}
+
+/**
+ * 深拷贝函数,用于将对象进行完整复制。
+ * @param obj 要深拷贝的对象
+ * @param cache 用于缓存已复制的对象,防止循环引用
+ * @returns 深拷贝后的对象副本
+ */
+export function deepClone(obj: T, cache: Map = new Map()): T {
+ // 如果对象为 null 或或者不是对象类型,则直接返回该对象
+ if (obj === null || typeof obj !== 'object') {
+ return obj
+ }
+
+ // 处理特殊对象类型:日期、正则表达式、错误对象
+ if (isDate(obj)) {
+ return new Date(obj.getTime()) as any
+ }
+ if (obj instanceof RegExp) {
+ return new RegExp(obj.source, obj.flags) as any
+ }
+ if (obj instanceof Error) {
+ const errorCopy = new Error(obj.message) as any
+ errorCopy.stack = obj.stack
+ return errorCopy
+ }
+
+ // 检查缓存中是否已存在该对象的复制
+ if (cache.has(obj)) {
+ return cache.get(obj)
+ }
+
+ // 根据原始对象的类型创建对应的空对象或数组
+ const copy: any = Array.isArray(obj) ? [] : {}
+
+ // 将当前对象添加到缓存中
+ cache.set(obj, copy)
+
+ // 递归地深拷贝对象的每个属性
+ for (const key in obj) {
+ if (Object.prototype.hasOwnProperty.call(obj, key)) {
+ copy[key] = deepClone(obj[key], cache)
+ }
+ }
+
+ return copy as T
+}
+
+/**
+ * 深度合并两个对象。
+ * @param target 目标对象,将合并的结果存放在此对象中
+ * @param source 源对象,要合并到目标对象的对象
+ * @returns 合并后的目标对象
+ */
+export function deepMerge>(target: T, source: Record): T {
+ // 深拷贝目标对象,避免修改原始对象
+ target = deepClone(target)
+
+ // 检查目标和源是否都是对象类型
+ if (typeof target !== 'object' || typeof source !== 'object') {
+ throw new Error('Both target and source must be objects.')
+ }
+
+ // 遍历源对象的属性
+ for (const prop in source) {
+ // eslint-disable-next-line no-prototype-builtins
+ if (!source.hasOwnProperty(prop))
+ continue
+ // 使用类型断言,告诉 TypeScript 这是有效的属性
+ ;(target as Record)[prop] = source[prop]
+ }
+
+ return target
+}
+
+/**
+ * 深度合并两个对象。
+ * @param target
+ * @param source
+ * @returns
+ */
+export function deepAssign(target: Record, source: Record): Record {
+ Object.keys(source).forEach((key) => {
+ const targetValue = target[key]
+ const newObjValue = source[key]
+ if (isObj(targetValue) && isObj(newObjValue)) {
+ deepAssign(targetValue, newObjValue)
+ } else {
+ target[key] = newObjValue
+ }
+ })
+ return target
+}
+
+/**
+ * 构建带参数的URL
+ * @param baseUrl 基础URL
+ * @param params 参数对象,键值对表示要添加到URL的参数
+ * @returns 返回带有参数的URL
+ */
+export function buildUrlWithParams(baseUrl: string, params: Record) {
+ // 将参数对象转换为查询字符串
+ const queryString = Object.entries(params)
+ .map(([key, value]) => `${key}=${encodeURIComponent(value)}`)
+ .join('&')
+
+ // 检查基础URL是否已包含查询字符串,并选择适当的分隔符
+ const separator = baseUrl.includes('?') ? '&' : '?'
+
+ // 返回带有参数的URL
+ return `${baseUrl}${separator}${queryString}`
+}
+
+type DebounceOptions = {
+ leading?: boolean // 是否在延迟时间开始时调用函数
+ trailing?: boolean // 是否在延迟时间结束时调用函数
+}
+
+export function debounce any>(func: T, wait: number, options: DebounceOptions = {}): T {
+ let timeoutId: ReturnType | null = null
+ let lastArgs: any[] | undefined
+ let lastThis: any
+ let result: ReturnType | undefined
+ const leading = isDef(options.leading) ? options.leading : false
+ const trailing = isDef(options.trailing) ? options.trailing : true
+
+ function invokeFunc() {
+ if (lastArgs !== undefined) {
+ result = func.apply(lastThis, lastArgs)
+ lastArgs = undefined
+ }
+ }
+
+ function startTimer() {
+ timeoutId = setTimeout(() => {
+ timeoutId = null
+ if (trailing) {
+ invokeFunc()
+ }
+ }, wait)
+ }
+
+ function cancelTimer() {
+ if (timeoutId !== null) {
+ clearTimeout(timeoutId)
+ timeoutId = null
+ }
+ }
+
+ function debounced(this: any, ...args: Parameters): ReturnType | undefined {
+ lastArgs = args
+ lastThis = this
+
+ if (timeoutId === null) {
+ if (leading) {
+ invokeFunc()
+ }
+ startTimer()
+ } else if (trailing) {
+ cancelTimer()
+ startTimer()
+ }
+
+ return result
+ }
+
+ return debounced as T
+}
+
+// eslint-disable-next-line @typescript-eslint/ban-types
+export function throttle(func: Function, wait: number): Function {
+ let timeout: ReturnType | null = null
+ let previous: number = 0
+
+ const throttled = function (this: any, ...args: any[]) {
+ const now = Date.now()
+ const remaining = wait - (now - previous)
+
+ if (remaining <= 0) {
+ if (timeout) {
+ clearTimeout(timeout)
+ timeout = null
+ }
+ previous = now
+ func.apply(this, args)
+ } else if (!timeout) {
+ timeout = setTimeout(() => {
+ previous = Date.now()
+ timeout = null
+ func.apply(this, args)
+ }, remaining)
+ }
+ }
+
+ return throttled
+}
+
+/**
+ * 根据属性路径获取对象中的属性值
+ * @param obj 目标对象
+ * @param path 属性路径,可以是字符串或字符串数组
+ * @returns 属性值,如果属性不存在或中间的属性为 null 或 undefined,则返回 undefined
+ */
+export const getPropByPath = (obj: any, path: string): any => {
+ const keys: string[] = path.split('.')
+
+ try {
+ return keys.reduce((acc: any, key: string) => (acc !== undefined && acc !== null ? acc[key] : undefined), obj)
+ } catch (error) {
+ return undefined
+ }
+}
+
+/**
+ * 检查一个值是否为Date类型
+ * @param val 要检查的值
+ * @returns 如果值是Date类型,则返回true,否则返回false
+ */
+export const isDate = (val: unknown): val is Date => Object.prototype.toString.call(val) === '[object Date]' && !Number.isNaN((val as Date).getTime())
+
+/**
+ * 检查提供的URL是否为视频链接。
+ * @param url 需要检查的URL字符串。
+ * @returns 返回一个布尔值,如果URL是视频链接则为true,否则为false。
+ */
+export function isVideoUrl(url: string): boolean {
+ // 使用正则表达式匹配视频文件类型的URL
+ const videoRegex = /\.(ogm|webm|ogv|asx|m4v|mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|video)(?=$|[?#])/i
+ return videoRegex.test(url)
+}
+
+/**
+ * 检查提供的URL是否为图片URL。
+ * @param url 待检查的URL字符串。
+ * @returns 返回一个布尔值,如果URL是图片格式,则为true;否则为false。
+ */
+export function isImageUrl(url: string): boolean {
+ // 使用正则表达式匹配图片URL
+ const imageRegex = /\.(xbm|tif|pjp|apng|svgz|jpeg|jpg|heif|ico|tiff|heic|pjpeg|avif|gif|png|svg|webp|jfif|bmp|dpg|image)(?=$|[?#])/i
+ return imageRegex.test(url)
+}
+
+/**
+ * 判断环境是否是H5
+ */
+export const isH5 = (() => {
+ let isH5 = false
+ // #ifdef H5
+ isH5 = true
+ // #endif
+ return isH5
+})()
+
+/**
+ * 剔除对象中的某些属性
+ * @param obj
+ * @param predicate
+ * @returns
+ */
+export function omitBy>(obj: O, predicate: (value: any, key: keyof O) => boolean): Partial {
+ const newObj = deepClone(obj)
+ Object.keys(newObj).forEach((key) => predicate(newObj[key], key) && delete newObj[key]) // 遍历对象的键,删除值为不满足predicate的字段
+ return newObj
+}
+
+/**
+ * 缓动函数,用于在动画或过渡效果中根据时间参数计算当前值
+ * @param t 当前时间,通常是从动画开始经过的时间
+ * @param b 初始值,动画属性的初始值
+ * @param c 变化量,动画属性的目标值与初始值的差值
+ * @param d 持续时间,动画持续的总时间长度
+ * @returns 计算出的当前值
+ */
+export function easingFn(t: number = 0, b: number = 0, c: number = 0, d: number = 0): number {
+ return (c * (-Math.pow(2, (-10 * t) / d) + 1) * 1024) / 1023 + b
+}
+
+/**
+ * 从数组中寻找最接近目标值的元素
+ *
+ * @param arr 数组
+ * @param target 目标值
+ * @returns 最接近目标值的元素
+ */
+export function closest(arr: number[], target: number) {
+ return arr.reduce((prev, curr) => (Math.abs(curr - target) < Math.abs(prev - target) ? curr : prev))
+}
+
+/**
+ * 系统信息接口,包含项目中实际使用的字段
+ */
+export interface SystemInfo {
+ /** 窗口宽度 */
+ windowWidth: number
+ /** 窗口高度 */
+ windowHeight: number
+ /** 窗口顶部位置 */
+ windowTop: number
+ /** 设备像素比 */
+ pixelRatio: number
+ /** 平台信息 */
+ platform: string
+ /** 主题模式 */
+ theme?: string
+ /** 状态栏高度 */
+ statusBarHeight?: number
+ /** 安全区域信息 */
+ safeArea?: UniApp.SafeArea
+ /** 屏幕高度 */
+ screenHeight: number
+ /** 安全区域插入信息 */
+ safeAreaInsets?: UniApp.SafeAreaInsets
+ // 未尽字段
+ [key: string]: any
+}
+
+/**
+ * 兼容微信小程序端获取系统信息的方法
+ * 在微信小程序端使用新的API替代getSystemInfoSync,在其他端仍然使用getSystemInfoSync
+ * @returns 系统信息对象
+ */
+export function getSystemInfo(): SystemInfo {
+ let systemInfo: SystemInfo
+ // #ifdef MP-WEIXIN
+ try {
+ // const systemSetting = uni.getSystemSetting() // 暂时不需要
+ const deviceInfo = uni.getDeviceInfo()
+ const windowInfo = uni.getWindowInfo()
+ const appBaseInfo = uni.getAppBaseInfo()
+ systemInfo = {
+ ...deviceInfo,
+ ...windowInfo,
+ ...appBaseInfo
+ }
+ } catch (error) {
+ console.warn('获取系统信息失败,降级使用uni.getSystemInfoSync:', error)
+ // 降级处理,使用原来的方法
+ systemInfo = uni.getSystemInfoSync()
+ }
+ // #endif
+ // #ifndef MP-WEIXIN
+ systemInfo = uni.getSystemInfoSync()
+ // #endif
+ return systemInfo
+}
diff --git a/node_modules/wot-design-uni/components/composables/index.ts b/node_modules/wot-design-uni/components/composables/index.ts
new file mode 100644
index 0000000..87cd468
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/index.ts
@@ -0,0 +1,12 @@
+export { useCell } from './useCell'
+export { useChildren, flattenVNodes, sortChildren } from './useChildren'
+export { useCountDown } from './useCountDown'
+export { useLockScroll } from './useLockScroll'
+export { useParent } from './useParent'
+export { usePopover } from './usePopover'
+export { useQueue } from './useQueue'
+export { useRaf } from './useRaf'
+export { useTouch } from './useTouch'
+export { useTranslate } from './useTranslate'
+export { useUpload } from './useUpload'
+export { useConfigProvider } from './useConfigProvider'
diff --git a/node_modules/wot-design-uni/components/composables/useCell.ts b/node_modules/wot-design-uni/components/composables/useCell.ts
new file mode 100644
index 0000000..d245312
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useCell.ts
@@ -0,0 +1,13 @@
+import { computed } from 'vue'
+import { useParent } from './useParent'
+import { CELL_GROUP_KEY } from '../wd-cell-group/types'
+
+export function useCell() {
+ const { parent: cellGroup, index } = useParent(CELL_GROUP_KEY)
+
+ const border = computed(() => {
+ return cellGroup && cellGroup.props.border && index.value
+ })
+
+ return { border }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useChildren.ts b/node_modules/wot-design-uni/components/composables/useChildren.ts
new file mode 100644
index 0000000..9e7843f
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useChildren.ts
@@ -0,0 +1,114 @@
+import {
+ provide,
+ reactive,
+ getCurrentInstance,
+ type VNode,
+ type InjectionKey,
+ type VNodeNormalizedChildren,
+ type ComponentPublicInstance,
+ type ComponentInternalInstance
+} from 'vue'
+
+// 小程序端不支持从vue导出的isVNode方法,参考uni-mp-vue的实现
+function isVNode(value: any): value is VNode {
+ return value ? value.__v_isVNode === true : false
+}
+
+export function flattenVNodes(children: VNode) {
+ const result: VNode[] = []
+
+ const traverse = (children: VNode | VNodeNormalizedChildren) => {
+ const vNode = Array.isArray(children) ? children : [children]
+ vNode.forEach((child) => {
+ if (Array.isArray(child)) {
+ traverse(child)
+ } else if (isVNode(child) && child.component?.subTree) {
+ result.push(child)
+ traverse(child.component.subTree)
+ } else if (isVNode(child) && Array.isArray(child.children)) {
+ traverse(child.children)
+ } else if (isVNode(child)) {
+ result.push(child)
+ }
+ })
+ }
+
+ traverse(children)
+
+ return result
+}
+
+const findVNodeIndex = (vnodes: VNode[], vnode: VNode) => {
+ const index = vnodes.indexOf(vnode)
+ if (index === -1) {
+ return vnodes.findIndex((item) => vnode.key !== undefined && vnode.key !== null && item.type === vnode.type && item.key === vnode.key)
+ }
+ return index
+}
+
+// sort children instances by vnodes order
+export function sortChildren(
+ parent: ComponentInternalInstance,
+ publicChildren: ComponentPublicInstance[],
+ internalChildren: ComponentInternalInstance[]
+) {
+ const vnodes = parent && parent.subTree && parent.subTree.children ? flattenVNodes(parent.subTree) : []
+ internalChildren.sort((a, b) => findVNodeIndex(vnodes, a.vnode) - findVNodeIndex(vnodes, b.vnode))
+
+ const orderedPublicChildren = internalChildren.map((item) => item.proxy!)
+
+ publicChildren.sort((a, b) => {
+ const getIndex = (comp: ComponentPublicInstance) => {
+ const uid = comp.$.uid
+ return orderedPublicChildren.findIndex((i) => i.$.uid === uid)
+ }
+
+ const indexA = getIndex(a)
+ const indexB = getIndex(b)
+ return indexA - indexB
+ })
+}
+
+export function useChildren<
+ // eslint-disable-next-line
+ Child extends ComponentPublicInstance = ComponentPublicInstance<{}, any>,
+ ProvideValue = never
+>(key: InjectionKey) {
+ const publicChildren: Child[] = reactive([])
+ const internalChildren: ComponentInternalInstance[] = reactive([])
+ const parent = getCurrentInstance()!
+
+ const linkChildren = (value?: ProvideValue) => {
+ const link = (child: ComponentInternalInstance) => {
+ if (child.proxy) {
+ internalChildren.push(child)
+ publicChildren.push(child.proxy as Child)
+ sortChildren(parent, publicChildren, internalChildren)
+ }
+ }
+
+ const unlink = (child: ComponentInternalInstance) => {
+ const index = internalChildren.indexOf(child)
+ publicChildren.splice(index, 1)
+ internalChildren.splice(index, 1)
+ }
+
+ provide(
+ key,
+ Object.assign(
+ {
+ link,
+ unlink,
+ children: publicChildren,
+ internalChildren
+ },
+ value
+ )
+ )
+ }
+
+ return {
+ children: publicChildren,
+ linkChildren
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useConfigProvider.ts b/node_modules/wot-design-uni/components/composables/useConfigProvider.ts
new file mode 100644
index 0000000..61bb6bd
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useConfigProvider.ts
@@ -0,0 +1,31 @@
+import { computed, provide, unref, type Ref } from 'vue'
+import { type ConfigProviderThemeVars } from '../wd-config-provider/types'
+import { objToStyle } from '../common/util'
+
+export const USE_CONFIG_PROVIDER_KEY = '__CONFIG_PROVIDER__'
+
+export const kebabCase = (str: string): string => {
+ str = str.replace(str.charAt(0), str.charAt(0).toLocaleLowerCase())
+ return str.replace(/([a-z])([A-Z])/g, (_, p1, p2) => p1 + '-' + p2.toLowerCase())
+}
+
+export const mapThemeVarsToCSSVars = (themeVars: Record) => {
+ if (!themeVars) return
+ const cssVars: Record = {}
+ Object.keys(themeVars).forEach((key) => {
+ cssVars[`--wot-${kebabCase(key)}`] = themeVars[key]
+ })
+
+ return cssVars
+}
+
+export function useConfigProvider({ themeVars }: { themeVars: ConfigProviderThemeVars | Ref }) {
+ const themeStyle = computed(() => {
+ const styleObj = mapThemeVarsToCSSVars(unref(themeVars))
+ return styleObj ? `${objToStyle(styleObj)}` : ''
+ })
+
+ provide(USE_CONFIG_PROVIDER_KEY, {
+ themeStyle
+ })
+}
diff --git a/node_modules/wot-design-uni/components/composables/useCountDown.ts b/node_modules/wot-design-uni/components/composables/useCountDown.ts
new file mode 100644
index 0000000..50746e4
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useCountDown.ts
@@ -0,0 +1,138 @@
+import { ref, computed, onBeforeUnmount } from 'vue'
+import { isDef } from '../common/util'
+import { useRaf } from './useRaf'
+
+// 定义倒计时时间的数据结构
+export type CurrentTime = {
+ days: number
+ hours: number
+ total: number
+ minutes: number
+ seconds: number
+ milliseconds: number
+}
+
+// 定义倒计时的配置项
+export type UseCountDownOptions = {
+ time: number // 倒计时总时间,单位为毫秒
+ millisecond?: boolean // 是否开启毫秒级倒计时,默认为 false
+ onChange?: (current: CurrentTime) => void // 倒计时每次变化时的回调函数
+ onFinish?: () => void // 倒计时结束时的回调函数
+}
+
+// 定义常量
+const SECOND = 1000
+const MINUTE = 60 * SECOND
+const HOUR = 60 * MINUTE
+const DAY = 24 * HOUR
+
+// 将时间转换为倒计时数据结构
+function parseTime(time: number): CurrentTime {
+ const days = Math.floor(time / DAY)
+ const hours = Math.floor((time % DAY) / HOUR)
+ const minutes = Math.floor((time % HOUR) / MINUTE)
+ const seconds = Math.floor((time % MINUTE) / SECOND)
+ const milliseconds = Math.floor(time % SECOND)
+
+ return {
+ total: time,
+ days,
+ hours,
+ minutes,
+ seconds,
+ milliseconds
+ }
+}
+
+// 判断两个时间是否在同一秒内
+function isSameSecond(time1: number, time2: number): boolean {
+ return Math.floor(time1 / 1000) === Math.floor(time2 / 1000)
+}
+
+// 定义 useCountDown 函数
+export function useCountDown(options: UseCountDownOptions) {
+ let endTime: number // 结束时间
+ let counting: boolean // 是否计时中
+
+ const { start: startRaf, cancel: cancelRaf } = useRaf(tick)
+
+ const remain = ref(options.time) // 剩余时间
+ const current = computed(() => parseTime(remain.value)) // 当前倒计时数据
+
+ // 暂停倒计时
+ const pause = () => {
+ counting = false
+ cancelRaf()
+ }
+
+ // 获取当前剩余时间
+ const getCurrentRemain = () => Math.max(endTime - Date.now(), 0)
+
+ // 设置剩余时间
+ const setRemain = (value: number) => {
+ remain.value = value
+ isDef(options.onChange) && options.onChange(current.value)
+ if (value === 0) {
+ pause()
+ isDef(options.onFinish) && options.onFinish()
+ }
+ }
+
+ // 每毫秒更新一次倒计时
+ const microTick = () => {
+ if (counting) {
+ setRemain(getCurrentRemain())
+ if (remain.value > 0) {
+ startRaf()
+ }
+ }
+ }
+
+ // 每秒更新一次倒计时
+ const macroTick = () => {
+ if (counting) {
+ const remainRemain = getCurrentRemain()
+ if (!isSameSecond(remainRemain, remain.value) || remainRemain === 0) {
+ setRemain(remainRemain)
+ }
+
+ if (remain.value > 0) {
+ startRaf()
+ }
+ }
+ }
+
+ // 根据配置项选择更新方式
+ function tick() {
+ if (options.millisecond) {
+ microTick()
+ } else {
+ macroTick()
+ }
+ }
+
+ // 开始倒计时
+ const start = () => {
+ if (!counting) {
+ endTime = Date.now() + remain.value
+ counting = true
+ startRaf()
+ }
+ }
+
+ // 重置倒计时
+ const reset = (totalTime: number = options.time) => {
+ pause()
+ remain.value = totalTime
+ }
+
+ // 在组件卸载前暂停倒计时
+ onBeforeUnmount(pause)
+
+ return {
+ start,
+ pause,
+ reset,
+ current
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useLockScroll.ts b/node_modules/wot-design-uni/components/composables/useLockScroll.ts
new file mode 100644
index 0000000..89b3203
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useLockScroll.ts
@@ -0,0 +1,37 @@
+import { onBeforeUnmount, onDeactivated, ref, watch } from 'vue'
+
+export function useLockScroll(shouldLock: () => boolean) {
+ const scrollLockCount = ref(0)
+
+ const lock = () => {
+ if (scrollLockCount.value === 0) {
+ document.getElementsByTagName('body')[0].style.overflow = 'hidden'
+ }
+ scrollLockCount.value++
+ }
+
+ const unlock = () => {
+ if (scrollLockCount.value > 0) {
+ scrollLockCount.value--
+ if (scrollLockCount.value === 0) {
+ document.getElementsByTagName('body')[0].style.overflow = ''
+ }
+ }
+ }
+
+ const destroy = () => {
+ shouldLock() && unlock()
+ }
+
+ watch(shouldLock, (value) => {
+ value ? lock() : unlock()
+ })
+
+ onDeactivated(destroy)
+ onBeforeUnmount(destroy)
+
+ return {
+ lock,
+ unlock
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useParent.ts b/node_modules/wot-design-uni/components/composables/useParent.ts
new file mode 100644
index 0000000..f48fea9
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useParent.ts
@@ -0,0 +1,41 @@
+import {
+ ref,
+ inject,
+ computed,
+ onUnmounted,
+ type InjectionKey,
+ getCurrentInstance,
+ type ComponentPublicInstance,
+ type ComponentInternalInstance
+} from 'vue'
+
+type ParentProvide = T & {
+ link(child: ComponentInternalInstance): void
+ unlink(child: ComponentInternalInstance): void
+ children: ComponentPublicInstance[]
+ internalChildren: ComponentInternalInstance[]
+}
+
+export function useParent(key: InjectionKey>) {
+ const parent = inject(key, null)
+
+ if (parent) {
+ const instance = getCurrentInstance()!
+ const { link, unlink, internalChildren } = parent
+
+ link(instance)
+ onUnmounted(() => unlink(instance))
+
+ const index = computed(() => internalChildren.indexOf(instance))
+
+ return {
+ parent,
+ index
+ }
+ }
+
+ return {
+ parent: null,
+ index: ref(-1)
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/usePopover.ts b/node_modules/wot-design-uni/components/composables/usePopover.ts
new file mode 100644
index 0000000..1c61641
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/usePopover.ts
@@ -0,0 +1,176 @@
+import { getCurrentInstance, ref } from 'vue'
+import { getRect, isObj } from '../common/util'
+
+export function usePopover(visibleArrow = true) {
+ const { proxy } = getCurrentInstance() as any
+ const popStyle = ref('')
+ const arrowStyle = ref('')
+ const showStyle = ref('')
+ const arrowClass = ref('')
+ const popWidth = ref(0)
+ const popHeight = ref(0)
+ const left = ref(0)
+ const bottom = ref(0)
+ const width = ref(0)
+ const height = ref(0)
+ const top = ref(0)
+
+ function noop() {}
+
+ function init(
+ placement:
+ | 'top'
+ | 'top-start'
+ | 'top-end'
+ | 'bottom'
+ | 'bottom-start'
+ | 'bottom-end'
+ | 'left'
+ | 'left-start'
+ | 'left-end'
+ | 'right'
+ | 'right-start'
+ | 'right-end',
+ visibleArrow: boolean,
+ selector: string
+ ) {
+ // 初始化 class
+ if (visibleArrow) {
+ const arrowClassArr = [
+ `wd-${selector}__arrow`,
+ placement === 'bottom' || placement === 'bottom-start' || placement === 'bottom-end' ? `wd-${selector}__arrow-up` : '',
+ placement === 'left' || placement === 'left-start' || placement === 'left-end' ? `wd-${selector}__arrow-right` : '',
+ placement === 'right' || placement === 'right-start' || placement === 'right-end' ? `wd-${selector}__arrow-left` : '',
+ placement === 'top' || placement === 'top-start' || placement === 'top-end' ? `wd-${selector}__arrow-down` : ''
+ ]
+ arrowClass.value = arrowClassArr.join(' ')
+ }
+
+ // 初始化数据获取
+ getRect('#target', false, proxy).then((rect) => {
+ if (!rect) return
+ left.value = rect.left as number
+ bottom.value = rect.bottom as number
+ width.value = rect.width as number
+ height.value = rect.height as number
+ top.value = rect.top as number
+ })
+ // 用透明度可在初始化时获取到pop尺寸
+ getRect('#pos', false, proxy).then((rect) => {
+ if (!rect) return
+ popWidth.value = rect.width as number
+ popHeight.value = rect.height as number
+ })
+ }
+
+ function control(
+ placement:
+ | 'top'
+ | 'top-start'
+ | 'top-end'
+ | 'bottom'
+ | 'bottom-start'
+ | 'bottom-end'
+ | 'left'
+ | 'left-start'
+ | 'left-end'
+ | 'right'
+ | 'right-start'
+ | 'right-end',
+ offset: number | number[] | Record<'x' | 'y', number>
+ ) {
+ // arrow size
+ const arrowSize = visibleArrow ? 9 : 0
+ // 上下位(纵轴)对应的距离左边的距离
+ const verticalX = width.value / 2
+ // 上下位(纵轴)对应的距离底部的距离
+ const verticalY = arrowSize + height.value + 5
+ // 左右位(横轴)对应的距离左边的距离
+ const horizontalX = width.value + arrowSize + 5
+ // 左右位(横轴)对应的距离底部的距离
+ const horizontalY = height.value / 2
+
+ let offsetX = 0
+ let offsetY = 0
+ if (Array.isArray(offset)) {
+ offsetX = (verticalX - 17 > 0 ? 0 : verticalX - 25) + offset[0]
+ offsetY = (horizontalY - 17 > 0 ? 0 : horizontalY - 25) + (offset[1] ? offset[1] : offset[0])
+ } else if (isObj(offset)) {
+ offsetX = (verticalX - 17 > 0 ? 0 : verticalX - 25) + offset.x
+ offsetY = (horizontalY - 17 > 0 ? 0 : horizontalY - 25) + offset.y
+ } else {
+ offsetX = (verticalX - 17 > 0 ? 0 : verticalX - 25) + offset
+ offsetY = (horizontalY - 17 > 0 ? 0 : horizontalY - 25) + offset
+ }
+ // const offsetX = (verticalX - 17 > 0 ? 0 : verticalX - 25) + offset
+ // const offsetY = (horizontalY - 17 > 0 ? 0 : horizontalY - 25) + offset
+
+ const placements = new Map([
+ // 上
+ ['top', [`left: ${verticalX}px; bottom: ${verticalY}px; transform: translateX(-50%);`, 'left: 50%;']],
+ [
+ 'top-start',
+ [
+ `left: ${offsetX}px; bottom: ${verticalY}px;`,
+ `left: ${(popWidth.value >= width.value ? width.value / 2 : popWidth.value - 25) - offsetX}px;`
+ ]
+ ],
+ [
+ 'top-end',
+ [
+ `right: ${offsetX}px; bottom: ${verticalY}px;`,
+ `right: ${(popWidth.value >= width.value ? width.value / 2 : popWidth.value - 25) - offsetX}px; transform: translateX(50%);`
+ ]
+ ],
+ // 下
+ ['bottom', [`left: ${verticalX}px; top: ${verticalY}px; transform: translateX(-50%);`, 'left: 50%;']],
+ [
+ 'bottom-start',
+ [`left: ${offsetX}px; top: ${verticalY}px;`, `left: ${(popWidth.value >= width.value ? width.value / 2 : popWidth.value - 25) - offsetX}px;`]
+ ],
+ [
+ 'bottom-end',
+ [
+ `right: ${offsetX}px; top: ${verticalY}px;`,
+ `right: ${(popWidth.value >= width.value ? width.value / 2 : popWidth.value - 25) - offsetX}px; transform: translateX(50%);`
+ ]
+ ],
+ // 左
+ ['left', [`right: ${horizontalX}px; top: ${horizontalY}px; transform: translateY(-50%);`, 'top: 50%']],
+ [
+ 'left-start',
+ [
+ `right: ${horizontalX}px; top: ${offsetY}px;`,
+ `top: ${(popHeight.value >= height.value ? height.value / 2 : popHeight.value - 20) - offsetY}px;`
+ ]
+ ],
+ [
+ 'left-end',
+ [
+ `right: ${horizontalX}px; bottom: ${offsetY}px;`,
+ `bottom: ${(popHeight.value >= height.value ? height.value / 2 : popHeight.value - 20) - offsetY}px; transform: translateY(50%);`
+ ]
+ ],
+ // 右
+ ['right', [`left: ${horizontalX}px; top: ${horizontalY}px; transform: translateY(-50%);`, 'top: 50%']],
+ [
+ 'right-start',
+ [
+ `left: ${horizontalX}px; top: ${offsetY}px;`,
+ `top: ${(popHeight.value >= height.value ? height.value / 2 : popHeight.value - 20) - offsetY}px;`
+ ]
+ ],
+ [
+ 'right-end',
+ [
+ `left: ${horizontalX}px; bottom: ${offsetY}px;`,
+ `bottom: ${(popHeight.value >= height.value ? height.value / 2 : popHeight.value - 20) - offsetY}px; transform: translateY(50%);`
+ ]
+ ]
+ ])
+ popStyle.value = placements.get(placement)![0]
+ arrowStyle.value = placements.get(placement)![1]
+ }
+
+ return { popStyle, arrowStyle, showStyle, arrowClass, init, control, noop }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useQueue.ts b/node_modules/wot-design-uni/components/composables/useQueue.ts
new file mode 100644
index 0000000..80021b3
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useQueue.ts
@@ -0,0 +1,52 @@
+import { type Ref, provide, ref } from 'vue'
+
+export const queueKey = '__QUEUE_KEY__'
+
+export interface Queue {
+ queue: Ref
+ pushToQueue: (comp: any) => void
+ removeFromQueue: (comp: any) => void
+ closeOther: (comp: any) => void
+ closeOutside: () => void
+}
+
+export function useQueue() {
+ const queue = ref([])
+
+ function pushToQueue(comp: any) {
+ queue.value.push(comp)
+ }
+
+ function removeFromQueue(comp: any) {
+ queue.value = queue.value.filter((item) => {
+ return item.$.uid !== comp.$.uid
+ })
+ }
+
+ function closeOther(comp: any) {
+ queue.value.forEach((item) => {
+ if (item.$.uid !== comp.$.uid) {
+ item.$.exposed.close()
+ }
+ })
+ }
+
+ function closeOutside() {
+ queue.value.forEach((item) => {
+ item.$.exposed.close()
+ })
+ }
+
+ provide(queueKey, {
+ queue,
+ pushToQueue,
+ removeFromQueue,
+ closeOther,
+ closeOutside
+ })
+
+ return {
+ closeOther,
+ closeOutside
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useRaf.ts b/node_modules/wot-design-uni/components/composables/useRaf.ts
new file mode 100644
index 0000000..b52c4d8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useRaf.ts
@@ -0,0 +1,37 @@
+import { ref, onUnmounted } from 'vue'
+import { isDef, isH5, isNumber } from '../common/util'
+
+// 定义回调函数类型
+type RafCallback = (time: number) => void
+
+export function useRaf(callback: RafCallback) {
+ const requestRef = ref>(null)
+
+ // 启动动画帧
+ const start = () => {
+ const handle = (time: number) => {
+ callback(time)
+ }
+
+ if (isH5) {
+ requestRef.value = requestAnimationFrame(handle)
+ } else {
+ requestRef.value = setTimeout(() => handle(Date.now()), 1000 / 30)
+ }
+ }
+
+ // 取消动画帧
+ const cancel = () => {
+ if (isH5 && isNumber(requestRef.value)) {
+ cancelAnimationFrame(requestRef.value!)
+ } else if (isDef(requestRef.value)) {
+ clearTimeout(requestRef.value)
+ }
+ }
+
+ onUnmounted(() => {
+ cancel()
+ })
+
+ return { start, cancel }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useTouch.ts b/node_modules/wot-design-uni/components/composables/useTouch.ts
new file mode 100644
index 0000000..c3e9b37
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useTouch.ts
@@ -0,0 +1,43 @@
+import { ref } from 'vue'
+
+export function useTouch() {
+ const direction = ref('')
+ const deltaX = ref(0)
+ const deltaY = ref(0)
+ const offsetX = ref(0)
+ const offsetY = ref(0)
+ const startX = ref(0)
+ const startY = ref(0)
+
+ function touchStart(event: any) {
+ const touch = event.touches[0]
+ direction.value = ''
+ deltaX.value = 0
+ deltaY.value = 0
+ offsetX.value = 0
+ offsetY.value = 0
+ startX.value = touch.clientX
+ startY.value = touch.clientY
+ }
+
+ function touchMove(event: any) {
+ const touch = event.touches[0]
+ deltaX.value = touch.clientX - startX.value
+ deltaY.value = touch.clientY - startY.value
+ offsetX.value = Math.abs(deltaX.value)
+ offsetY.value = Math.abs(deltaY.value)
+ direction.value = offsetX.value > offsetY.value ? 'horizontal' : offsetX.value < offsetY.value ? 'vertical' : ''
+ }
+
+ return {
+ touchStart,
+ touchMove,
+ direction,
+ deltaX,
+ deltaY,
+ offsetX,
+ offsetY,
+ startX,
+ startY
+ }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useTranslate.ts b/node_modules/wot-design-uni/components/composables/useTranslate.ts
new file mode 100644
index 0000000..79aa795
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useTranslate.ts
@@ -0,0 +1,12 @@
+import { camelCase, getPropByPath, isDef, isFunction } from '../common/util'
+import Locale from '../../locale'
+
+export const useTranslate = (name?: string) => {
+ const prefix = name ? camelCase(name) + '.' : ''
+ const translate = (key: string, ...args: unknown[]) => {
+ const currentMessages = Locale.messages()
+ const message = getPropByPath(currentMessages, prefix + key)
+ return isFunction(message) ? message(...args) : isDef(message) ? message : `${prefix}${key}`
+ }
+ return { translate }
+}
diff --git a/node_modules/wot-design-uni/components/composables/useUpload.ts b/node_modules/wot-design-uni/components/composables/useUpload.ts
new file mode 100644
index 0000000..87cf54b
--- /dev/null
+++ b/node_modules/wot-design-uni/components/composables/useUpload.ts
@@ -0,0 +1,364 @@
+import { isArray, isDef, isFunction } from '../common/util'
+import type { ChooseFile, ChooseFileOption, UploadFileItem, UploadMethod, UploadStatusType } from '../wd-upload/types'
+
+export const UPLOAD_STATUS: Record = {
+ PENDING: 'pending',
+ LOADING: 'loading',
+ SUCCESS: 'success',
+ FAIL: 'fail'
+}
+
+export interface UseUploadReturn {
+ // 开始上传文件
+ startUpload: (file: UploadFileItem, options: UseUploadOptions) => UniApp.UploadTask | void | Promise
+ // 中断上传
+ abort: (task?: UniApp.UploadTask) => void
+ // 上传状态常量
+ UPLOAD_STATUS: Record
+ // 选择文件
+ chooseFile: (options: ChooseFileOption) => Promise
+}
+
+export interface UseUploadOptions {
+ // 上传地址
+ action: string
+ // 请求头
+ header?: Record
+ // 文件对应的 key
+ name?: string
+ // 其它表单数据
+ formData?: Record
+ // 文件类型 仅支付宝支持且在支付宝平台必填
+ fileType?: 'image' | 'video' | 'audio'
+ // 成功状态码
+ statusCode?: number
+ // 文件状态的key
+ statusKey?: string
+ // 自定义上传方法
+ uploadMethod?: UploadMethod
+ // 上传成功回调
+ onSuccess?: (res: UniApp.UploadFileSuccessCallbackResult, file: UploadFileItem, formData: Record) => void
+ // 上传失败回调
+ onError?: (res: UniApp.GeneralCallbackResult, file: UploadFileItem, formData: Record) => void
+ // 上传进度回调
+ onProgress?: (res: UniApp.OnProgressUpdateResult, file: UploadFileItem) => void
+ // 是否自动中断之前的上传任务
+ abortPrevious?: boolean
+ // 根据文件拓展名过滤(H5支持全部类型过滤,微信小程序支持all和file时过滤,其余平台不支持)
+ extension?: string[]
+}
+
+export function useUpload(): UseUploadReturn {
+ let currentTask: UniApp.UploadTask | null = null
+
+ // 中断上传
+ const abort = (task?: UniApp.UploadTask) => {
+ if (task) {
+ task.abort()
+ } else if (currentTask) {
+ currentTask.abort()
+ currentTask = null
+ }
+ }
+
+ /**
+ * 默认上传方法
+ */
+ const defaultUpload: UploadMethod = (file, formData, options) => {
+ // 如果配置了自动中断,则中断之前的上传任务
+ if (options.abortPrevious) {
+ abort()
+ }
+
+ const uploadTask = uni.uploadFile({
+ url: options.action,
+ header: options.header,
+ name: options.name,
+ fileName: options.name,
+ fileType: options.fileType,
+ formData,
+ filePath: file.url,
+ success(res) {
+ if (res.statusCode === options.statusCode) {
+ // 上传成功
+ options.onSuccess(res, file, formData)
+ } else {
+ // 上传失败
+ options.onError({ ...res, errMsg: res.errMsg || '' }, file, formData)
+ }
+ },
+ fail(err) {
+ // 上传失败
+ options.onError(err, file, formData)
+ }
+ })
+
+ currentTask = uploadTask
+
+ // 获取当前文件加载的百分比
+ uploadTask.onProgressUpdate((res) => {
+ options.onProgress(res, file)
+ })
+
+ // 返回上传任务实例,让外部可以控制上传过程
+ return uploadTask
+ }
+
+ /**
+ * 开始上传文件
+ */
+ const startUpload = (file: UploadFileItem, options: UseUploadOptions) => {
+ const {
+ uploadMethod,
+ formData = {},
+ action,
+ name = 'file',
+ header = {},
+ fileType = 'image',
+ statusCode = 200,
+ statusKey = 'status',
+ abortPrevious = false
+ } = options
+
+ // 设置上传中状态
+ file[statusKey] = UPLOAD_STATUS.LOADING
+
+ const uploadOptions = {
+ action,
+ header,
+ name,
+ fileName: name,
+ fileType,
+ statusCode,
+ abortPrevious,
+ onSuccess: (res: UniApp.UploadFileSuccessCallbackResult, file: UploadFileItem, formData: Record) => {
+ // 更新文件状态
+ file[statusKey] = UPLOAD_STATUS.SUCCESS
+ currentTask = null
+ options.onSuccess?.(res, file, formData)
+ },
+ onError: (error: UniApp.GeneralCallbackResult, file: UploadFileItem, formData: Record) => {
+ // 更新文件状态和错误信息
+ file[statusKey] = UPLOAD_STATUS.FAIL
+ file.error = error.errMsg
+ currentTask = null
+ options.onError?.(error, file, formData)
+ },
+ onProgress: (res: UniApp.OnProgressUpdateResult, file: UploadFileItem) => {
+ // 更新上传进度
+ file.percent = res.progress
+ options.onProgress?.(res, file)
+ }
+ }
+
+ // 返回上传任务实例,支持外部获取uploadTask进行操作
+ if (isFunction(uploadMethod)) {
+ return uploadMethod(file, formData, uploadOptions)
+ } else {
+ return defaultUpload(file, formData, uploadOptions)
+ }
+ }
+
+ /**
+ * 格式化图片信息
+ */
+ function formatImage(res: UniApp.ChooseImageSuccessCallbackResult): ChooseFile[] {
+ // #ifdef MP-DINGTALK
+ // 钉钉文件在files中
+ res.tempFiles = isDef((res as any).files) ? (res as any).files : res.tempFiles
+ // #endif
+ if (isArray(res.tempFiles)) {
+ return res.tempFiles.map((item: any) => ({
+ path: item.path || '',
+ name: item.name || '',
+ size: item.size,
+ type: 'image',
+ thumb: item.path || ''
+ }))
+ }
+ return [
+ {
+ path: (res.tempFiles as any).path || '',
+ name: (res.tempFiles as any).name || '',
+ size: (res.tempFiles as any).size,
+ type: 'image',
+ thumb: (res.tempFiles as any).path || ''
+ }
+ ]
+ }
+
+ /**
+ * 格式化视频信息
+ */
+ function formatVideo(res: UniApp.ChooseVideoSuccess): ChooseFile[] {
+ return [
+ {
+ path: res.tempFilePath || (res as any).filePath || '',
+ name: res.name || '',
+ size: res.size,
+ type: 'video',
+ thumb: (res as any).thumbTempFilePath || '',
+ duration: res.duration
+ }
+ ]
+ }
+
+ /**
+ * 格式化媒体信息
+ */
+ function formatMedia(res: UniApp.ChooseMediaSuccessCallbackResult): ChooseFile[] {
+ return res.tempFiles.map((item) => ({
+ type: item.fileType,
+ path: item.tempFilePath,
+ thumb: item.fileType === 'video' ? item.thumbTempFilePath : item.tempFilePath,
+ size: item.size,
+ duration: item.duration
+ }))
+ }
+
+ /**
+ * 选择文件
+ */
+ function chooseFile({
+ multiple,
+ sizeType,
+ sourceType,
+ maxCount,
+ accept,
+ compressed,
+ maxDuration,
+ camera,
+ extension
+ }: ChooseFileOption): Promise {
+ return new Promise((resolve, reject) => {
+ switch (accept) {
+ case 'image':
+ // #ifdef MP-WEIXIN
+ uni.chooseMedia({
+ count: multiple ? maxCount : 1,
+ mediaType: ['image'],
+ sourceType,
+ sizeType,
+ camera,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject
+ })
+ // #endif
+ // #ifndef MP-WEIXIN
+ uni.chooseImage({
+ count: multiple ? maxCount : 1,
+ sizeType,
+ sourceType,
+ // #ifdef H5
+ extension,
+ // #endif
+ success: (res) => resolve(formatImage(res)),
+ fail: reject
+ })
+ // #endif
+ break
+ case 'video':
+ // #ifdef MP-WEIXIN
+ uni.chooseMedia({
+ count: multiple ? maxCount : 1,
+ mediaType: ['video'],
+ sourceType,
+ camera,
+ maxDuration,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject
+ })
+ // #endif
+ // #ifndef MP-WEIXIN
+ uni.chooseVideo({
+ sourceType,
+ compressed,
+ maxDuration,
+ camera,
+ // #ifdef H5
+ extension,
+ // #endif
+ success: (res) => resolve(formatVideo(res)),
+ fail: reject
+ })
+ // #endif
+ break
+ // #ifdef MP-WEIXIN
+ case 'media':
+ uni.chooseMedia({
+ count: multiple ? maxCount : 1,
+ sourceType,
+ sizeType,
+ camera,
+ maxDuration,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject
+ })
+ break
+ case 'file':
+ uni.chooseMessageFile({
+ count: multiple ? (isDef(maxCount) ? maxCount : 100) : 1,
+ type: accept,
+ extension,
+ success: (res) => resolve(res.tempFiles),
+ fail: reject
+ })
+ break
+ // #endif
+ case 'all':
+ // #ifdef H5
+ uni.chooseFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ extension,
+ success: (res) => resolve(res.tempFiles as ChooseFile[]),
+ fail: reject
+ })
+ // #endif
+ // #ifdef MP-WEIXIN
+ uni.chooseMessageFile({
+ count: multiple ? Number(maxCount) : 1,
+ type: accept,
+ extension,
+ success: (res) => resolve(res.tempFiles),
+ fail: reject
+ })
+ // #endif
+
+ break
+ default:
+ // #ifdef MP-WEIXIN
+ uni.chooseMedia({
+ count: multiple ? maxCount : 1,
+ mediaType: ['image'],
+ sourceType,
+ sizeType,
+ camera,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject
+ })
+ // #endif
+ // #ifndef MP-WEIXIN
+ uni.chooseImage({
+ count: multiple ? maxCount : 1,
+ sizeType,
+ sourceType,
+ // #ifdef H5
+ extension,
+ // #endif
+ success: (res) => resolve(formatImage(res)),
+ fail: reject
+ })
+ // #endif
+ break
+ }
+ })
+ }
+
+ return {
+ startUpload,
+ abort,
+ UPLOAD_STATUS,
+ chooseFile
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-action-sheet/index.scss b/node_modules/wot-design-uni/components/wd-action-sheet/index.scss
new file mode 100644
index 0000000..8831de3
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-action-sheet/index.scss
@@ -0,0 +1,204 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(action-sheet) {
+ background-color: $-dark-background2;
+ color: $-dark-color;
+
+ @include e(action) {
+ color: $-dark-color;
+ background: $-dark-background2;
+
+ &:not(.wd-action-sheet__action--disabled):not(.wd-action-sheet__action--loading):active {
+ background: $-dark-background4;
+ }
+
+ @include m(disabled) {
+ color: $-dark-color-gray;
+ }
+ }
+
+ @include e(subname) {
+ color: $-dark-color3;
+ }
+
+ @include e(cancel) {
+ color: $-dark-color;
+ background: $-dark-background4;
+
+ &:active {
+ background: $-dark-background5;
+ }
+ }
+
+ :deep(.wd-action-sheet__close) {
+ color: $-dark-color3;
+ }
+
+ @include e(panel-title) {
+ color: $-dark-color;
+ }
+
+ @include e(header) {
+ color: $-dark-color;
+ }
+ }
+}
+
+:deep(.wd-action-sheet__popup) {
+ border-radius: $-action-sheet-radius $-action-sheet-radius 0 0;
+}
+
+@include b(action-sheet) {
+ background-color: $-color-white;
+ padding-bottom: 1px;
+
+ @include edeep(popup) {
+ border-radius: $-action-sheet-radius $-action-sheet-radius 0 0;
+ }
+
+ @include e(actions) {
+ padding: 8px 0;
+ max-height: 50vh;
+ overflow-y: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+
+ @include e(action) {
+ position: relative;
+ display: block;
+ width: 100%;
+ height: $-action-sheet-action-height;
+ line-height: $-action-sheet-action-height;
+ color: $-action-sheet-color;
+ font-size: $-action-sheet-fs;
+ text-align: center;
+ border: none;
+ background: $-action-sheet-bg;
+ outline: none;
+
+ &:after {
+ display: none;
+ }
+
+ &:not(&--disabled):not(&--loading):active {
+ background: $-action-sheet-active-color;
+ }
+
+ @include m(disabled) {
+ color: $-action-sheet-disabled-color;
+ cursor: not-allowed;
+ }
+
+ @include m(loading) {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ line-height: initial;
+ }
+ }
+
+ @include edeep(action-loading){
+ width: $-action-sheet-loading-size;
+ height: $-action-sheet-loading-size;
+ }
+
+ @include e(name) {
+ display: inline-block;
+ }
+
+ @include e(subname) {
+ display: inline-block;
+ margin-left: 4px;
+ font-size: $-action-sheet-subname-fs;
+ color: $-action-sheet-subname-color;
+ }
+
+ @include e(cancel) {
+ display: block;
+ width: calc(100% - 48px);
+ line-height: $-action-sheet-cancel-height;
+ padding: 0;
+ color: $-action-sheet-cancel-color;
+ font-size: $-action-sheet-fs;
+ text-align: center;
+ border-radius: $-action-sheet-cancel-radius;
+ border: none;
+ background: $-action-sheet-cancel-bg;
+ outline: none;
+ margin: 0 auto 24px;
+ font-weight: $-action-sheet-weight;
+
+ &:active {
+ background: $-action-sheet-active-color;
+ }
+
+ &:after {
+ display: none;
+ }
+ }
+
+ @include e(header) {
+ color: $-action-sheet-color;
+ position: relative;
+ height: $-action-sheet-title-height;
+ line-height: $-action-sheet-title-height;
+ text-align: center;
+ font-size: $-action-sheet-title-fs;
+ font-weight: $-action-sheet-weight;
+ }
+
+ @include edeep(close) {
+ position: absolute;
+ top: $-action-sheet-close-top;
+ right: $-action-sheet-close-right;
+ color: $-action-sheet-close-color;
+ font-size: $-action-sheet-close-fs;
+ transform: rotate(-45deg);
+ line-height: 1.1;
+ }
+
+ @include e(panels) {
+ height: 84px;
+ overflow-y: hidden;
+
+ &:first-of-type {
+ margin-top: 20px;
+ }
+
+ &:last-of-type {
+ margin-bottom: 12px;
+ }
+ }
+
+ @include e(panels-content) {
+ display: flex;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+
+ @include e(panel) {
+ width: 88px;
+ flex: 0 0 auto;
+ display: inline-block;
+ padding: $-action-sheet-panel-padding;
+ }
+
+ @include e(panel-img) {
+ display: block;
+ width: $-action-sheet-panel-img-fs;
+ height: $-action-sheet-panel-img-fs;
+ margin: 0 auto;
+ margin-bottom: 7px;
+ border-radius: $-action-sheet-panel-img-radius;
+ }
+
+ @include e(panel-title) {
+ font-size: $-action-sheet-subname-fs;
+ line-height: 1.2;
+ text-align: center;
+ color: $-action-sheet-color;
+ @include lineEllipsis;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-action-sheet/types.ts b/node_modules/wot-design-uni/components/wd-action-sheet/types.ts
new file mode 100644
index 0000000..b2086a7
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-action-sheet/types.ts
@@ -0,0 +1,118 @@
+import type { ExtractPropTypes } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+export type Action = {
+ /**
+ * 选项名称
+ */
+ name: string
+ /**
+ * 描述信息
+ */
+ subname?: string
+ /**
+ * 颜色
+ */
+ color?: string
+ /**
+ * 禁用
+ */
+ disabled?: boolean
+ /**
+ * 加载中状态
+ */
+ loading?: boolean
+}
+
+export type Panel = {
+ /**
+ * 图片地址
+ */
+ iconUrl: string
+ /**
+ * 标题内容
+ */
+ title: string
+}
+
+export const actionSheetProps = {
+ ...baseProps,
+ /**
+ * header 头部样式
+ * @default ''
+ * @type {string}
+ */
+ customHeaderClass: makeStringProp(''),
+ /**
+ * 设置菜单显示隐藏
+ * @default false
+ * @type {boolean}
+ */
+ modelValue: { ...makeBooleanProp(false), ...makeRequiredProp(Boolean) },
+ /**
+ * 菜单选项
+ * @default []
+ * @type {Action[]}
+ */
+ actions: makeArrayProp(),
+ /**
+ * 自定义面板项,可以为字符串数组,也可以为对象数组,如果为二维数组,则为多行展示
+ * @default []
+ * @type {Array}
+ */
+ panels: makeArrayProp(),
+ /**
+ * 标题
+ * @type {string}
+ */
+ title: String,
+ /**
+ * 取消按钮文案
+ * @type {string}
+ */
+ cancelText: String,
+ /**
+ * 点击选项后是否关闭菜单
+ * @default true
+ * @type {boolean}
+ */
+ closeOnClickAction: makeBooleanProp(true),
+ /**
+ * 点击遮罩是否关闭
+ * @default true
+ * @type {boolean}
+ */
+ closeOnClickModal: makeBooleanProp(true),
+ /**
+ * 弹框动画持续时间
+ * @default 200
+ * @type {number}
+ */
+ duration: makeNumberProp(200),
+ /**
+ * 菜单层级
+ * @default 10
+ * @type {number}
+ */
+ zIndex: makeNumberProp(10),
+ /**
+ * 弹层内容懒渲染,触发展示时才渲染内容
+ * @default true
+ * @type {boolean}
+ */
+ lazyRender: makeBooleanProp(true),
+ /**
+ * 弹出面板是否设置底部安全距离(iphone X 类型的机型)
+ * @default true
+ * @type {boolean}
+ */
+ safeAreaInsetBottom: makeBooleanProp(true),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ * 类型:boolean
+ * 默认值:false
+ */
+ rootPortal: makeBooleanProp(false)
+}
+
+export type ActionSheetProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-action-sheet/wd-action-sheet.vue b/node_modules/wot-design-uni/components/wd-action-sheet/wd-action-sheet.vue
new file mode 100644
index 0000000..111e04e
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-action-sheet/wd-action-sheet.vue
@@ -0,0 +1,155 @@
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+ {{ (col as any).title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-avatar-group/index.scss b/node_modules/wot-design-uni/components/wd-avatar-group/index.scss
new file mode 100644
index 0000000..44cce5f
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar-group/index.scss
@@ -0,0 +1,17 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+@import '../wd-avatar/common';
+
+@include b(avatar-group) {
+ display: inline-flex;
+ align-items: center;
+ gap: 0;
+
+ @include e(item) {
+ // 样式已在 common.scss 中定义
+ }
+
+ @include edeep(collapse) {
+ font-size: $-avatar-group-collapse-font-size;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-avatar-group/types.ts b/node_modules/wot-design-uni/components/wd-avatar-group/types.ts
new file mode 100644
index 0000000..2f875f0
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar-group/types.ts
@@ -0,0 +1,63 @@
+/*
+ * @Author: weisheng
+ * @Date: 2025-12-30
+ * @LastEditTime: 2025-12-30
+ * @LastEditors: weisheng
+ * @Description: AvatarGroup 头像组类型定义
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-avatar-group/types.ts
+ * 记得注释
+ */
+import type { ExtractPropTypes, PropType } from 'vue'
+import type { InjectionKey } from 'vue'
+import { baseProps, makeStringProp, makeNumericProp } from '../common/props'
+import type { AvatarShape, AvatarSize } from '../wd-avatar/types'
+
+export type AvatarGroupCascadingValue = 'left-up' | 'right-up'
+
+export type AvatarGroupProvide = {
+ props: AvatarGroupProps
+}
+
+export const AVATAR_GROUP_KEY: InjectionKey = Symbol('wd-avatar-group')
+
+export const avatarGroupProps = {
+ ...baseProps,
+
+ /**
+ * 最多显示的头像数量
+ * 类型: string | number
+ * 默认值: undefined
+ */
+ maxCount: makeNumericProp(undefined),
+
+ /**
+ * 头像层叠方向
+ * 可选值: left-up(左侧叠层) / right-up(右侧叠层)
+ * 类型: string
+ * 默认值: 'left-up'
+ */
+ cascading: makeStringProp('left-up'),
+
+ /**
+ * 统一设置组内所有头像的形状
+ * 类型: string
+ * 默认值: undefined
+ */
+ shape: String as PropType,
+
+ /**
+ * 统一设置组内所有头像的尺寸
+ * 类型: string | number
+ * 默认值: undefined
+ */
+ size: [String, Number] as PropType,
+
+ /**
+ * 超出最大数量时折叠头像显示的内容
+ * 类型: string
+ * 默认值: undefined
+ */
+ collapseAvatar: makeStringProp('')
+}
+
+export type AvatarGroupProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-avatar-group/wd-avatar-group.vue b/node_modules/wot-design-uni/components/wd-avatar-group/wd-avatar-group.vue
new file mode 100644
index 0000000..03929f0
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar-group/wd-avatar-group.vue
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-avatar/common.scss b/node_modules/wot-design-uni/components/wd-avatar/common.scss
new file mode 100644
index 0000000..9fa162a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar/common.scss
@@ -0,0 +1,19 @@
+/**
+ * Avatar Group Item 共享样式
+ * 用于 wd-avatar 和 wd-avatar-group 组件中的重叠效果
+ */
+.wd-avatar-group__item {
+ position: relative;
+ flex-shrink: 0;
+ box-sizing: border-box;
+
+ // 第一个元素不需要负 margin
+ &:first-child {
+ margin-left: 0;
+ }
+
+ // 其他元素使用负 margin 实现重叠效果
+ & + & {
+ margin-left: $-avatar-group-overlap;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-avatar/index.scss b/node_modules/wot-design-uni/components/wd-avatar/index.scss
new file mode 100644
index 0000000..5f10adb
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar/index.scss
@@ -0,0 +1,75 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+@import './common';
+
+.wot-theme-dark {
+ @include b(avatar) {
+ background-color: $-dark-background4;
+ color: $-dark-color;
+ }
+}
+
+@include b(avatar) {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ width: $-avatar-size;
+ height: $-avatar-size;
+ color: $-avatar-text-color;
+ font-weight: $-avatar-font-weight;
+ font-size: $-avatar-font-size;
+ line-height: $-avatar-line-height;
+ text-align: center;
+ background-color: $-avatar-bg-color;
+ border-radius: $-avatar-border-radius;
+ overflow: hidden;
+ user-select: none;
+ vertical-align: middle;
+ flex-shrink: 0;
+
+ @include when(round) {
+ border-radius: 50%;
+ }
+
+ @include when(square) {
+ border-radius: $-avatar-border-radius;
+ }
+
+ @include when(large) {
+ width: $-avatar-size-large;
+ height: $-avatar-size-large;
+ font-size: $-avatar-font-size-large;
+ }
+
+ @include when(medium) {
+ width: $-avatar-size-medium;
+ height: $-avatar-size-medium;
+ font-size: $-avatar-font-size-medium;
+ }
+
+ @include when(normal) {
+ width: $-avatar-size;
+ height: $-avatar-size;
+ font-size: $-avatar-font-size;
+ }
+
+ @include when(small) {
+ width: $-avatar-size-small;
+ height: $-avatar-size-small;
+ font-size: $-avatar-font-size-small;
+ }
+
+ @include e(text) {
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+
+ @include edeep(icon) {
+ font-size: inherit;
+ }
+
+ @include edeep(img) {
+ border-radius: inherit;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-avatar/types.ts b/node_modules/wot-design-uni/components/wd-avatar/types.ts
new file mode 100644
index 0000000..9044cf7
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar/types.ts
@@ -0,0 +1,90 @@
+/*
+ * @Author: weisheng
+ * @Date: 2025-12-30
+ * @LastEditTime: 2025-12-30
+ * @LastEditors: weisheng
+ * @Description: Avatar 头像组件类型定义
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-avatar/types.ts
+ * 记得注释
+ */
+import type { ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeNumericProp, makeStringProp, numericProp } from '../common/props'
+import type { ImageMode } from '../wd-img/types'
+
+export type AvatarSize = 'large' | 'medium' | 'normal' | 'small'
+export type AvatarShape = 'square' | 'round'
+
+export const avatarProps = {
+ ...baseProps,
+
+ /**
+ * 图片地址
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ src: makeStringProp(''),
+
+ /**
+ * 文本内容
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ text: makeStringProp(''),
+
+ /**
+ * 头像尺寸,支持预设尺寸(large/medium/normal/small)或带单位的字符串(如 40px、100rpx)
+ * 类型: string | number
+ * 默认值: 'normal'
+ */
+ size: makeNumericProp('normal'),
+
+ /**
+ * 头像形状,可选值: round(圆形) / square(方形)
+ * 类型: string
+ * 默认值: 'round'
+ */
+ shape: makeStringProp('round'),
+
+ /**
+ * 背景颜色
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ bgColor: makeStringProp(''),
+
+ /**
+ * 文字颜色
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ color: makeStringProp(''),
+
+ /**
+ * 图标名称,使用 wd-icon 组件
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ icon: makeStringProp(''),
+
+ /**
+ * 图片加载失败时的占位文本
+ * 类型: string
+ * 默认值: 空字符串
+ */
+ alt: makeStringProp(''),
+
+ /**
+ * 图片填充模式,同 uni-app image 组件的 mode
+ * 类型: ImageMode
+ * 默认值: 'aspectFill'
+ */
+ mode: makeStringProp('aspectFill'),
+
+ /**
+ * 内部使用,不注册到 parent
+ * @private
+ */
+ _internal: Boolean
+}
+
+export type AvatarProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-avatar/wd-avatar.vue b/node_modules/wot-design-uni/components/wd-avatar/wd-avatar.vue
new file mode 100644
index 0000000..3304557
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-avatar/wd-avatar.vue
@@ -0,0 +1,203 @@
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-backtop/index.scss b/node_modules/wot-design-uni/components/wd-backtop/index.scss
new file mode 100644
index 0000000..a9dc001
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-backtop/index.scss
@@ -0,0 +1,25 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+@include b(backtop) {
+ position: fixed;
+ background-color: $-backtop-bg;
+ width: 40px;
+ height: 40px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ color: $-color-gray-8;
+
+ @include edeep(backicon) {
+ font-size: $-backtop-icon-size;
+ }
+
+ @include when(circle) {
+ border-radius: 50%;
+ }
+
+ @include when(square) {
+ border-radius: 4px;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-backtop/types.ts b/node_modules/wot-design-uni/components/wd-backtop/types.ts
new file mode 100644
index 0000000..209c67a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-backtop/types.ts
@@ -0,0 +1,37 @@
+import { baseProps, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+export const backtopProps = {
+ ...baseProps,
+ /**
+ * 页面滚动距离
+ */
+ scrollTop: makeRequiredProp(Number),
+ /**
+ * 距离顶部多少距离时显示
+ */
+ top: makeNumberProp(300),
+ /**
+ * 返回顶部滚动时间
+ */
+ duration: makeNumberProp(100),
+ /**
+ * 层级
+ */
+ zIndex: makeNumberProp(10),
+ /**
+ * icon样式
+ */
+ iconStyle: makeStringProp(''),
+ /**
+ * 形状
+ */
+ shape: makeStringProp('circle'),
+ /**
+ * 距离屏幕底部距离
+ */
+ bottom: makeNumberProp(100),
+ /**
+ * 距离屏幕右边距离
+ */
+ right: makeNumberProp(20)
+}
diff --git a/node_modules/wot-design-uni/components/wd-backtop/wd-backtop.vue b/node_modules/wot-design-uni/components/wd-backtop/wd-backtop.vue
new file mode 100644
index 0000000..12df252
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-backtop/wd-backtop.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-badge/index.scss b/node_modules/wot-design-uni/components/wd-badge/index.scss
new file mode 100644
index 0000000..d75390a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-badge/index.scss
@@ -0,0 +1,63 @@
+@import './../common/abstracts/_mixin.scss';
+@import './../common/abstracts/variable.scss';
+
+.wot-theme-dark {
+ @include b(badge) {
+ @include e(content) {
+ border-color: $-dark-background2;
+ }
+ }
+}
+
+
+@include b(badge) {
+ position: relative;
+ vertical-align: middle;
+ display: inline-block;
+
+ @include e(content) {
+ display: inline-block;
+ box-sizing: content-box;
+ height: $-badge-height;
+ line-height: $-badge-height;
+ padding: $-badge-padding;
+ background-color: $-badge-bg;
+ border-radius: calc($-badge-height / 2 + 2px);
+ color: $-badge-color;
+ font-size: $-badge-fs;
+ text-align: center;
+ white-space: nowrap;
+ border: $-badge-border;
+ font-weight: 500;
+
+ @include when(fixed) {
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ transform: translateY(-50%) translateX(50%);
+ }
+
+ @include when(dot) {
+ height: $-badge-dot-size;
+ width: $-badge-dot-size;
+ padding: 0;
+ border-radius: 50%;
+ }
+
+ @each $type in (primary, success, warning, info, danger) {
+ @include m($type) {
+ @if $type == primary {
+ background-color: $-badge-primary;
+ } @else if $type == success {
+ background-color: $-badge-success;
+ } @else if $type == warning {
+ background-color: $-badge-warning;
+ } @else if $type == info {
+ background-color: $-badge-info;
+ } @else {
+ background-color: $-badge-danger;
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-badge/types.ts b/node_modules/wot-design-uni/components/wd-badge/types.ts
new file mode 100644
index 0000000..49cffa5
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-badge/types.ts
@@ -0,0 +1,50 @@
+/*
+ * @Author: weisheng
+ * @Date: 2024-03-15 11:36:12
+ * @LastEditTime: 2024-11-20 20:29:03
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-badge/types.ts
+ * 记得注释
+ */
+import type { ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeStringProp, numericProp } from '../common/props'
+
+export type BadgeType = 'primary' | 'success' | 'warning' | 'danger' | 'info'
+
+export const badgeProps = {
+ ...baseProps,
+ /**
+ * 显示值
+ */
+ modelValue: numericProp,
+ /** 当数值为 0 时,是否展示徽标 */
+ showZero: makeBooleanProp(false),
+ bgColor: String,
+ /**
+ * 最大值,超过最大值会显示 '{max}+',要求 value 是 Number 类型
+ */
+ max: Number,
+ /**
+ * 是否为红色点状标注
+ */
+ isDot: Boolean,
+ /**
+ * 是否隐藏 badge
+ */
+ hidden: Boolean,
+ /**
+ * badge类型,可选值primary / success / warning / danger / info
+ */
+ type: makeStringProp(undefined),
+ /**
+ * 为正时,角标向下偏移对应的像素
+ */
+ top: numericProp,
+ /**
+ * 为正时,角标向左偏移对应的像素
+ */
+ right: numericProp
+}
+
+export type BadgeProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-badge/wd-badge.vue b/node_modules/wot-design-uni/components/wd-badge/wd-badge.vue
new file mode 100644
index 0000000..a47b1ac
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-badge/wd-badge.vue
@@ -0,0 +1,61 @@
+
+
+
+
+ {{ content }}
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-button/index.scss b/node_modules/wot-design-uni/components/wd-button/index.scss
new file mode 100644
index 0000000..c45fa43
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-button/index.scss
@@ -0,0 +1,335 @@
+@import './../common/abstracts/_mixin.scss';
+@import './../common/abstracts/variable.scss';
+
+
+.wot-theme-dark {
+ @include b(button) {
+ @include when(info) {
+ background: $-dark-background4;
+ color: $-dark-color3;
+ }
+
+ @include when(plain) {
+ background: transparent;
+
+ @include when(info) {
+ color: $-dark-color;
+
+ &::after {
+ border-color: $-dark-background5;
+ }
+ }
+ }
+
+ @include when(text) {
+ @include when(disabled) {
+ color: $-dark-color-gray;
+ background: transparent;
+ }
+ }
+
+ @include when(icon) {
+ color: $-dark-color;
+
+ @include when(disabled) {
+ color: $-dark-color-gray;
+ background: transparent;
+ }
+
+ }
+ }
+}
+
+@include b(button) {
+ margin-left: initial;
+ margin-right: initial;
+ position: relative;
+ display: inline-block;
+ outline: none;
+ -webkit-appearance: none;
+ background: transparent;
+ box-sizing: border-box;
+ border: none;
+ border-radius: 0;
+ color: $-button-normal-color;
+ transition: opacity 0.2s;
+ user-select: none;
+ font-weight: normal;
+
+
+ &::before {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 100%;
+ height: 100%;
+ background: $-color-black;
+ border: inherit;
+ border-color: $-color-black;
+ border-radius: inherit;
+ transform: translate(-50%, -50%);
+ opacity: 0;
+ content: ' ';
+ }
+
+
+ &::after {
+ border: none;
+ border-radius: 0;
+ }
+
+ @include e(content) {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+ }
+
+ @include m(active) {
+ &:active::before {
+ opacity: 0.15;
+ }
+ }
+
+ @include when(disabled) {
+ opacity: $-button-disabled-opacity;
+ }
+
+ @include e(loading) {
+ margin-right: 5px;
+ animation: wd-rotate 0.8s linear infinite;
+ animation-duration: 2s;
+ }
+
+ @include e(loading-svg) {
+ width: 100%;
+ height: 100%;
+ background-size: cover;
+ background-repeat: no-repeat;
+ }
+
+ @include when(loading) {}
+
+ @include when(primary) {
+ background: $-button-primary-bg-color;
+ color: $-button-primary-color;
+ }
+
+ @include when(success) {
+ background: $-button-success-bg-color;
+ color: $-button-success-color;
+ }
+
+ @include when(info) {
+ background: $-button-info-bg-color;
+ color: $-button-info-color;
+ }
+
+ @include when(warning) {
+ background: $-button-warning-bg-color;
+ color: $-button-warning-color;
+ }
+
+ @include when(error) {
+ background: $-button-error-bg-color;
+ color: $-button-error-color;
+ }
+
+ @include when(small) {
+ height: $-button-small-height;
+ padding: $-button-small-padding;
+ border-radius: $-button-small-radius;
+ font-size: $-button-small-fs;
+ font-weight: normal;
+
+ .wd-button__loading {
+ width: $-button-small-loading;
+ height: $-button-small-loading;
+ }
+ }
+
+ @include when(medium) {
+ height: $-button-medium-height;
+ padding: $-button-medium-padding;
+ border-radius: $-button-medium-radius;
+ font-size: $-button-medium-fs;
+ min-width: 120px;
+
+
+ @include when(round) {
+
+ @include when(icon) {
+ min-width: 0;
+ border-radius: 50%;
+ }
+
+ @include when(text) {
+ border-radius: 0;
+ min-width: 0;
+ }
+ }
+
+ .wd-button__loading {
+ width: $-button-medium-loading;
+ height: $-button-medium-loading;
+ }
+ }
+
+ @include when(large) {
+ height: $-button-large-height;
+ padding: $-button-large-padding;
+ border-radius: $-button-large-radius;
+ font-size: $-button-large-fs;
+
+ &::after {
+ border-radius: $-button-large-radius;
+ }
+
+ .wd-button__loading {
+ width: $-button-large-loading;
+ height: $-button-large-loading;
+ }
+ }
+
+
+ @include when(round) {
+ border-radius: 999px;
+ }
+
+ @include when(text) {
+ color: $-button-primary-bg-color;
+ min-width: 0;
+ padding: 4px 0;
+
+ &::after {
+ display: none;
+ }
+
+ &.wd-button--active {
+ opacity: $-button-text-hover-opacity;
+
+ &:active::before {
+ display: none;
+ }
+
+ }
+
+ @include when(disabled) {
+ color: $-button-normal-disabled-color;
+ background: transparent;
+ }
+ }
+
+ @include when(plain) {
+ background: $-button-plain-bg-color;
+ border: 1px solid currentColor;
+
+ @include when(primary) {
+ color: $-button-primary-bg-color;
+ }
+
+ @include when(success) {
+ color: $-button-success-bg-color;
+ }
+
+ @include when(info) {
+ color: $-button-info-plain-normal-color;
+ border-color: $-button-info-plain-border-color;
+ }
+
+ @include when(warning) {
+ color: $-button-warning-bg-color;
+ }
+
+ @include when(error) {
+ color: $-button-error-bg-color;
+ }
+ }
+
+ @include when(hairline) {
+ border-width: 0;
+
+ &.is-plain {
+ @include halfPixelBorderSurround();
+
+ &::before {
+ border-radius: inherit;
+ }
+
+ &::after {
+ border-color: inherit;
+ }
+
+ &.is-round {
+ &::after {
+ border-radius: inherit !important;
+ }
+ }
+
+ &.is-large {
+ &::after {
+ border-radius: calc(2 * $-button-large-radius);
+ }
+ }
+
+ &.is-medium {
+ &::after {
+ border-radius: calc(2 * $-button-medium-radius);
+ }
+ }
+
+ &.is-small {
+ &::after {
+ border-radius: calc(2 * $-button-small-radius);
+ }
+ }
+ }
+ }
+
+ @include when(block) {
+ display: block;
+ }
+
+ @include when(icon) {
+ width: $-button-icon-size;
+ height: $-button-icon-size;
+ padding: 0;
+ border-radius: 50%;
+ color: $-button-icon-color;
+
+ &::after {
+ display: none;
+ }
+
+ :deep(.wd-button__icon) {
+ margin-right: 0;
+ }
+
+ @include when(disabled) {
+ color: $-button-icon-disabled-color;
+ background: transparent;
+ }
+ }
+
+ @include edeep(icon) {
+ display: block;
+ margin-right: 6px;
+ font-size: $-button-icon-fs;
+ vertical-align: middle;
+ }
+
+ @include e(text) {
+ user-select: none;
+ white-space: nowrap;
+ }
+}
+
+@keyframes wd-rotate {
+ from {
+ transform: rotate(0deg);
+ }
+
+ to {
+ transform: rotate(360deg);
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-button/types.ts b/node_modules/wot-design-uni/components/wd-button/types.ts
new file mode 100644
index 0000000..04c85e0
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-button/types.ts
@@ -0,0 +1,142 @@
+/*
+ * @Author: weisheng
+ * @Date: 2024-03-15 11:36:12
+ * @LastEditTime: 2024-11-04 21:33:52
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-button\types.ts
+ * 记得注释
+ */
+import type { ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeStringProp } from '../common/props'
+
+export type ButtonType = 'primary' | 'success' | 'info' | 'warning' | 'error' | 'default' | 'text' | 'icon'
+export type ButtonSize = 'small' | 'medium' | 'large'
+export type ButtonLang = 'zh_CN' | 'zh_TW' | 'en'
+
+export type ButtonOpenType =
+ | 'feedback'
+ | 'share'
+ | 'getUserInfo'
+ | 'contact'
+ | 'getPhoneNumber'
+ | 'getRealtimePhoneNumber'
+ | 'launchApp'
+ | 'openSetting'
+ | 'chooseAvatar'
+ | 'getAuthorize'
+ | 'lifestyle'
+ | 'contactShare'
+ | 'openGroupProfile'
+ | 'openGuildProfile'
+ | 'openPublicProfile'
+ | 'shareMessageToFriend'
+ | 'addFriend'
+ | 'addColorSign'
+ | 'addGroupApp'
+ | 'addToFavorites'
+ | 'chooseAddress'
+ | 'chooseInvoiceTitle'
+ | 'login'
+ | 'subscribe'
+ | 'favorite'
+ | 'watchLater'
+ | 'openProfile'
+ | 'agreePrivacyAuthorization'
+
+export type ButtonScope = 'phoneNumber' | 'userInfo'
+
+export const buttonProps = {
+ ...baseProps,
+ /**
+ * 幽灵按钮
+ */
+ plain: makeBooleanProp(false),
+ /**
+ * 圆角按钮
+ */
+ round: makeBooleanProp(true),
+ /**
+ * 禁用按钮
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 是否细边框
+ */
+ hairline: makeBooleanProp(false),
+ /**
+ * 块状按钮
+ */
+ block: makeBooleanProp(false),
+ /**
+ * 按钮类型,可选值:primary / success / info / warning / error / text / icon
+ */
+ type: makeStringProp('primary'),
+ /**
+ * 按钮尺寸,可选值:small / medium / large
+ */
+ size: makeStringProp('medium'),
+ /**
+ * 图标类名
+ */
+ icon: String,
+ /**
+ * 类名前缀,用于使用自定义图标,用法参考Icon组件
+ */
+ classPrefix: makeStringProp('wd-icon'),
+ /**
+ * 加载中按钮
+ */
+ loading: makeBooleanProp(false),
+ /**
+ * 加载图标颜色
+ */
+ loadingColor: String,
+ /**
+ * 开放能力
+ */
+ openType: String as PropType,
+ /**
+ * 指定是否阻止本节点的祖先节点出现点击态
+ */
+ hoverStopPropagation: Boolean,
+ /**
+ * 指定返回用户信息的语言,zh_CN 简体中文,zh_TW 繁体中文,en 英文
+ */
+ lang: String as PropType,
+ /**
+ * 会话来源,open-type="contact"时有效
+ */
+ sessionFrom: String,
+ /**
+ * 会话内消息卡片标题,open-type="contact"时有效
+ */
+ sendMessageTitle: String,
+ /**
+ * 会话内消息卡片点击跳转小程序路径,open-type="contact"时有效
+ */
+ sendMessagePath: String,
+ /**
+ * 会话内消息卡片图片,open-type="contact"时有效
+ */
+ sendMessageImg: String,
+ /**
+ * 打开 APP 时,向 APP 传递的参数,open-type=launchApp时有效
+ */
+ appParameter: String,
+ /**
+ * 是否显示会话内消息卡片,设置此参数为 true,用户进入客服会话会在右下角显示"可能要发送的小程序"提示,用户点击后可以快速发送小程序消息,open-type="contact"时有效
+ */
+ showMessageCard: Boolean,
+ /**
+ * 按钮的唯一标识,可用于设置隐私同意授权按钮的id
+ */
+ buttonId: String,
+ /**
+ * 支付宝小程序,当 open-type 为 getAuthorize 时有效。
+ * 可选值:'phoneNumber' | 'userInfo'
+ */
+ scope: String as PropType
+}
+
+export type ButtonProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-button/wd-button.vue b/node_modules/wot-design-uni/components/wd-button/wd-button.vue
new file mode 100644
index 0000000..3f4991f
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-button/wd-button.vue
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/index.scss b/node_modules/wot-design-uni/components/wd-calendar-view/index.scss
new file mode 100644
index 0000000..abec32d
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/index.scss
@@ -0,0 +1,9 @@
+/*
+ * @Author: weisheng
+ * @Date: 2023-06-12 10:04:19
+ * @LastEditTime: 2023-07-15 16:16:34
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-calendar-view\index.scss
+ * 记得注释
+ */
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/month/index.scss b/node_modules/wot-design-uni/components/wd-calendar-view/month/index.scss
new file mode 100644
index 0000000..a60250a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/month/index.scss
@@ -0,0 +1,162 @@
+@import '../../common/abstracts/variable';
+@import '../../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(month) {
+ @include e(title) {
+ color: $-dark-color;
+ }
+
+ @include e(days) {
+ color: $-dark-color;
+ }
+
+ @include e(day) {
+ @include when(disabled) {
+ .wd-month__day-text {
+ color: $-dark-color-gray;
+ }
+ }
+ }
+ }
+}
+
+@include b(month) {
+ @include e(title) {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 45px;
+ font-size: $-calendar-panel-title-fs;
+ color: $-calendar-panel-title-color;
+ }
+
+ @include e(days) {
+ display: flex;
+ flex-wrap: wrap;
+ font-size: $-calendar-day-fs;
+ color: $-calendar-day-color;
+ }
+
+ @include e(day) {
+ position: relative;
+ width: 14.285%;
+ height: $-calendar-day-height;
+ line-height: $-calendar-day-height;
+ text-align: center;
+ margin-bottom: $-calendar-item-margin-bottom;
+
+ @include when(disabled) {
+ .wd-month__day-text {
+ color: $-calendar-disabled-color;
+ }
+ }
+
+ @include when(current) {
+ color: $-calendar-active-color;
+ }
+
+ @include when(selected, multiple-selected) {
+ .wd-month__day-container {
+ border-radius: $-calendar-active-border;
+ background: $-calendar-active-color;
+ color: $-calendar-selected-color;
+ }
+ }
+
+ @include when(middle) {
+ .wd-month__day-container {
+ background: $-calendar-range-color;
+ }
+ }
+ @include when(multiple-middle) {
+ .wd-month__day-container {
+ background: $-calendar-active-color;
+ color: $-calendar-selected-color;
+ }
+ }
+
+ @include when(start) {
+ &::after {
+ position: absolute;
+ content: '';
+ height: $-calendar-day-height;
+ top: 0;
+ right: 0;
+ left: 50%;
+ background: $-calendar-range-color;
+ z-index: 1;
+ }
+
+ &.is-without-end::after {
+ display: none;
+ }
+
+ .wd-month__day-container {
+ background: $-calendar-active-color;
+ color: $-calendar-selected-color;
+ border-radius: $-calendar-active-border 0 0 $-calendar-active-border;
+ }
+ }
+
+ @include when(end) {
+ &::after {
+ position: absolute;
+ content: '';
+ height: $-calendar-day-height;
+ top: 0;
+ left: 0;
+ right: 50%;
+ background: $-calendar-range-color;
+ z-index: 1;
+ }
+
+ .wd-month__day-container {
+ background: $-calendar-active-color;
+ color: $-calendar-selected-color;
+ border-radius: 0 $-calendar-active-border $-calendar-active-border 0;
+ }
+ }
+
+ @include when(same) {
+ .wd-month__day-container {
+ background: $-calendar-active-color;
+ color: $-calendar-selected-color;
+ border-radius: $-calendar-active-border;
+ }
+ }
+
+ @include when(last-row){
+ margin-bottom: 0;
+ }
+ }
+
+ @include e(day-container) {
+ position: relative;
+ z-index: 2;
+ }
+
+ @include e(day-text) {
+ font-weight: $-calendar-day-fw;
+ }
+
+ @include e(day-top) {
+ position: absolute;
+ top: 10px;
+ left: 0;
+ right: 0;
+ line-height: 1.1;
+ font-size: $-calendar-info-fs;
+ text-align: center;
+ }
+
+ @include e(day-bottom) {
+ position: absolute;
+ bottom: 10px;
+ left: 0;
+ right: 0;
+ line-height: 1.1;
+ font-size: $-calendar-info-fs;
+ text-align: center;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/month/month.vue b/node_modules/wot-design-uni/components/wd-calendar-view/month/month.vue
new file mode 100644
index 0000000..64442eb
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/month/month.vue
@@ -0,0 +1,389 @@
+
+
+
+
+
+ {{ monthTitle(date) }}
+
+
+
+ {{ item.topInfo }}
+
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/month/types.ts b/node_modules/wot-design-uni/components/wd-calendar-view/month/types.ts
new file mode 100644
index 0000000..f25263c
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/month/types.ts
@@ -0,0 +1,20 @@
+import type { PropType } from 'vue'
+import { makeBooleanProp, makeRequiredProp } from '../../common/props'
+import type { CalendarFormatter, CalendarType } from '../types'
+
+export const monthProps = {
+ type: makeRequiredProp(String as PropType),
+ date: makeRequiredProp(Number),
+ value: makeRequiredProp([Number, Array, null] as PropType),
+ minDate: makeRequiredProp(Number),
+ maxDate: makeRequiredProp(Number),
+ firstDayOfWeek: makeRequiredProp(Number),
+ formatter: Function as PropType,
+ maxRange: Number,
+ rangePrompt: String,
+ allowSameDay: makeBooleanProp(false),
+ defaultTime: {
+ type: [Array] as PropType>
+ },
+ showTitle: makeBooleanProp(true)
+}
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/index.scss b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/index.scss
new file mode 100644
index 0000000..f8b9fe5
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/index.scss
@@ -0,0 +1,89 @@
+@import '../../common/abstracts/variable';
+@import '../../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(month-panel) {
+ @include e(title) {
+ color: $-dark-color;
+ }
+
+ @include e(weeks) {
+ box-shadow: 0px 4px 8px 0 rgba(255, 255, 255, 0.02);
+ color: $-dark-color;
+ }
+
+ @include e(time-label) {
+ color: $-dark-color;
+ &::after{
+ background: $-dark-background4;
+ }
+ }
+ }
+}
+
+@include b(month-panel) {
+ font-size: $-calendar-fs;
+
+ @include e(title) {
+ padding: 5px 0;
+ text-align: center;
+ font-size: $-calendar-panel-title-fs;
+ color: $-calendar-panel-title-color;
+ padding: $-calendar-panel-padding;
+ }
+
+ @include e(weeks) {
+ display: flex;
+ height: $-calendar-week-height;
+ line-height: $-calendar-week-height;
+ box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.02);
+ color: $-calendar-week-color;
+ font-size: $-calendar-week-fs;
+ padding: $-calendar-panel-padding;
+ }
+
+ @include e(week) {
+ flex: 1;
+ text-align: center;
+ }
+
+ @include e(container) {
+ padding: $-calendar-panel-padding;
+ box-sizing: border-box;
+ }
+
+ @include e(time) {
+ display: flex;
+ box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.02);
+ }
+
+ @include e(time-label) {
+ position: relative;
+ flex: 1;
+ font-size: $-picker-column-fs;
+ text-align: center;
+ line-height: 125px;
+ color: $-picker-column-color;
+
+ &::after {
+ position: absolute;
+ content: '';
+ height: 35px;
+ top: 50%;
+ left: 0;
+ right: 0;
+ transform: translateY(-50%);
+ background: $-picker-column-select-bg;
+ z-index: 0;
+ }
+ }
+
+ @include e(time-text) {
+ position: relative;
+ z-index: 1;
+ }
+
+ @include e(time-picker) {
+ flex: 3;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/month-panel.vue b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/month-panel.vue
new file mode 100644
index 0000000..86725c8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/month-panel.vue
@@ -0,0 +1,374 @@
+
+
+
+ {{ title }}
+
+
+ {{ weekLabel(item + firstDayOfWeek) }}
+
+
+
+
+
+
+
+
+ {{ timeType === 'start' ? translate('startTime') : translate('endTime') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/types.ts b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/types.ts
new file mode 100644
index 0000000..e4083e2
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/monthPanel/types.ts
@@ -0,0 +1,96 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { makeBooleanProp, makeNumberProp, makeStringProp } from '../../common/props'
+import type { CalendarFormatter, CalendarTimeFilter, CalendarType } from '../types'
+
+const now = new Date()
+const defaultMinDate = new Date(now.getFullYear(), now.getMonth() - 6, now.getDate()).getTime()
+const defaultMaxDate = new Date(now.getFullYear(), now.getMonth() + 6, now.getDate(), 23, 59, 59).getTime()
+
+/**
+ * 月份信息
+ */
+export interface MonthInfo {
+ date: number
+ height: number
+}
+
+export const monthPanelProps = {
+ /**
+ * 日期类型
+ */
+ type: makeStringProp('date'),
+ /**
+ * 选中值,为 13 位时间戳或时间戳数组
+ */
+ value: {
+ type: [Number, Array, null] as PropType,
+ default: null
+ },
+ /**
+ * 最小日期,为 13 位时间戳
+ */
+ minDate: makeNumberProp(defaultMinDate),
+ /**
+ * 最大日期,为 13 位时间戳
+ */
+ maxDate: makeNumberProp(defaultMaxDate),
+ /**
+ * 周起始天
+ */
+ firstDayOfWeek: makeNumberProp(0),
+ /**
+ * 日期格式化函数
+ */
+ formatter: Function as PropType,
+ /**
+ * type 为范围选择时有效,最大日期范围
+ */
+ maxRange: Number,
+ /**
+ * type 为范围选择时有效,选择超出最大日期范围时的错误提示文案
+ */
+ rangePrompt: String,
+ /**
+ * type 为范围选择时有效,是否允许选择同一天
+ */
+ allowSameDay: makeBooleanProp(false),
+ /**
+ * 是否展示面板标题,自动计算当前滚动的日期月份
+ */
+ showPanelTitle: makeBooleanProp(false),
+ /**
+ * 选中日期所使用的当日内具体时刻
+ */
+ defaultTime: {
+ type: [Array] as PropType>
+ },
+ /**
+ * 可滚动面板的高度
+ */
+ panelHeight: makeNumberProp(378),
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,用于过滤时间选择器的数据
+ */
+ timeFilter: Function as PropType,
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,是否不展示秒修改
+ */
+ hideSecond: makeBooleanProp(false),
+ /**
+ * 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
+ */
+ immediateChange: makeBooleanProp(false)
+}
+
+export type MonthPanelProps = ExtractPropTypes
+
+export type MonthPanelTimeType = 'start' | 'end' | ''
+
+export type MonthPanelExpose = {
+ /**
+ * 使当前日期或者选中日期滚动到可视区域
+ */
+ scrollIntoView: () => void
+}
+
+export type MonthPanelInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/types.ts b/node_modules/wot-design-uni/components/wd-calendar-view/types.ts
new file mode 100644
index 0000000..ca74249
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/types.ts
@@ -0,0 +1,113 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+const now = new Date()
+const defaultMinDate = new Date(now.getFullYear(), now.getMonth() - 6, now.getDate()).getTime()
+const defaultMaxDate = new Date(now.getFullYear(), now.getMonth() + 6, now.getDate(), 23, 59, 59).getTime()
+
+export type CalendarType = 'date' | 'dates' | 'datetime' | 'week' | 'month' | 'daterange' | 'datetimerange' | 'weekrange' | 'monthrange'
+
+export const calendarViewProps = {
+ ...baseProps,
+ /**
+ * 选中值,为 13 位时间戳或时间戳数组
+ */
+ modelValue: makeRequiredProp([Number, Array, null] as PropType),
+ /**
+ * 日期类型
+ */
+ type: makeStringProp('date'),
+ /**
+ * 最小日期,为 13 位时间戳
+ */
+ minDate: makeNumberProp(defaultMinDate),
+ /**
+ * 最大日期,为 13 位时间戳
+ */
+ maxDate: makeNumberProp(defaultMaxDate),
+ /**
+ * 周起始天
+ */
+ firstDayOfWeek: makeNumberProp(0),
+ /**
+ * 日期格式化函数
+ */
+ formatter: Function as PropType,
+ /**
+ * type 为范围选择时有效,最大日期范围
+ */
+ maxRange: Number,
+ /**
+ * type 为范围选择时有效,选择超出最大日期范围时的错误提示文案
+ */
+ rangePrompt: String,
+ /**
+ * type 为范围选择时有效,是否允许选择同一天
+ */
+ allowSameDay: makeBooleanProp(false),
+ // 是否展示面板标题,自动计算当前滚动的日期月份
+ showPanelTitle: makeBooleanProp(true),
+ /**
+ * 选中日期所使用的当日内具体时刻
+ */
+ defaultTime: {
+ type: [String, Array] as PropType,
+ default: '00:00:00'
+ },
+ /**
+ * 可滚动面板的高度
+ */
+ panelHeight: makeNumberProp(378),
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,用于过滤时间选择器的数据
+ */
+ timeFilter: Function as PropType,
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,是否不展示秒修改
+ */
+ hideSecond: makeBooleanProp(false),
+ /**
+ * 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
+ */
+ immediateChange: makeBooleanProp(false)
+}
+
+export type CalendarViewProps = ExtractPropTypes
+
+export type CalendarDayType = '' | 'start' | 'middle' | 'end' | 'selected' | 'same' | 'current' | 'multiple-middle' | 'multiple-selected'
+
+export type CalendarDayItem = {
+ date: number
+ text?: number | string
+ topInfo?: string
+ bottomInfo?: string
+ type?: CalendarDayType
+ disabled?: boolean
+ isLastRow?: boolean
+}
+
+export type CalendarFormatter = (day: CalendarDayItem) => CalendarDayItem
+
+export type CalendarTimeFilterOptionType = 'hour' | 'minute' | 'second'
+
+export type CalendarTimeFilterOption = {
+ type: CalendarTimeFilterOptionType
+ values: CalendarItem[]
+}
+
+export type CalendarTimeFilter = (option: CalendarTimeFilterOption) => CalendarItem[]
+
+export type CalendarItem = {
+ label: string
+ value: number
+ disabled: boolean
+}
+
+export type CalendarViewExpose = {
+ /**
+ * 使当前日期或者选中日期滚动到可视区域
+ */
+ scrollIntoView: () => void
+}
+
+export type CalendarViewInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/utils.ts b/node_modules/wot-design-uni/components/wd-calendar-view/utils.ts
new file mode 100644
index 0000000..3098e3f
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/utils.ts
@@ -0,0 +1,429 @@
+import { computed } from 'vue'
+import dayjs from '../../dayjs'
+import { isArray, isFunction, padZero } from '../common/util'
+import { useTranslate } from '../composables/useTranslate'
+import type { CalendarDayType, CalendarItem, CalendarTimeFilter, CalendarType } from './types'
+const { translate } = useTranslate('calendar-view')
+
+const weeks = computed(() => {
+ return [
+ translate('weeks.sun'),
+ translate('weeks.mon'),
+ translate('weeks.tue'),
+ translate('weeks.wed'),
+ translate('weeks.thu'),
+ translate('weeks.fri'),
+ translate('weeks.sat')
+ ]
+})
+
+/**
+ * 比较两个时间的日期是否相等
+ * @param {timestamp} date1
+ * @param {timestamp} date2
+ */
+export function compareDate(date1: number, date2: number | null) {
+ const dateValue1 = new Date(date1)
+ const dateValue2 = new Date(date2 || '')
+
+ const year1 = dateValue1.getFullYear()
+ const year2 = dateValue2.getFullYear()
+ const month1 = dateValue1.getMonth()
+ const month2 = dateValue2.getMonth()
+ const day1 = dateValue1.getDate()
+ const day2 = dateValue2.getDate()
+
+ if (year1 === year2) {
+ if (month1 === month2) {
+ return day1 === day2 ? 0 : day1 > day2 ? 1 : -1
+ }
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1
+ }
+
+ return year1 > year2 ? 1 : -1
+}
+
+/**
+ * 判断是否是范围选择
+ * @param {string} type
+ */
+export function isRange(type: CalendarType) {
+ return type.indexOf('range') > -1
+}
+
+/**
+ * 比较两个日期的月份是否相等
+ * @param {timestamp} date1
+ * @param {timestamp} date2
+ */
+export function compareMonth(date1: number, date2: number) {
+ const dateValue1 = new Date(date1)
+ const dateValue2 = new Date(date2)
+
+ const year1 = dateValue1.getFullYear()
+ const year2 = dateValue2.getFullYear()
+ const month1 = dateValue1.getMonth()
+ const month2 = dateValue2.getMonth()
+
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1
+ }
+
+ return year1 > year2 ? 1 : -1
+}
+
+/**
+ * 比较两个日期的年份是否一致
+ * @param {timestamp} date1
+ * @param {timestamp} date2
+ */
+export function compareYear(date1: number, date2: number) {
+ const dateValue1 = new Date(date1)
+ const dateValue2 = new Date(date2)
+
+ const year1 = dateValue1.getFullYear()
+ const year2 = dateValue2.getFullYear()
+
+ return year1 === year2 ? 0 : year1 > year2 ? 1 : -1
+}
+
+/**
+ * 获取一个月的最后一天
+ * @param {number} year
+ * @param {number} month
+ */
+export function getMonthEndDay(year: number, month: number) {
+ return 32 - new Date(year, month - 1, 32).getDate()
+}
+
+/**
+ * 格式化年月
+ * @param {timestamp} date
+ */
+export function formatMonthTitle(date: number) {
+ return dayjs(date).format(translate('monthTitle'))
+}
+
+/**
+ * 根据下标获取星期
+ * @param {number} index
+ */
+export function getWeekLabel(index: number) {
+ if (index >= 7) {
+ index = index % 7
+ }
+
+ return weeks.value[index]
+}
+
+/**
+ * 格式化年份
+ * @param {timestamp} date
+ */
+export function formatYearTitle(date: number) {
+ return dayjs(date).format(translate('yearTitle'))
+}
+
+/**
+ * 根据最小日期和最大日期获取这之间总共有几个月份
+ * @param {timestamp} minDate
+ * @param {timestamp} maxDate
+ */
+export function getMonths(minDate: number, maxDate: number) {
+ const months: number[] = []
+ const month = new Date(minDate)
+ month.setDate(1)
+
+ while (compareMonth(month.getTime(), maxDate) < 1) {
+ months.push(month.getTime())
+ month.setMonth(month.getMonth() + 1)
+ }
+
+ return months
+}
+
+/**
+ * 根据最小日期和最大日期获取这之间总共有几年
+ * @param {timestamp} minDate
+ * @param {timestamp} maxDate
+ */
+export function getYears(minDate: number, maxDate: number) {
+ const years: number[] = []
+ const year = new Date(minDate)
+ year.setMonth(0)
+ year.setDate(1)
+
+ while (compareYear(year.getTime(), maxDate) < 1) {
+ years.push(year.getTime())
+ year.setFullYear(year.getFullYear() + 1)
+ }
+
+ return years
+}
+
+/**
+ * 获取一个日期所在周的第一天和最后一天
+ * @param {timestamp} date
+ */
+export function getWeekRange(date: number, firstDayOfWeek: number) {
+ if (firstDayOfWeek >= 7) {
+ firstDayOfWeek = firstDayOfWeek % 7
+ }
+
+ const dateValue = new Date(date)
+ dateValue.setHours(0, 0, 0, 0)
+ const year = dateValue.getFullYear()
+ const month = dateValue.getMonth()
+ const day = dateValue.getDate()
+ const week = dateValue.getDay()
+
+ const weekStart = new Date(year, month, day - ((7 + week - firstDayOfWeek) % 7))
+ const weekEnd = new Date(year, month, day + 6 - ((7 + week - firstDayOfWeek) % 7))
+
+ return [weekStart.getTime(), weekEnd.getTime()]
+}
+
+/**
+ * 获取日期偏移量
+ * @param {timestamp} date1
+ * @param {timestamp} date2
+ */
+export function getDayOffset(date1: number, date2: number) {
+ return (date1 - date2) / (24 * 60 * 60 * 1000) + 1
+}
+
+/**
+ * 获取偏移日期
+ * @param {timestamp} date
+ * @param {number} offset
+ */
+export function getDayByOffset(date: number, offset: number) {
+ const dateValue = new Date(date)
+ dateValue.setDate(dateValue.getDate() + offset)
+
+ return dateValue.getTime()
+}
+
+export const getPrevDay = (date: number) => getDayByOffset(date, -1)
+export const getNextDay = (date: number) => getDayByOffset(date, 1)
+
+/**
+ * 获取月份偏移量
+ * @param {timestamp} date1
+ * @param {timestamp} date2
+ */
+export function getMonthOffset(date1: number, date2: number) {
+ const dateValue1 = new Date(date1)
+ const dateValue2 = new Date(date2)
+
+ const year1 = dateValue1.getFullYear()
+ const year2 = dateValue2.getFullYear()
+ let month1 = dateValue1.getMonth()
+ const month2 = dateValue2.getMonth()
+
+ month1 = (year1 - year2) * 12 + month1
+
+ return month1 - month2 + 1
+}
+
+/**
+ * 获取偏移月份
+ * @param {timestamp} date
+ * @param {number} offset
+ */
+export function getMonthByOffset(date: number, offset: number) {
+ const dateValue = new Date(date)
+ dateValue.setMonth(dateValue.getMonth() + offset)
+
+ return dateValue.getTime()
+}
+
+/**
+ * 获取默认时间,格式化为数组
+ * @param {array|string|null} defaultTime
+ */
+export function getDefaultTime(defaultTime: string[] | string | null) {
+ if (isArray(defaultTime)) {
+ const startTime = (defaultTime[0] || '00:00:00').split(':').map((item: string) => {
+ return parseInt(item)
+ })
+ const endTime = (defaultTime[1] || '00:00:00').split(':').map((item) => {
+ return parseInt(item)
+ })
+ return [startTime, endTime]
+ } else {
+ const time = (defaultTime || '00:00:00').split(':').map((item) => {
+ return parseInt(item)
+ })
+
+ return [time, time]
+ }
+}
+
+/**
+ * 根据默认时间获取日期
+ * @param {timestamp} date
+ * @param {array} defaultTime
+ */
+export function getDateByDefaultTime(date: number, defaultTime: number[]) {
+ const dateValue = new Date(date)
+ dateValue.setHours(defaultTime[0])
+ dateValue.setMinutes(defaultTime[1])
+ dateValue.setSeconds(defaultTime[2])
+
+ return dateValue.getTime()
+}
+
+/**
+ * 获取经过 iteratee 格式化后的长度为 n 的数组
+ * @param {number} n
+ * @param {function} iteratee
+ */
+const times = (n: number, iteratee: (index: number) => CalendarItem) => {
+ let index: number = -1
+ const result: CalendarItem[] = Array(n < 0 ? 0 : n)
+ while (++index < n) {
+ result[index] = iteratee(index)
+ }
+ return result
+}
+
+/**
+ * 获取时分秒
+ * @param {timestamp}} date
+ */
+const getTime = (date: number) => {
+ const dateValue = new Date(date)
+ return [dateValue.getHours(), dateValue.getMinutes(), dateValue.getSeconds()]
+}
+
+/**
+ * 根据最小最大日期获取时间数据,用于填入picker
+ * @param {*} param0
+ */
+export function getTimeData({
+ date,
+ minDate,
+ maxDate,
+ isHideSecond,
+ filter
+}: {
+ date: number
+ minDate: number
+ maxDate: number
+ isHideSecond: boolean
+ filter?: CalendarTimeFilter
+}) {
+ const compareMin = compareDate(date, minDate)
+ const compareMax = compareDate(date, maxDate)
+
+ let minHour = 0
+ let maxHour = 23
+ let minMinute = 0
+ let maxMinute = 59
+ let minSecond = 0
+ let maxSecond = 59
+
+ if (compareMin === 0) {
+ const minTime = getTime(minDate)
+ const currentTime = getTime(date)
+
+ minHour = minTime[0]
+ if (minTime[0] === currentTime[0]) {
+ minMinute = minTime[1]
+
+ if (minTime[1] === currentTime[1]) {
+ minSecond = minTime[2]
+ }
+ }
+ }
+
+ if (compareMax === 0) {
+ const maxTime = getTime(maxDate)
+ const currentTime = getTime(date)
+
+ maxHour = maxTime[0]
+ if (maxTime[0] === currentTime[0]) {
+ maxMinute = maxTime[1]
+
+ if (maxTime[1] === currentTime[1]) {
+ maxSecond = maxTime[2]
+ }
+ }
+ }
+
+ let columns: CalendarItem[][] = []
+ let hours = times(24, (index) => {
+ return {
+ label: translate('hour', padZero(index)),
+ value: index,
+ disabled: index < minHour || index > maxHour
+ }
+ })
+ let minutes = times(60, (index) => {
+ return {
+ label: translate('minute', padZero(index)),
+ value: index,
+ disabled: index < minMinute || index > maxMinute
+ }
+ })
+ let seconds: CalendarItem[] = []
+ if (filter && isFunction(filter)) {
+ hours = filter({
+ type: 'hour',
+ values: hours
+ })
+ minutes = filter({
+ type: 'minute',
+ values: minutes
+ })
+ }
+
+ if (!isHideSecond) {
+ seconds = times(60, (index) => {
+ return {
+ label: translate('second', padZero(index)),
+ value: index,
+ disabled: index < minSecond || index > maxSecond
+ }
+ })
+ if (filter && isFunction(filter)) {
+ seconds = filter({
+ type: 'second',
+ values: seconds
+ })
+ }
+ }
+
+ columns = isHideSecond ? [hours, minutes] : [hours, minutes, seconds]
+
+ return columns
+}
+
+/**
+ * 获取当前是第几周
+ * @param {timestamp} date
+ */
+export function getWeekNumber(date: number | Date) {
+ date = new Date(date)
+ date.setHours(0, 0, 0, 0)
+ // Thursday in current week decides the year.
+ date.setDate(date.getDate() + 3 - ((date.getDay() + 6) % 7))
+ // January 4 is always in week 1.
+ const week = new Date(date.getFullYear(), 0, 4)
+ // Adjust to Thursday in week 1 and count number of weeks from date to week 1.
+ // Rounding should be fine for Daylight Saving Time. Its shift should never be more than 12 hours.
+ return 1 + Math.round(((date.getTime() - week.getTime()) / 86400000 - 3 + ((week.getDay() + 6) % 7)) / 7)
+}
+
+export function getItemClass(monthType: CalendarDayType, value: number | null | (number | null)[], type: CalendarType) {
+ const classList = ['is-' + monthType]
+
+ if (type.indexOf('range') > -1 && isArray(value)) {
+ if (!value || !value[1]) {
+ classList.push('is-without-end')
+ }
+ }
+
+ return classList.join(' ')
+}
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/wd-calendar-view.vue b/node_modules/wot-design-uni/components/wd-calendar-view/wd-calendar-view.vue
new file mode 100644
index 0000000..42512d2
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/wd-calendar-view.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/year/index.scss b/node_modules/wot-design-uni/components/wd-calendar-view/year/index.scss
new file mode 100644
index 0000000..efb9874
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/year/index.scss
@@ -0,0 +1,153 @@
+@import '../../common/abstracts/variable';
+@import '../../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(year) {
+ @include e(title) {
+ color: $-dark-color;
+ }
+
+ @include e(months) {
+ color: $-dark-color;
+ }
+
+ @include e(month) {
+
+ @include when(disabled) {
+ .wd-year__month-text {
+ color: $-dark-color-gray;
+ }
+ }
+ }
+ }
+}
+
+@include b(year) {
+ @include e(title) {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 45px;
+ font-size: $-calendar-panel-title-fs;
+ color: $-calendar-panel-title-color;
+ }
+
+ @include e(months) {
+ display: flex;
+ flex-wrap: wrap;
+ font-size: $-calendar-day-fs;
+ color: $-calendar-day-color;
+ }
+
+ @include e(month) {
+ position: relative;
+ width: 25%;
+ height: $-calendar-day-height;
+ line-height: $-calendar-day-height;
+ text-align: center;
+ margin-bottom: $-calendar-item-margin-bottom;
+
+ @include when(disabled) {
+ .wd-year__month-text {
+ color: $-calendar-disabled-color;
+ }
+ }
+
+ @include when(current) {
+ color: $-calendar-active-color;
+ }
+
+ @include when(selected) {
+ color: #fff;
+
+ .wd-year__month-text {
+ border-radius: $-calendar-active-border;
+ background: $-calendar-active-color;
+ }
+ }
+
+ @include when(middle) {
+ background: $-calendar-range-color;
+ }
+
+ @include when(start) {
+ color: $-calendar-selected-color;
+
+ &::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 50%;
+ bottom: 0;
+ content: '';
+ background: $-calendar-range-color;
+ }
+
+ .wd-year__month-text {
+ background: $-calendar-active-color;
+ border-radius: $-calendar-active-border 0 0 $-calendar-active-border;
+ }
+
+ &.is-without-end::after {
+ display: none;
+ }
+ }
+
+ @include when(end) {
+ color: $-calendar-selected-color;
+
+ &::after {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 50%;
+ bottom: 0;
+ content: '';
+ background: $-calendar-range-color;
+ }
+
+ .wd-year__month-text {
+ background: $-calendar-active-color;
+ border-radius: 0 $-calendar-active-border $-calendar-active-border 0;
+ }
+ }
+
+ @include when(same) {
+ color: $-calendar-selected-color;
+
+ .wd-year__month-text {
+ background: $-calendar-active-color;
+ border-radius: $-calendar-active-border;
+ }
+ }
+ @include when(last-row){
+ margin-bottom: 0;
+ }
+ }
+
+ @include e(month-text) {
+ width: $-calendar-month-width;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ @include e(month-top) {
+ position: absolute;
+ top: 10px;
+ left: 0;
+ right: 0;
+ line-height: 1.1;
+ font-size: $-calendar-info-fs;
+ text-align: center;
+ }
+
+ @include e(month-bottom) {
+ position: absolute;
+ bottom: 10px;
+ left: 0;
+ right: 0;
+ line-height: 1.1;
+ font-size: $-calendar-info-fs;
+ text-align: center;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/year/types.ts b/node_modules/wot-design-uni/components/wd-calendar-view/year/types.ts
new file mode 100644
index 0000000..0df05ac
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/year/types.ts
@@ -0,0 +1,20 @@
+import type { PropType } from 'vue'
+import { makeBooleanProp, makeRequiredProp } from '../../common/props'
+import type { CalendarFormatter, CalendarType } from '../types'
+
+export const yearProps = {
+ type: makeRequiredProp(String as PropType),
+ date: makeRequiredProp(Number),
+ value: makeRequiredProp([Number, Array] as PropType),
+ minDate: makeRequiredProp(Number),
+ maxDate: makeRequiredProp(Number),
+ // 日期格式化函数
+ formatter: Function as PropType,
+ maxRange: Number,
+ rangePrompt: String,
+ allowSameDay: makeBooleanProp(false),
+ defaultTime: {
+ type: [Array] as PropType>
+ },
+ showTitle: makeBooleanProp(true)
+}
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/year/year.vue b/node_modules/wot-design-uni/components/wd-calendar-view/year/year.vue
new file mode 100644
index 0000000..85ee52c
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/year/year.vue
@@ -0,0 +1,202 @@
+
+
+
+
+ {{ yearTitle(date) }}
+
+
+ {{ item.topInfo }}
+ {{ getMonthLabel(item.date) }}
+ {{ item.bottomInfo }}
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/index.scss b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/index.scss
new file mode 100644
index 0000000..920778a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/index.scss
@@ -0,0 +1,24 @@
+@import '../../common/abstracts/variable';
+@import '../../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(year-panel) {
+ @include e(title) {
+ color: $-dark-color;
+ box-shadow: 0px 4px 8px 0 rgba(255, 255,255, 0.02);
+ }
+ }
+}
+
+@include b(year-panel) {
+ font-size: $-calendar-fs;
+ padding: $-calendar-panel-padding;
+
+ @include e(title) {
+ padding: 5px 0;
+ text-align: center;
+ font-size: $-calendar-panel-title-fs;
+ color: $-calendar-panel-title-color;
+ box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.02);
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/types.ts b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/types.ts
new file mode 100644
index 0000000..6e60b01
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/types.ts
@@ -0,0 +1,38 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { makeBooleanProp, makeRequiredProp } from '../../common/props'
+import type { CalendarFormatter, CalendarType } from '../types'
+
+/**
+ * 月份信息
+ */
+export interface YearInfo {
+ date: number
+ height: number
+}
+
+export const yearPanelProps = {
+ type: makeRequiredProp(String as PropType),
+ value: makeRequiredProp([Number, Array] as PropType),
+ minDate: makeRequiredProp(Number),
+ maxDate: makeRequiredProp(Number),
+ formatter: Function as PropType,
+ maxRange: Number,
+ rangePrompt: String,
+ allowSameDay: makeBooleanProp(false),
+ showPanelTitle: makeBooleanProp(false),
+ defaultTime: {
+ type: [Array] as PropType>
+ },
+ panelHeight: makeRequiredProp(Number)
+}
+
+export type YearPanelProps = ExtractPropTypes
+
+export type YearPanelExpose = {
+ /**
+ * 使当前日期或者选中日期滚动到可视区域
+ */
+ scrollIntoView: () => void
+}
+
+export type YearPanelInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/year-panel.vue b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/year-panel.vue
new file mode 100644
index 0000000..8c48c89
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar-view/yearPanel/year-panel.vue
@@ -0,0 +1,135 @@
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-calendar/index.scss b/node_modules/wot-design-uni/components/wd-calendar/index.scss
new file mode 100644
index 0000000..86b8526
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar/index.scss
@@ -0,0 +1,164 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(calendar) {
+
+ @include e(title) {
+ color: $-dark-color;
+ }
+
+ :deep(.wd-calendar__arrow),
+ :deep(.wd-calendar__close),
+ :deep(.wd-calendar__clear) {
+ color: $-dark-color;
+ }
+
+ @include e(range-label-item) {
+ color: $-dark-color;
+
+ @include when(placeholder) {
+ color: $-dark-color-gray;
+ }
+ }
+
+ @include e(range-sperator) {
+ color: $-dark-color-gray;
+ }
+
+ :deep(.wd-calendar__cell--placeholder) {
+ .wd-cell__value {
+ color: $-dark-color-gray;
+ }
+ }
+ }
+}
+
+@include b(calendar) {
+
+ @include e(header) {
+ position: relative;
+ overflow: hidden;
+ }
+
+ @include e(title) {
+ color: $-action-sheet-color;
+ height: $-action-sheet-title-height;
+ line-height: $-action-sheet-title-height;
+ text-align: center;
+ font-size: $-action-sheet-title-fs;
+ font-weight: $-action-sheet-weight;
+ }
+
+ @include edeep(close) {
+ position: absolute;
+ top: $-action-sheet-close-top;
+ right: $-action-sheet-close-right;
+ color: $-action-sheet-close-color;
+ font-size: $-action-sheet-close-fs;
+ transform: rotate(-45deg);
+ line-height: 1.1;
+ }
+
+ @include e(tabs) {
+ width: 222px;
+ margin: 10px auto 12px;
+ }
+
+ @include e(shortcuts) {
+ padding: 20px 0;
+ text-align: center;
+ }
+
+ @include edeep(tag) {
+ margin-right: 8px;
+ }
+
+ @include e(view) {
+ @include when(show-confirm) {
+ height: 394px;
+
+ @include when(range) {
+ height: 384px;
+ }
+ }
+ }
+
+ @include e(range-label) {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 14px;
+
+ @include when(monthrange) {
+ padding-bottom: 10px;
+ box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.02);
+ }
+ }
+
+ @include e(range-label-item) {
+ flex: 1;
+ color: rgba(0, 0, 0, 0.85);
+
+ @include when(placeholder) {
+ color: rgba(0, 0, 0, 0.25);
+ }
+ }
+
+ @include e(range-sperator) {
+ margin: 0 24px;
+ color: rgba(0, 0, 0, 0.25);
+ }
+
+ @include e(confirm) {
+ display: flex;
+ align-items: center;
+ padding: 12px 25px 14px;
+ }
+
+ @include e(confirm-btn-wrapper) {
+ flex-grow: 1;
+ }
+
+ @include edeep(cell) {
+ @include when(disabled) {
+ .wd-cell__value {
+ color: $-input-disabled-color;
+ cursor: not-allowed;
+ }
+ }
+ @include when(error) {
+ .wd-cell__value {
+ color: $-input-error-color;
+ }
+ :deep(.wd-calendar__arrow) {
+ color: $-input-error-color;
+ }
+ }
+ @include when(large) {
+ .wd-calendar__arrow {
+ font-size: $-cell-icon-size-large;
+ }
+ }
+
+ @include m(placeholder) {
+ .wd-cell__value {
+ color: $-input-placeholder-color;
+ }
+ }
+ }
+
+ @include edeep(arrow) {
+ display: block;
+ font-size: $-cell-icon-size;
+ color: $-cell-arrow-color;
+ line-height: $-cell-line-height;
+ }
+
+ @include edeep(clear) {
+ display: block;
+ font-size: $-cell-icon-size;
+ color: $-cell-clear-color;
+ line-height: $-cell-line-height;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-calendar/types.ts b/node_modules/wot-design-uni/components/wd-calendar/types.ts
new file mode 100644
index 0000000..143a3ef
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar/types.ts
@@ -0,0 +1,230 @@
+/*
+ * @Author: weisheng
+ * @Date: 2024-03-15 20:40:34
+ * @LastEditTime: 2025-07-11 16:00:26
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-calendar/types.ts
+ * 记得注释
+ */
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+import type { CalendarFormatter, CalendarTimeFilter, CalendarType } from '../wd-calendar-view/types'
+import type { FormItemRule } from '../wd-form/types'
+
+const now = new Date()
+const defaultMinDate = new Date(now.getFullYear(), now.getMonth() - 6, now.getDate()).getTime()
+const defaultMaxDate = new Date(now.getFullYear(), now.getMonth() + 6, now.getDate(), 23, 59, 59).getTime()
+
+export const calendarProps = {
+ ...baseProps,
+ /**
+ * 选中值,为 13 位时间戳或时间戳数组
+ */
+ modelValue: makeRequiredProp([Number, Array, null] as PropType),
+ /**
+ * 日期类型,可选值:date / dates / datetime / week / month / daterange / datetimerange / weekrange / monthrange
+ */
+ type: makeStringProp('date'),
+ /**
+ * 最小日期,为 13 位时间戳
+ */
+ minDate: makeNumberProp(defaultMinDate),
+ /**
+ * 最大日期,为 13 位时间戳
+ */
+ maxDate: makeNumberProp(defaultMaxDate),
+ /**
+ * 周起始天
+ */
+ firstDayOfWeek: makeNumberProp(0),
+ /**
+ * 日期格式化函数
+ */
+ formatter: Function as PropType,
+ /**
+ * type 为范围选择时有效,最大日期范围
+ */
+ maxRange: Number,
+ /**
+ * type 为范围选择时有效,选择超出最大日期范围时的错误提示文案
+ */
+ rangePrompt: String,
+ /**
+ * type 为范围选择时有效,是否允许选择同一天
+ */
+ allowSameDay: makeBooleanProp(false),
+ /**
+ * 选中日期所使用的当日内具体时刻
+ */
+ defaultTime: {
+ type: [String, Array] as PropType
+ },
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,用于过滤时间选择器的数据
+ */
+ timeFilter: Function as PropType,
+ /**
+ * type 为 'datetime' 或 'datetimerange' 时有效,是否不展示秒修改
+ */
+ hideSecond: makeBooleanProp(false),
+ /**
+ * 选择器左侧文案
+ */
+ label: String,
+ /**
+ * 设置左侧标题宽度
+ */
+ labelWidth: makeStringProp('33%'),
+ /**
+ * 禁用
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 只读
+ */
+ readonly: makeBooleanProp(false),
+ /**
+ * 选择器占位符
+ */
+ placeholder: String,
+ /**
+ * 弹出层标题
+ */
+ title: String,
+ /**
+ * 选择器的值靠右展示
+ */
+ alignRight: makeBooleanProp(false),
+ /**
+ * 是否为错误状态,错误状态时右侧内容为红色
+ */
+ error: makeBooleanProp(false),
+ /**
+ * 是否必填
+ */
+ required: makeBooleanProp(false),
+ /**
+ * 设置选择器大小,可选值:large
+ */
+ size: String,
+ /**
+ * 是否垂直居中
+ */
+ center: makeBooleanProp(false),
+ /**
+ * 点击遮罩是否关闭
+ */
+ closeOnClickModal: makeBooleanProp(true),
+ /**
+ * 弹框层级
+ */
+ zIndex: makeNumberProp(15),
+ /**
+ * 是否显示确定按钮
+ */
+ showConfirm: makeBooleanProp(true),
+ /**
+ * 确定按钮文字
+ */
+ confirmText: String,
+ /**
+ * 自定义展示文案的格式化函数,返回一个字符串
+ */
+ displayFormat: Function as PropType,
+ /**
+ * 自定义范围选择类型的面板内部回显,返回一个字符串
+ */
+ innerDisplayFormat: Function as PropType,
+ /**
+ * 是否超出隐藏
+ */
+ ellipsis: makeBooleanProp(false),
+ /**
+ * 是否显示类型切换功能
+ */
+ showTypeSwitch: makeBooleanProp(false),
+ /**
+ * 快捷选项,为对象数组,其中对象的 text 必传
+ */
+ shortcuts: makeArrayProp>(),
+ /**
+ * 快捷操作点击回调
+ */
+ onShortcutsClick: Function as PropType,
+ /**
+ * 弹出面板是否设置底部安全距离(iphone X 类型的机型)
+ */
+ safeAreaInsetBottom: makeBooleanProp(true),
+ /**
+ * 确定前校验函数,接收 { value, resolve } 参数,通过 resolve 继续执行,resolve 接收 1 个 boolean 参数
+ */
+ beforeConfirm: Function as PropType,
+ /**
+ * 表单域 model 字段名,在使用表单校验功能的情况下,该属性是必填的
+ */
+ prop: String,
+ /**
+ * 表单验证规则,结合wd-form组件使用
+ */
+ rules: makeArrayProp(),
+ customViewClass: makeStringProp(''),
+ /**
+ * label 外部自定义样式
+ */
+ customLabelClass: makeStringProp(''),
+ /**
+ * value 外部自定义样式
+ */
+ customValueClass: makeStringProp(''),
+ /**
+ * 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
+ */
+ immediateChange: makeBooleanProp(false),
+ /**
+ * 是否使用内置单元格
+ * 默认为 true,使用内置单元格
+ */
+ withCell: makeBooleanProp(true),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ */
+ rootPortal: makeBooleanProp(false),
+ /**
+ * 必填标记位置,可选值:before、after
+ */
+ markerSide: makeStringProp<'before' | 'after'>('before'),
+ /**
+ * 显示清空按钮
+ */
+ clearable: makeBooleanProp(false)
+}
+
+export type CalendarDisplayFormat = (value: number | number[], type: CalendarType) => string
+
+export type CalendarInnerDisplayFormat = (value: number, rangeType: 'start' | 'end', type: CalendarType) => string
+
+export type CalendarBeforeConfirmOption = {
+ value: number | number[] | null
+ resolve: (isPass: boolean) => void
+}
+
+export type CalendarBeforeConfirm = (option: CalendarBeforeConfirmOption) => void
+
+export type CalendarOnShortcutsClickOption = {
+ item: Record
+ index: number
+}
+
+export type CalendarOnShortcutsClick = (option: CalendarOnShortcutsClickOption) => number | number[]
+
+export type CalendarExpose = {
+ /** 关闭时间选择器弹窗 */
+ close: () => void
+ /** 打开时间选择器弹窗 */
+ open: () => void
+}
+
+export type CalendarProps = ExtractPropTypes
+
+export type CalendarInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-calendar/wd-calendar.vue b/node_modules/wot-design-uni/components/wd-calendar/wd-calendar.vue
new file mode 100644
index 0000000..cd3b19d
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-calendar/wd-calendar.vue
@@ -0,0 +1,455 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rangeLabel[0] }}
+
+ /
+
+ {{ rangeLabel[1] }}
+
+
+
+
+
+
+
+ {{ confirmText || translate('confirm') }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-card/index.scss b/node_modules/wot-design-uni/components/wd-card/index.scss
new file mode 100644
index 0000000..ee6562c
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-card/index.scss
@@ -0,0 +1,71 @@
+@import "../common/abstracts/variable.scss";
+@import "../common/abstracts/_mixin.scss";
+.wot-theme-dark {
+ @include b(card) {
+ background-color: $-dark-background2;
+
+ @include when(rectangle) {
+
+ .wd-card__content {
+ @include halfPixelBorder('top', 0, $-dark-border-color);
+ }
+ .wd-card__footer {
+ @include halfPixelBorder('top', 0, $-dark-border-color);
+ }
+ }
+
+ @include e(title-content) {
+ color: $-dark-color;
+ }
+ @include e(content) {
+ color: $-dark-color3;
+ }
+ }
+}
+
+@include b(card) {
+ padding: $-card-padding;
+ background-color: $-card-bg;
+ line-height: $-card-line-height;
+ margin: $-card-margin;
+ border-radius: $-card-radius;
+ box-shadow: $-card-shadow-color;
+ font-size: $-card-fs;
+ margin-bottom: 12px;
+
+ @include when(rectangle) {
+ margin-left: 0;
+ margin-right: 0;
+ border-radius: 0;
+ box-shadow: none;
+
+ .wd-card__title-content {
+ font-size: $-card-fs;
+ }
+ .wd-card__content {
+ position: relative;
+ padding: $-card-rectangle-content-padding;
+
+ @include halfPixelBorder('top', 0, $-card-content-border-color);
+ }
+ .wd-card__footer {
+ position: relative;
+ padding: $-card-rectangle-footer-padding;
+
+ @include halfPixelBorder('top', 0, $-card-content-border-color);
+ }
+ }
+ @include e(title-content) {
+ padding: 16px 0;
+ color: $-card-title-color;
+ font-size: $-card-title-fs;
+ }
+ @include e(content) {
+ color: $-card-content-color;
+ line-height: $-card-content-line-height;
+ }
+ @include e(footer) {
+ padding: $-card-footer-padding;
+ text-align: right;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-card/types.ts b/node_modules/wot-design-uni/components/wd-card/types.ts
new file mode 100644
index 0000000..8ee91f2
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-card/types.ts
@@ -0,0 +1,30 @@
+import type { ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeStringProp } from '../common/props'
+
+export type CardType = 'rectangle'
+
+export const cardProps = {
+ ...baseProps,
+ /**
+ * 卡片类型
+ */
+ type: String as PropType,
+ /**
+ * 卡片标题
+ */
+ title: String,
+ /**
+ * 标题自定义样式
+ */
+ customTitleClass: makeStringProp(''),
+ /**
+ * 内容自定义样式
+ */
+ customContentClass: makeStringProp(''),
+ /**
+ * 底部自定义样式
+ */
+ customFooterClass: makeStringProp('')
+}
+
+export type CardProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-card/wd-card.vue b/node_modules/wot-design-uni/components/wd-card/wd-card.vue
new file mode 100644
index 0000000..01ba71e
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-card/wd-card.vue
@@ -0,0 +1,37 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-cell-group/index.scss b/node_modules/wot-design-uni/components/wd-cell-group/index.scss
new file mode 100644
index 0000000..38b32ee
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell-group/index.scss
@@ -0,0 +1,61 @@
+@import '../common/abstracts/variable.scss';
+@import '../common/abstracts/_mixin.scss';
+
+.wot-theme-dark {
+ @include b(cell-group) {
+ background-color: $-dark-background2;
+
+ @include when(border) {
+ .wd-cell-group__title {
+ @include halfPixelBorder('bottom', 0, $-dark-border-color);
+ }
+ }
+
+ @include e(title) {
+ background: $-dark-background2;
+ color: $-dark-color;
+ }
+
+ @include e(right) {
+ color: $-dark-color3;
+ }
+
+ @include e(body) {
+ background: $-dark-background2;
+ }
+
+ }
+}
+
+@include b(cell-group) {
+ background-color: $-color-white;
+
+ @include when(border) {
+ .wd-cell-group__title {
+ @include halfPixelBorder;
+ }
+ }
+ @include e(title) {
+ position: relative;
+ display: flex;
+ justify-content: space-between;
+ padding: $-cell-group-padding;
+ background: $-color-white;
+ font-size: $-cell-group-title-fs;
+ color: $-cell-group-title-color;
+ font-weight: $-fw-medium;
+ line-height: 1.43;
+ }
+ @include e(right) {
+ color: $-cell-group-value-color;
+ font-size: $-cell-group-value-fs;
+ }
+ @include e(body) {
+ background: $-color-white;
+ }
+ @include m(insert) {
+ border-radius: $-cell-group-insert-radius;
+ overflow: hidden;
+ margin: $-cell-group-insert-margin;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-cell-group/types.ts b/node_modules/wot-design-uni/components/wd-cell-group/types.ts
new file mode 100644
index 0000000..d72eb23
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell-group/types.ts
@@ -0,0 +1,45 @@
+/*
+ * @Author: weisheng
+ * @Date: 2023-12-14 11:21:58
+ * @LastEditTime: 2024-03-18 13:57:14
+ * @LastEditors: weisheng
+ * @Description:
+ * @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-cell-group\types.ts
+ * 记得注释
+ */
+import { type ExtractPropTypes, type InjectionKey } from 'vue'
+import { baseProps, makeBooleanProp } from '../common/props'
+
+export type CelllGroupProvide = {
+ props: {
+ border?: boolean
+ }
+}
+
+export const CELL_GROUP_KEY: InjectionKey = Symbol('wd-cell-group')
+
+export const cellGroupProps = {
+ ...baseProps,
+ /**
+ * 分组标题
+ */
+ title: String,
+ /**
+ * 分组右侧内容
+ */
+ value: String,
+ /**
+ * 分组启用插槽
+ */
+ useSlot: makeBooleanProp(false),
+ /**
+ * 是否展示边框线
+ */
+ border: makeBooleanProp(false),
+ /**
+ * 是否展示为圆角卡片风格
+ */
+ insert: makeBooleanProp(false)
+}
+
+export type CellGroupProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-cell-group/wd-cell-group.vue b/node_modules/wot-design-uni/components/wd-cell-group/wd-cell-group.vue
new file mode 100644
index 0000000..8a8f823
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell-group/wd-cell-group.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+ {{ title }}
+
+
+
+
+ {{ value }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-cell/index.scss b/node_modules/wot-design-uni/components/wd-cell/index.scss
new file mode 100644
index 0000000..a87f91c
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell/index.scss
@@ -0,0 +1,206 @@
+@import '../common/abstracts/variable.scss';
+@import '../common/abstracts/_mixin.scss';
+
+.wot-theme-dark {
+ @include b(cell) {
+ background-color: $-dark-background2;
+ color: $-dark-color;
+
+ @include e(value) {
+ color: $-dark-color;
+ }
+
+ @include e(label) {
+ color: $-dark-color3;
+ }
+
+ @include when(hover) {
+ background-color: $-dark-background4;
+ }
+
+ @include when(border) {
+ .wd-cell__wrapper {
+ @include halfPixelBorder('top', 0, $-dark-border-color);
+ }
+ }
+
+ :deep(.wd-cell__arrow-right) {
+ color: $-dark-color;
+ }
+ }
+}
+
+@include b(cell) {
+ position: relative;
+ padding-left: $-cell-padding;
+ background-color: $-color-white;
+ text-decoration: none;
+ color: $-cell-title-color;
+ line-height: $-cell-line-height;
+ -webkit-tap-highlight-color: transparent;
+ box-sizing: border-box;
+ width: 100%;
+ overflow: hidden;
+
+ @include when(border) {
+ .wd-cell__wrapper {
+ @include halfPixelBorder('top');
+ }
+ }
+
+ @include e(wrapper) {
+ position: relative;
+ display: flex;
+ padding: $-cell-wrapper-padding $-cell-padding $-cell-wrapper-padding 0;
+ justify-content: space-between;
+ align-items: flex-start;
+ overflow: hidden;
+
+ @include when(vertical) {
+ display: block;
+
+ .wd-cell__right {
+ margin-top: $-cell-vertical-top;
+ }
+
+ .wd-cell__value {
+ text-align: left;
+ }
+
+ .wd-cell__left {
+ margin-right: 0;
+ }
+ }
+
+ @include when(label) {
+ padding: $-cell-wrapper-padding-with-label $-cell-padding $-cell-wrapper-padding-with-label 0;
+ }
+ }
+
+ @include e(left) {
+ position: relative;
+ flex: 1;
+ display: flex;
+ text-align: left;
+ font-size: $-cell-title-fs;
+ box-sizing: border-box;
+ margin-right: $-cell-padding;
+ }
+
+ @include e(right) {
+ position: relative;
+ flex: 1;
+ min-width: 0;
+ }
+
+ @include e(title) {
+ font-size: $-cell-title-fs;
+ }
+
+ @include e(required) {
+ font-size: $-cell-required-size;
+ color: $-cell-required-color;
+ margin-left: $-cell-required-margin;
+
+ @include m(left) {
+ margin-left: 0;
+ margin-right: $-cell-required-margin;
+ }
+ }
+
+ @include e(label) {
+ margin-top: 2px;
+ font-size: $-cell-label-fs;
+ color: $-cell-label-color;
+ }
+
+ @include edeep(icon) {
+ display: block;
+ position: relative;
+ margin-right: $-cell-icon-right;
+ font-size: $-cell-icon-size;
+ height: $-cell-line-height;
+ line-height: $-cell-line-height;
+ }
+
+ @include e(body){
+ display: flex;
+ min-width: 0;
+ }
+
+ @include e(value) {
+ position: relative;
+ flex: 1;
+ font-size: $-cell-value-fs;
+ color: $-cell-value-color;
+ vertical-align: middle;
+
+ @include m(left) {
+ text-align: left;
+ }
+
+ @include m(right) {
+ text-align: right;
+ }
+
+ @include m(ellipsis) {
+ @include lineEllipsis;
+ min-width: 0;
+ }
+ }
+
+ @include edeep(arrow-right) {
+ display: block;
+ margin-left: 8px;
+ width: $-cell-arrow-size;
+ font-size: $-cell-arrow-size;
+ color: $-cell-arrow-color;
+ height: $-cell-line-height;
+ line-height: $-cell-line-height;
+ }
+
+ @include e(error-message){
+ color: $-form-item-error-message-color;
+ font-size: $-form-item-error-message-font-size;
+ line-height: $-form-item-error-message-line-height;
+ text-align: left;
+ vertical-align: middle;
+ }
+
+ @include when(link) {
+ -webkit-tap-highlight-color: $-cell-tap-bg;
+ }
+
+ @include when(hover) {
+ background-color: $-cell-tap-bg;
+ }
+
+ @include when(large) {
+ .wd-cell__title {
+ font-size: $-cell-title-fs-large;
+ }
+
+ .wd-cell__wrapper {
+ padding-top: $-cell-wrapper-padding-large;
+ padding-bottom: $-cell-wrapper-padding-large;
+ }
+
+ .wd-cell__label {
+ font-size: $-cell-label-fs-large;
+ }
+
+ .wd-cell__value {
+ font-size: $-cell-value-fs-large;
+ }
+
+ :deep(.wd-cell__icon) {
+ font-size: $-cell-icon-size-large;
+ }
+ }
+
+ @include when(center) {
+ .wd-cell__wrapper {
+ align-items: center;
+ }
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-cell/types.ts b/node_modules/wot-design-uni/components/wd-cell/types.ts
new file mode 100644
index 0000000..d5cbfaa
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell/types.ts
@@ -0,0 +1,117 @@
+import type { ExtractPropTypes } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeStringProp, makeNumericProp, numericProp } from '../common/props'
+
+import { type FormItemRule } from '../wd-form/types'
+
+type CellArrowDirection = 'left' | 'up' | 'down' | 'right'
+
+export const cellProps = {
+ ...baseProps,
+ /**
+ * 标题
+ */
+ title: String,
+ /**
+ * 右侧内容
+ */
+ value: makeNumericProp(''),
+ /**
+ * 图标类名
+ */
+ icon: String,
+ /**
+ * 图标大小
+ */
+ iconSize: numericProp,
+ /**
+ * 描述信息
+ */
+ label: String,
+ /**
+ * 是否为跳转链接
+ */
+ isLink: makeBooleanProp(false),
+ /**
+ * 跳转地址
+ */
+ to: String,
+ /**
+ * 跳转时是否替换栈顶页面
+ */
+ replace: makeBooleanProp(false),
+ /**
+ * 开启点击反馈,is-link 默认开启
+ */
+ clickable: makeBooleanProp(false),
+ /**
+ * 设置单元格大小,可选值:large
+ */
+ size: String,
+ /**
+ * 是否展示边框线
+ */
+ border: makeBooleanProp(void 0),
+ /**
+ * 设置左侧标题宽度
+ */
+ titleWidth: String,
+ /**
+ * 是否垂直居中,默认顶部居中
+ */
+ center: makeBooleanProp(false),
+ /**
+ * 是否必填
+ */
+ required: makeBooleanProp(false),
+ /**
+ * 表单属性,上下结构
+ */
+ vertical: makeBooleanProp(false),
+ /**
+ * 表单域 model 字段名,在使用表单校验功能的情况下,该属性是必填的
+ */
+ prop: String,
+ /**
+ * 表单验证规则,结合wd-form组件使用
+ */
+ rules: makeArrayProp(),
+ /**
+ * icon 使用 slot 时的自定义样式
+ */
+ customIconClass: makeStringProp(''),
+ /**
+ * label 使用 slot 时的自定义样式
+ */
+ customLabelClass: makeStringProp(''),
+ /**
+ * value 使用 slot 时的自定义样式
+ */
+ customValueClass: makeStringProp(''),
+ /**
+ * title 使用 slot 时的自定义样式
+ */
+ customTitleClass: makeStringProp(''),
+ /**
+ * value 文字对齐方式,可选值:left、right、center
+ */
+ valueAlign: makeStringProp<'left' | 'right'>('right'),
+ /**
+ * 是否超出隐藏,显示省略号
+ */
+ ellipsis: makeBooleanProp(false),
+ /**
+ * 是否启用title插槽,默认启用,用来解决插槽传递时v-slot和v-if冲突问题。
+ * 问题见:https://github.com/dcloudio/uni-app/issues/4847
+ */
+ useTitleSlot: makeBooleanProp(true),
+ /**
+ * 必填标记位置,可选值:before(标签前)、after(标签后)
+ */
+ markerSide: makeStringProp<'before' | 'after'>('before'),
+ /**
+ * 箭头方向,可选值:left、up、down、right,只在 is-link 为 true 时生效
+ */
+ arrowDirection: makeStringProp('right')
+}
+
+export type CellProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-cell/wd-cell.vue b/node_modules/wot-design-uni/components/wd-cell/wd-cell.vue
new file mode 100644
index 0000000..2e0ace8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-cell/wd-cell.vue
@@ -0,0 +1,140 @@
+
+
+
+
+ *
+
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+ {{ label }}
+
+
+
+ *
+
+
+
+
+
+
+ {{ value }}
+
+
+
+
+
+ {{ errorMessage }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-checkbox-group/index.scss b/node_modules/wot-design-uni/components/wd-checkbox-group/index.scss
new file mode 100644
index 0000000..09d22aa
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox-group/index.scss
@@ -0,0 +1,20 @@
+@import "./../common/abstracts/_mixin.scss";
+@import "./../common/abstracts/variable.scss";
+
+.wot-theme-dark {
+ @include b(checkbox-group) {
+ background-color: $-dark-background2;
+ }
+}
+@include b(checkbox-group) {
+ background-color: $-checkbox-bg;
+
+ // 上下20px 左右15px 内部间隔12px
+ @include when(button) {
+ width: 100%;
+ padding: 8px 3px 20px 15px;
+ box-sizing: border-box;
+ overflow: hidden;
+ height: auto;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-checkbox-group/types.ts b/node_modules/wot-design-uni/components/wd-checkbox-group/types.ts
new file mode 100644
index 0000000..e1785df
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox-group/types.ts
@@ -0,0 +1,59 @@
+import { type ExtractPropTypes, type InjectionKey, type PropType } from 'vue'
+import type { CheckShape } from '../wd-checkbox/types'
+import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
+
+export type RequiredModelValue = {
+ modelValue: Array
+}
+
+export type checkboxGroupProvide = {
+ props: Partial> & RequiredModelValue
+ changeSelectState: (value: string | number | boolean) => void
+}
+
+export const CHECKBOX_GROUP_KEY: InjectionKey = Symbol('wd-checkbox-group')
+
+export const checkboxGroupProps = {
+ ...baseProps,
+ /**
+ * 绑定值
+ */
+ modelValue: {
+ type: Array as PropType>,
+ default: () => []
+ },
+ /**
+ * 表单模式
+ */
+ cell: makeBooleanProp(false),
+ /**
+ * 单选框形状,可选值:circle / square / button
+ */
+ shape: makeStringProp('circle'),
+ /**
+ * 选中的颜色
+ */
+ checkedColor: String,
+ /**
+ * 禁用
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 最小选中的数量
+ */
+ min: makeNumberProp(0),
+ /**
+ * 最大选中的数量,0 为无限数量,默认为 0
+ */
+ max: makeNumberProp(0),
+ /**
+ * 同行展示
+ */
+ inline: makeBooleanProp(false),
+ /**
+ * 设置大小,可选值:large
+ */
+ size: String
+}
+
+export type CheckboxGroupProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-checkbox-group/wd-checkbox-group.vue b/node_modules/wot-design-uni/components/wd-checkbox-group/wd-checkbox-group.vue
new file mode 100644
index 0000000..c6fef2c
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox-group/wd-checkbox-group.vue
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-checkbox/index.scss b/node_modules/wot-design-uni/components/wd-checkbox/index.scss
new file mode 100644
index 0000000..e188d32
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox/index.scss
@@ -0,0 +1,285 @@
+@import "./../common/abstracts/_mixin.scss";
+@import "./../common/abstracts/variable.scss";
+
+.wot-theme-dark {
+ @include b(checkbox) {
+ @include e(shape) {
+ background: transparent;
+ border-color: $-checkbox-border-color;
+ color: $-checkbox-check-color;
+ }
+
+ @include e(label) {
+ color: $-dark-color;
+ }
+
+ @include when(disabled) {
+ .wd-checkbox__shape {
+ border-color: $-dark-color-gray;
+ background: $-dark-background4;
+ }
+
+ .wd-checkbox__label {
+ color: $-dark-color-gray;
+ }
+
+ :deep(.wd-checkbox__check) {
+ color: $-dark-color-gray;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__shape {
+ color: $-dark-color-gray;
+ }
+
+ .wd-checkbox__label {
+ color: $-dark-color-gray;
+ }
+ }
+
+ @include when(button) {
+
+ .wd-checkbox__label {
+ border-color: #c8c9cc;
+ background: #3a3a3c;
+ color: $-dark-color-gray;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__label {
+ border-color: #c8c9cc;
+ background: #3a3a3c;
+ color: #c8c9cc;
+ }
+ }
+ }
+ }
+
+ @include when(button) {
+ .wd-checkbox__label {
+ background-color: $-dark-background;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__label {
+ background-color: $-dark-background2;
+ }
+ }
+ }
+
+ }
+}
+
+@include b(checkbox) {
+ display: block;
+ margin-bottom: $-checkbox-margin;
+ font-size: 0;
+ -webkit-tap-highlight-color: transparent;
+ line-height: 1.2;
+
+ @include when(last-child) {
+ margin-bottom: 0;
+ }
+
+ @include e(shape) {
+ position: relative;
+ display: inline-block;
+ width: $-checkbox-size;
+ height: $-checkbox-size;
+ border: 2px solid $-checkbox-border-color;
+ border-radius: 50%;
+ color: $-checkbox-check-color;
+ background: $-checkbox-bg;
+ vertical-align: middle;
+ transition: background 0.2s;
+ box-sizing: border-box;
+
+ @include when(square) {
+ border-radius: $-checkbox-square-radius;
+ }
+ }
+
+ @include e(input) {
+ position: absolute;
+ width: 0;
+ height: 0;
+ margin: 0;
+ opacity: 0;
+ }
+
+ @include edeep(btn-check) {
+ display: inline-block;
+ font-size: $-checkbox-icon-size;
+ margin-right: 4px;
+ vertical-align: middle;
+ }
+
+ @include e(txt) {
+ display: inline-block;
+ vertical-align: middle;
+ line-height: 20px;
+ @include lineEllipsis;
+ }
+
+ @include e(label) {
+ position: relative;
+ display: inline-block;
+ margin-left: $-checkbox-label-margin;
+ vertical-align: middle;
+ font-size: $-checkbox-label-fs;
+ color: $-checkbox-label-color;
+ }
+
+ @include edeep(check) {
+ color: $-checkbox-check-color;
+ font-size: $-checkbox-icon-size;
+ opacity: 0;
+ transition: opacity 0.2s;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__shape {
+ color: $-checkbox-checked-color;
+ background: currentColor;
+ border-color: currentColor;
+ }
+
+ :deep(.wd-checkbox__check) {
+ opacity: 1;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ }
+ }
+
+ @include when(button) {
+ display: inline-block;
+ margin-bottom: 0;
+ margin-right: $-checkbox-margin;
+ vertical-align: top;
+ font-size: $-checkbox-button-font-size;
+
+ @include when(last-child) {
+ margin-right: 0;
+ }
+
+ .wd-checkbox__shape {
+ width: 0;
+ height: 0;
+ overflow: hidden;
+ opacity: 0;
+ border: none;
+ }
+
+ .wd-checkbox__label {
+ display: inline-flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ min-width: $-checkbox-button-min-width;
+ height: $-checkbox-button-height;
+ font-size: $-checkbox-button-font-size;
+ margin-left: 0;
+ padding: 5px 15px;
+ border: 1px solid $-checkbox-button-border;
+ background-color: $-checkbox-button-bg;
+ border-radius: $-checkbox-button-radius;
+ transition: color 0.2s, border 0.2s;
+ box-sizing: border-box;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__label {
+ color: $-checkbox-checked-color;
+ background-color: $-checkbox-bg;
+ border-color: $-checkbox-checked-color;
+ border-color: currentColor;
+ }
+ }
+ }
+
+ @include when(inline) {
+ display: inline-block;
+ margin-bottom: 0;
+ margin-right: $-checkbox-margin;
+
+ @include when(last-child) {
+ margin-right: 0;
+ }
+ }
+
+ @include when(disabled) {
+ .wd-checkbox__shape {
+ border-color: $-checkbox-border-color;
+ background: $-checkbox-disabled-check-bg;
+ }
+
+ .wd-checkbox__label {
+ color: $-checkbox-disabled-label-color;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__shape {
+ color: $-checkbox-disabled-check-color;
+ }
+
+ .wd-checkbox__label {
+ color: $-checkbox-disabled-label-color;
+ }
+ }
+
+ @include when(button) {
+ .wd-checkbox__label {
+ background: $-checkbox-disabled-color;
+ border-color: $-checkbox-button-border;
+ color: $-checkbox-disabled-label-color;
+ }
+
+ @include when(checked) {
+ .wd-checkbox__label {
+ border-color: $-checkbox-button-disabled-border;
+ }
+ }
+ }
+ }
+
+ // 以下内容用于解决父子组件样式隔离的问题 —— START
+ @include when(cell-box) {
+ padding: 13px 15px;
+ margin: 0;
+
+ @include when(large) {
+ padding: 14px 15px;
+ }
+ }
+
+ @include when(button-box) {
+ display: inline-flex;
+ width: 33.3333%;
+ padding: 12px 12px 0 0;
+ box-sizing: border-box;
+
+ .wd-checkbox__label {
+ width: 100%;
+ }
+
+ &:last-child::after {
+ content: "";
+ display: table;
+ clear: both;
+ }
+ }
+
+ @include when(large) {
+ .wd-checkbox__shape {
+ width: $-checkbox-large-size;
+ height: $-checkbox-large-size;
+ font-size: $-checkbox-large-size;
+ }
+
+ .wd-checkbox__label {
+ font-size: $-checkbox-large-label-fs;
+ }
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-checkbox/types.ts b/node_modules/wot-design-uni/components/wd-checkbox/types.ts
new file mode 100644
index 0000000..86bafc7
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox/types.ts
@@ -0,0 +1,68 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeStringProp } from '../common/props'
+
+export type CheckShape = 'circle' | 'square' | 'button'
+
+export const checkboxProps = {
+ ...baseProps,
+ customLabelClass: makeStringProp(''),
+ customShapeClass: makeStringProp(''),
+ /**
+ * 单选框选中时的值
+ */
+ modelValue: {
+ type: [String, Number, Boolean],
+ required: true,
+ default: false
+ },
+ /**
+ * 单选框形状,可选值:circle / square / button
+ */
+ shape: {
+ type: String as PropType
+ },
+ /**
+ * 选中的颜色
+ */
+ checkedColor: String,
+ /**
+ * 禁用
+ */
+ disabled: {
+ type: [Boolean, null] as PropType,
+ default: null
+ },
+ /**
+ * 选中值,在 checkbox-group 中使用无效,需同 false-value 一块使用
+ */
+ trueValue: {
+ type: [String, Number, Boolean],
+ default: true
+ },
+ /**
+ * 非选中时的值,在 checkbox-group 中使用无效,需同 true-value 一块使用
+ */
+ falseValue: {
+ type: [String, Number, Boolean],
+ default: false
+ },
+ /**
+ * 设置大小,可选值:large
+ */
+ size: String,
+ /**
+ * 文字位置最大宽度
+ */
+ maxWidth: String
+}
+
+export type CheckboxProps = ExtractPropTypes
+
+export type CheckboxExpose = {
+ /**
+ * 切换当前选中状态
+ */
+ toggle: () => void
+}
+
+export type CheckboxInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-checkbox/wd-checkbox.vue b/node_modules/wot-design-uni/components/wd-checkbox/wd-checkbox.vue
new file mode 100644
index 0000000..d46c8fe
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-checkbox/wd-checkbox.vue
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-circle/index.scss b/node_modules/wot-design-uni/components/wd-circle/index.scss
new file mode 100644
index 0000000..dc7d13e
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-circle/index.scss
@@ -0,0 +1,18 @@
+@import "../common/abstracts/variable.scss";
+@import "../common/abstracts/_mixin.scss";
+
+@include b(circle) {
+ position: relative;
+ display: inline-block;
+ text-align: center;
+
+ @include e(text) {
+ position: absolute;
+ z-index: 1;
+ top: 50%;
+ left: 0;
+ width: 100%;
+ transform: translateY(-50%);
+ color: $-circle-text-color;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-circle/types.ts b/node_modules/wot-design-uni/components/wd-circle/types.ts
new file mode 100644
index 0000000..881ef73
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-circle/types.ts
@@ -0,0 +1,54 @@
+import type { ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
+
+// 进度条端点的形状,可选值为 "butt" | "round" | "square"
+export type StrokeLinecapType = 'butt' | 'round' | 'square'
+
+export const circleProps = {
+ ...baseProps,
+ /**
+ * 当前进度
+ */
+ modelValue: makeNumberProp(0),
+ /**
+ * 圆环直径,默认单位为 px
+ */
+ size: makeNumberProp(100),
+ /**
+ * 进度条颜色,传入对象格式可以定义渐变色
+ */
+ color: {
+ type: [String, Object] as PropType>,
+ default: '#4d80f0'
+ },
+ /**
+ * 轨道颜色
+ */
+ layerColor: makeStringProp('#EBEEF5'),
+ /**
+ * 填充颜色
+ */
+ fill: String,
+ /**
+ * 动画速度(单位为 rate/s)
+ */
+ speed: makeNumberProp(50),
+ /**
+ * 文字
+ */
+ text: String,
+ /**
+ * 进度条宽度 单位px
+ */
+ strokeWidth: makeNumberProp(10),
+ /**
+ * 进度条端点的形状,可选值为 "butt" | "round" | "square"
+ */
+ strokeLinecap: makeStringProp('round'),
+ /**
+ * 是否顺时针增加
+ */
+ clockwise: makeBooleanProp(true)
+}
+
+export type CircleProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-circle/wd-circle.vue b/node_modules/wot-design-uni/components/wd-circle/wd-circle.vue
new file mode 100644
index 0000000..479a6ba
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-circle/wd-circle.vue
@@ -0,0 +1,296 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-col-picker/index.scss b/node_modules/wot-design-uni/components/wd-col-picker/index.scss
new file mode 100644
index 0000000..c6fb8db
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col-picker/index.scss
@@ -0,0 +1,168 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(col-picker) {
+ @include e(list-item) {
+ @include when(disabled) {
+ color: $-dark-color3;
+ }
+ }
+
+ @include e(list-item-tip) {
+ color: $-dark-color-gray;
+ }
+
+ :deep(.wd-col-picker__arrow) {
+ color: $-dark-color;
+ }
+
+ @include e(list) {
+ color: $-dark-color;
+ }
+
+ @include e(selected) {
+ color: $-dark-color;
+ }
+
+ :deep(.wd-col-picker__cell--placeholder) {
+ .wd-cell__value {
+ color: $-dark-color-gray;
+ }
+ }
+ }
+}
+
+@include b(col-picker) {
+ @include edeep(cell) {
+ @include when(disabled) {
+ .wd-cell__value {
+ color: $-input-disabled-color;
+ cursor: not-allowed;
+ }
+ }
+ @include when(error) {
+ .wd-cell__value {
+ color: $-input-error-color;
+ }
+ .wd-col-picker__arrow {
+ color: $-input-error-color;
+ }
+ }
+ @include when(large) {
+ .wd-col-picker__arrow {
+ font-size: $-cell-icon-size-large;
+ }
+ }
+
+ @include m(placeholder) {
+ .wd-cell__value {
+ color: $-input-placeholder-color;
+ }
+ }
+
+ }
+
+ @include edeep(arrow) {
+ display: block;
+ font-size: $-cell-icon-size;
+ color: $-cell-arrow-color;
+ line-height: $-cell-line-height;
+ }
+
+ @include e(selected) {
+ height: $-col-picker-selected-height;
+ font-size: $-col-picker-selected-fs;
+ color: $-col-picker-selected-color;
+ overflow: hidden;
+ }
+
+ @include e(selected-container){
+ position: relative;
+ display: flex;
+ user-select: none;
+ }
+
+ @include e(selected-item) {
+ flex: 0 0 auto;
+ height: $-col-picker-selected-height;
+ line-height: $-col-picker-selected-height;
+ padding: $-col-picker-selected-padding;
+
+ @include when(selected) {
+ font-weight: $-col-picker-selected-fw;
+ }
+ }
+
+ @include e(selected-line) {
+ position: absolute;
+ bottom: 5px;
+ width: $-col-picker-line-width;
+ left: 0;
+ height: $-col-picker-line-height;
+ background: $-col-picker-line-color;
+ z-index: 1;
+ border-radius: calc($-col-picker-line-height / 2);
+ box-shadow: $-col-picker-line-box-shadow;
+ }
+
+ @include e(list-container){
+ position: relative;
+ }
+
+ @include e(list) {
+ height: $-col-picker-list-height;
+ padding-bottom: $-col-picker-list-padding-bottom;
+ box-sizing: border-box;
+ overflow: auto;
+ color: $-col-picker-list-color;
+ font-size: $-col-picker-list-fs;
+ -webkit-overflow-scrolling: touch;
+ }
+
+ @include e(list-item) {
+ display: flex;
+ padding: $-col-picker-list-item-padding;
+ align-items: flex-start;
+
+ @include when(selected) {
+ color: $-col-picker-list-color-checked;
+
+ :deep(.wd-col-picker__checked) {
+ opacity: 1;
+ }
+ }
+ @include when(disabled) {
+ color: $-col-picker-list-color-disabled;
+ }
+ }
+
+ @include e(list-item-label) {
+ line-height: 1.285;
+ }
+
+ @include e(list-item-tip) {
+ margin-top: 2px;
+ font-size: $-col-picker-list-fs-tip;
+ color: $-col-picker-list-color-tip;
+ }
+
+ @include edeep(checked) {
+ display: block;
+ margin-left: 4px;
+ font-size: $-col-picker-list-checked-icon-size;
+ color: $-col-picker-list-color-checked;
+ opacity: 0;
+ }
+
+ @include e(loading) {
+ display: flex;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ align-items: center;
+ justify-content: center;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-col-picker/types.ts b/node_modules/wot-design-uni/components/wd-col-picker/types.ts
new file mode 100644
index 0000000..ae28eea
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col-picker/types.ts
@@ -0,0 +1,166 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp, numericProp } from '../common/props'
+import type { FormItemRule } from '../wd-form/types'
+
+export const colPickerProps = {
+ ...baseProps,
+ /**
+ * 选中项
+ */
+ modelValue: makeRequiredProp(Array as PropType>),
+ /**
+ * 选择器数据,二维数组
+ */
+ columns: makeArrayProp[]>(),
+ /**
+ * 选择器左侧文案
+ */
+ label: String,
+ /**
+ * 设置左侧标题宽度
+ */
+ labelWidth: makeStringProp('33%'),
+ /**
+ * 使用 label 插槽时设置该选项
+ */
+ useLabelSlot: makeBooleanProp(false),
+ /**
+ * 使用默认插槽时设置该选项
+ */
+ useDefaultSlot: makeBooleanProp(false),
+ /**
+ * 禁用
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 只读
+ */
+ readonly: makeBooleanProp(false),
+ /**
+ * 选择器占位符
+ */
+ placeholder: String,
+ /**
+ * 弹出层标题
+ */
+ title: String,
+ /**
+ * 接收当前列的选中项 item、当前列下标、当前列选中项下标下一列数据处理函数 resolve、结束选择 finish
+ */
+ columnChange: Function as PropType,
+ /**
+ * 自定义展示文案的格式化函数,返回一个字符串
+ */
+ displayFormat: Function as PropType,
+ /**
+ * 确定前校验函数,接收 (value, resolve) 参数,通过 resolve 继续执行 picker,resolve 接收 1 个 boolean 参数
+ */
+ beforeConfirm: Function as PropType,
+ /**
+ * 选择器的值靠右展示
+ */
+ alignRight: makeBooleanProp(false),
+ /**
+ * 是否为错误状态,错误状态时右侧内容为红色
+ */
+ error: makeBooleanProp(false),
+ /**
+ * 是否必填
+ */
+ required: makeBooleanProp(false),
+ /**
+ * 设置选择器大小,可选值:large
+ */
+ size: String,
+ /**
+ * 选项对象中,value 对应的 key
+ */
+ valueKey: makeStringProp('value'),
+ /**
+ * 选项对象中,展示的文本对应的 key
+ */
+ labelKey: makeStringProp('label'),
+ /**
+ * 选项对象中,提示文案对应的 key
+ */
+ tipKey: makeStringProp('tip'),
+ /**
+ * loading 图标的颜色
+ */
+ loadingColor: makeStringProp('#4D80F0'),
+ /**
+ * 点击遮罩是否关闭
+ */
+ closeOnClickModal: makeBooleanProp(true),
+ /**
+ * 自动触发 column-change 事件来补全数据,当 columns 为空数组或者 columns 数组长度小于 value 数组长度时,会自动触发 column-change
+ */
+ autoComplete: makeBooleanProp(false),
+ /**
+ * 弹窗层级
+ */
+ zIndex: makeNumberProp(15),
+ /**
+ * 弹出面板是否设置底部安全距离(iphone X 类型的机型)
+ */
+ safeAreaInsetBottom: makeBooleanProp(true),
+ /**
+ * 是否超出隐藏
+ */
+ ellipsis: makeBooleanProp(false),
+ /**
+ * 表单域 model 字段名,在使用表单校验功能的情况下,该属性是必填的
+ */
+ prop: String,
+ /**
+ * 表单验证规则,结合wd-form组件使用
+ */
+ rules: makeArrayProp(),
+ /**
+ * 底部条宽度,单位像素
+ */
+ lineWidth: numericProp,
+ /**
+ * 底部条高度,单位像素
+ */
+ lineHeight: numericProp,
+ /**
+ * label 外部自定义样式
+ */
+ customViewClass: makeStringProp(''),
+ /**
+ * value 外部自定义样式
+ */
+ customLabelClass: makeStringProp(''),
+ customValueClass: makeStringProp(''),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ */
+ rootPortal: makeBooleanProp(false),
+ /**
+ * 必填标记位置,可选值:before、after
+ */
+ markerSide: makeStringProp<'before' | 'after'>('before')
+}
+
+export type ColPickerProps = ExtractPropTypes
+
+export type ColPickerColumnChangeOption = {
+ selectedItem: Record
+ index: number
+ rowIndex: number
+ resolve: (nextColumn: Record[]) => void
+ finish: (isOk?: boolean) => void
+}
+export type ColPickerColumnChange = (option: ColPickerColumnChangeOption) => void
+export type ColPickerDisplayFormat = (selectedItems: Record[]) => string
+export type ColPickerBeforeConfirm = (value: (string | number)[], selectedItems: Record[], resolve: (isPass: boolean) => void) => void
+
+export type ColPickerExpose = {
+ // 关闭picker弹框
+ close: () => void
+ // 打开picker弹框
+ open: () => void
+}
+
+export type ColPickerInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-col-picker/wd-col-picker.vue b/node_modules/wot-design-uni/components/wd-col-picker/wd-col-picker.vue
new file mode 100644
index 0000000..7c494c5
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col-picker/wd-col-picker.vue
@@ -0,0 +1,498 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ selectShowList[colIndex] || translate('select') }}
+
+
+
+
+
+
+
+
+
+ {{ item[labelKey] }}
+ {{ item[tipKey] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-col/index.scss b/node_modules/wot-design-uni/components/wd-col/index.scss
new file mode 100644
index 0000000..160b919
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col/index.scss
@@ -0,0 +1,19 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+$i: 1;
+
+@include b(col) {
+ float: left;
+ box-sizing: border-box;
+}
+
+@while $i <= 24 {
+ .wd-col__#{$i} {
+ width: calc(100% / 24 * $i);
+ }
+ .wd-col__offset-#{$i} {
+ margin-left: calc(100% / 24 * $i);
+ }
+ $i: $i + 1;
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-col/types.ts b/node_modules/wot-design-uni/components/wd-col/types.ts
new file mode 100644
index 0000000..78c6a8a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col/types.ts
@@ -0,0 +1,15 @@
+import type { ExtractPropTypes } from 'vue'
+import { baseProps, makeNumberProp } from '../common/props'
+
+export const colProps = {
+ ...baseProps,
+ /**
+ * 列元素宽度
+ */
+ span: makeNumberProp(24),
+ /**
+ * 列元素偏移距离
+ */
+ offset: makeNumberProp(0)
+}
+export type ColProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-col/wd-col.vue b/node_modules/wot-design-uni/components/wd-col/wd-col.vue
new file mode 100644
index 0000000..11aad88
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-col/wd-col.vue
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-collapse-item/index.scss b/node_modules/wot-design-uni/components/wd-collapse-item/index.scss
new file mode 100644
index 0000000..97f4655
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse-item/index.scss
@@ -0,0 +1,90 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(collapse-item) {
+ @include halfPixelBorder('top', 0, $-dark-border-color);
+
+
+ @include e(title) {
+ color: $-dark-color;
+ }
+
+ @include e(body) {
+ color: $-dark-color3;
+ }
+
+ @include when(disabled) {
+ .wd-collapse-item__title {
+ color: $-dark-color-gray;
+ }
+ .wd-collapse-item__arrow {
+ color: $-dark-color-gray;
+ }
+ }
+ }
+}
+
+
+@include b(collapse-item) {
+ position: relative;
+ @include halfPixelBorder('top');
+
+
+ @include e(header) {
+ position: relative;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: $-collapse-header-padding;
+ overflow: hidden;
+ user-select: none;
+
+ @include when(expanded) {
+ @include halfPixelBorder('bottom');
+ }
+
+ @include when(custom) {
+ display: block;
+ }
+ }
+
+ @include e(title) {
+ color: $-collapse-title-color;
+ font-weight: $-fw-medium;
+ font-size: $-collapse-title-fs;
+ }
+
+ @include edeep(arrow) {
+ display: block;
+ font-size: $-collapse-arrow-size;
+ color: $-collapse-arrow-color;
+ transition: transform 0.3s;
+
+ @include when(retract) {
+ transform: rotate(-180deg);
+ }
+ }
+
+ @include e(wrapper) {
+ position: relative;
+ overflow: hidden;
+ will-change: height;
+ }
+
+ @include e(body) {
+ color: $-collapse-body-color;
+ font-size: $-collapse-body-fs;
+ padding: $-collapse-body-padding;
+ line-height: 1.43;
+ }
+
+ @include when(disabled) {
+ .wd-collapse-item__title {
+ color: $-collapse-disabled-color;
+ }
+ .wd-collapse-item__arrow {
+ color: $-collapse-disabled-color;
+ }
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-collapse-item/types.ts b/node_modules/wot-design-uni/components/wd-collapse-item/types.ts
new file mode 100644
index 0000000..07b28f6
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse-item/types.ts
@@ -0,0 +1,48 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+export type CollapseItemBeforeExpand = (name: string) => boolean | Promise
+
+export const collapseItemProps = {
+ ...baseProps,
+ /**
+ * 自定义折叠栏内容容器样式类名
+ */
+ customBodyClass: makeStringProp(''),
+ /**
+ * 自定义折叠栏内容容器样式
+ */
+ customBodyStyle: makeStringProp(''),
+ /**
+ * 折叠栏的标题, 可通过 slot 传递自定义内容
+ */
+ title: makeStringProp(''),
+ /**
+ * 禁用折叠栏
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 折叠栏的标识符
+ */
+ name: makeRequiredProp(String),
+ /**
+ * 打开前的回调函数,返回 false 可以阻止打开,支持返回 Promise
+ */
+ beforeExpend: Function as PropType
+}
+
+export type CollapseItemProps = ExtractPropTypes
+
+export type CollapseItemExpose = {
+ /**
+ * 获取展开状态
+ * @returns boolean
+ */
+ getExpanded: () => boolean
+ /**
+ * 更新展开状态
+ */
+ updateExpand: () => Promise
+}
+
+export type CollapseItemInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-collapse-item/wd-collapse-item.vue b/node_modules/wot-design-uni/components/wd-collapse-item/wd-collapse-item.vue
new file mode 100644
index 0000000..2f1d123
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse-item/wd-collapse-item.vue
@@ -0,0 +1,171 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-collapse/index.scss b/node_modules/wot-design-uni/components/wd-collapse/index.scss
new file mode 100644
index 0000000..552dc97
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse/index.scss
@@ -0,0 +1,55 @@
+@import "../common/abstracts/variable";
+@import "../common/abstracts/mixin";
+
+.wot-theme-dark {
+ @include b(collapse) {
+ background: $-dark-background2;
+
+ @include e(content) {
+ color: $-dark-color3;
+ }
+ }
+}
+
+@include b(collapse) {
+ background: $-color-white;
+
+ @include when(viewmore) {
+ padding: $-collapse-side-padding;
+ }
+ @include e(content) {
+ font-size: $-collapse-body-fs;
+ color: $-collapse-body-color;
+
+ @include when(retract) {
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ overflow: hidden;
+ font-size: $-collapse-retract-fs;
+ }
+ }
+ @include e(more) {
+ display: inline-block;
+ font-size: $-collapse-retract-fs;
+ margin-top: 8px;
+ color: $-collapse-more-color;
+ user-select: none;
+ }
+ @include e(more-txt) {
+ display: inline-block;
+ vertical-align: middle;
+ margin-right: 4px;
+ }
+ @include e(arrow) {
+ display: inline-block;
+ vertical-align: middle;
+ transition: transform 0.1s;
+ font-size: $-collapse-arrow-size;
+ height: $-collapse-arrow-size;
+ line-height: $-collapse-arrow-size;
+
+ @include when(retract) {
+ transform: rotate(-180deg);
+ }
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-collapse/types.ts b/node_modules/wot-design-uni/components/wd-collapse/types.ts
new file mode 100644
index 0000000..e2057f8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse/types.ts
@@ -0,0 +1,58 @@
+import { type ComponentPublicInstance, type ExtractPropTypes, type InjectionKey, type PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
+
+export type CollapseToggleAllOptions =
+ | boolean
+ | {
+ expanded?: boolean
+ skipDisabled?: boolean
+ }
+
+export type CollapseProvide = {
+ props: Partial
+ toggle: (name: string, expanded: boolean) => void
+}
+
+export const COLLAPSE_KEY: InjectionKey = Symbol('wd-collapse')
+
+export const collapseProps = {
+ ...baseProps,
+ /**
+ * 查看更多模式下的插槽外部自定义样式
+ */
+ customMoreSlotClass: makeStringProp(''),
+ /**
+ * 绑定值
+ */
+ modelValue: {
+ type: [String, Array, Boolean] as PropType | boolean>
+ },
+ /**
+ * 手风琴模式
+ */
+ accordion: makeBooleanProp(false),
+ /**
+ * 查看更多的折叠面板
+ */
+ viewmore: makeBooleanProp(false),
+ /**
+ * 查看更多的自定义插槽使用标志
+ */
+ useMoreSlot: makeBooleanProp(false),
+ /**
+ * 查看更多的折叠面板,收起时的显示行数
+ */
+ lineNum: makeNumberProp(2)
+}
+
+export type CollapseProps = ExtractPropTypes
+
+export type CollapseExpose = {
+ /**
+ * 切换所有面板展开状态,传 true 为全部展开,false 为全部收起,不传参为全部切换
+ * @param options 面板状态
+ */
+ toggleAll: (options?: CollapseToggleAllOptions) => void
+}
+
+export type CollapseInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-collapse/wd-collapse.vue b/node_modules/wot-design-uni/components/wd-collapse/wd-collapse.vue
new file mode 100644
index 0000000..d39130d
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-collapse/wd-collapse.vue
@@ -0,0 +1,151 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ !modelValue ? translate('expand') : translate('retract') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-config-provider/types.ts b/node_modules/wot-design-uni/components/wd-config-provider/types.ts
new file mode 100644
index 0000000..c8738a9
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-config-provider/types.ts
@@ -0,0 +1,1124 @@
+import type { ExtractPropTypes, PropType, InjectionKey, ComputedRef } from 'vue'
+import { makeStringProp, baseProps } from '../common/props'
+
+export type ConfigProviderTheme = 'light' | 'dark'
+
+export const configProviderProps = {
+ ...baseProps,
+ /**
+ * 主题风格,设置为 dark 来开启深色模式,全局生效
+ */
+ theme: makeStringProp('light'),
+ /**
+ * 自定义主题变量
+ */
+ themeVars: {
+ type: Object as PropType,
+ default: () => ({})
+ }
+}
+
+export type ConfigProviderProps = ExtractPropTypes
+
+export type ConfigProviderProvide = {
+ themeStyle: ComputedRef
+}
+
+export const CONFIG_PROVIDER_KEY: InjectionKey = Symbol('wd-config-provider')
+
+export type baseThemeVars = {
+ colorTheme?: string // 主题色
+ colorWhite?: string // 用于mix的白色
+ colorBlack?: string // 用于mix的黑色
+ colorSuccess?: string // 成功色
+ colorWarning?: string // 警告色
+ colorDanger?: string // 危险出错色
+ colorPurple?: string // 紫色
+ colorYellow?: string // 黄色
+ colorBlue?: string // 蓝色
+ colorInfo?: string // 信息色
+ colorGray1?: string // 灰色1
+ colorGray2?: string // 灰色2
+ colorGray3?: string // 灰色3
+ colorGray4?: string // 灰色4
+ colorGray5?: string // 灰色5
+ colorGray6?: string // 灰色6
+ colorGray7?: string // 灰色7
+ colorGray8?: string // 灰色8
+ fontGray1?: string // 字体灰色1
+ fontGray2?: string // 字体灰色2
+ fontGray3?: string // 字体灰色3
+ fontGray4?: string // 字体灰色4
+ fontWhite1?: string // 字体白色1
+ fontWhite2?: string // 字体白色2
+ fontWhite3?: string // 字体白色3
+ fontWhite4?: string // 字体白色4
+ colorTitle?: string // 模块标题/重要正文
+ colorContent?: string // 普通正文
+ colorSecondary?: string // 次要信息,注释/补充/正文
+ colorAid?: string // 辅助文字字号,弱化信息,引导性/不可点文字
+ colorTip?: string // 失效、默认提示文字
+ colorBorder?: string // 控件边框线
+ colorBorderLight?: string // 分割线颜色
+ colorBg?: string // 背景色、禁用填充色
+ darkBackground?: string // 深色背景1
+ darkBackground2?: string // 深色背景2
+ darkBackground3?: string // 深色背景3
+ darkBackground4?: string // 深色背景4
+ darkBackground5?: string // 深色背景5
+ darkBackground6?: string // 深色背景6
+ darkBackground7?: string // 深色背景7
+ darkColor?: string // 深色字体1
+ darkColor2?: string // 深色字体2
+ darkColor3?: string // 深色字体3
+ darkColorGray?: string // 深色灰色
+ darkBorderColor?: string // 深色边框颜色
+ colorIcon?: string // icon颜色
+ colorIconActive?: string // icon颜色hover
+ colorIconDisabled?: string // icon颜色disabled
+ fsBig?: string // 大型标题字号
+ fsImportant?: string // 重要数据字号
+ fsTitle?: string // 标题字号/重要正文字号
+ fsContent?: string // 普通正文字号
+ fsSecondary?: string // 次要信息字号
+ fsAid?: string // 辅助文字字号
+ fwMedium?: string // 字重500
+ fwSemibold?: string // 字重600
+ sizeSidePadding?: string // 屏幕两边留白padding
+}
+
+export type actionSheetThemeVars = {
+ actionSheetWeight?: string
+ actionSheetRadius?: string
+ actionSheetLoadingSize?: string
+ actionSheetActionHeight?: string
+ actionSheetColor?: string
+ actionSheetFs?: string
+ actionSheetActiveColor?: string
+ actionSheetSubnameFs?: string
+ actionSheetSubnameColor?: string
+ actionSheetDisabledColor?: string
+ actionSheetBg?: string
+ actionSheetTitleHeight?: string
+ actionSheetTitleFs?: string
+ actionSheetCloseFs?: string
+ actionSheetCloseColor?: string
+ actionSheetCloseTop?: string
+ actionSheetCloseRight?: string
+ actionSheetCancelColor?: string
+ actionSheetCancelHeight?: string
+ actionSheetCancelBg?: string
+ actionSheetCancelRadius?: string
+ actionSheetPanelPadding?: string
+ actionSheetPanelImgFs?: string
+ actionSheetPanelImgRadius?: string
+}
+
+export type badgeThemeVars = {
+ badgeBg?: string
+ badgeColor?: string
+ badgeFs?: string
+ badgePadding?: string
+ badgeHeight?: string
+ badgePrimary?: string
+ badgeSuccess?: string
+ badgeWarning?: string
+ badgeDanger?: string
+ badgeInfo?: string
+ badgeDotSize?: string
+ badgeBorder?: string
+}
+
+export type buttonThemeVars = {
+ buttonDisabledOpacity?: string
+ buttonSmallHeight?: string
+ buttonSmallPadding?: string
+ buttonSmallFs?: string
+ buttonSmallRadius?: string
+ buttonSmallLoading?: string
+ buttonMediumHeight?: string
+ buttonMediumPadding?: string
+ buttonMediumFs?: string
+ buttonMediumRadius?: string
+ buttonMediumLoading?: string
+ buttonMediumBoxShadowSize?: string
+ buttonLargeHeight?: string
+ buttonLargePadding?: string
+ buttonLargeFs?: string
+ buttonLargeRadius?: string
+ buttonLargeLoading?: string
+ buttonLargeBoxShadowSize?: string
+ buttonIconFs?: string
+ buttonIconSize?: string
+ buttonIconColor?: string
+ buttonIconDisabledColor?: string
+ buttonNormalColor?: string
+ buttonNormalDisabledColor?: string
+ buttonPlainBgColor?: string
+ buttonPrimaryColor?: string
+ buttonPrimaryBgColor?: string
+ buttonSuccessColor?: string
+ buttonSuccessBgColor?: string
+ buttonInfoColor?: string
+ buttonInfoBgColor?: string
+ buttonInfoPlainBorderColor?: string
+ buttonInfoPlainNormalColor?: string
+ buttonWarningColor?: string
+ buttonWarningBgColor?: string
+ buttonErrorColor?: string
+ buttonErrorBgColor?: string
+ buttonTextHoverOpacity?: string
+}
+
+export type cellThemeVars = {
+ cellPadding?: string
+ cellLineHeight?: string
+ cellGroupTitleFs?: string
+ cellGroupPadding?: string
+ cellGroupTitleColor?: string
+ cellGroupValueFs?: string
+ cellGroupValueColor?: string
+ cellGroupInsertRadius?: string
+ cellGroupInsertMargin?: string
+ cellWrapperPadding?: string
+ cellWrapperPaddingLarge?: string
+ cellWrapperPaddingWithLabel?: string
+ cellIconRight?: string
+ cellIconSize?: string
+ cellTitleFs?: string
+ cellTitleColor?: string
+ cellLabelFs?: string
+ cellLabelColor?: string
+ cellValueFs?: string
+ cellValueFsLarge?: string
+ cellValueColor?: string
+ cellArrowSize?: string
+ cellArrowColor?: string
+ cellClearColor?: string
+ cellTapBg?: string
+ cellTitleFsLarge?: string
+ cellLabelFsLarge?: string
+ cellIconSizeLarge?: string
+ cellRequiredColor?: string
+ cellRequiredSize?: string
+ cellRequiredMargin?: string
+ cellVerticalTop?: string
+}
+
+export type calendarThemeVars = {
+ calendarFs?: string
+ calendarPanelPadding?: string
+ calendarPanelTitleFs?: string
+ calendarPanelTitleColor?: string
+ calendarWeekColor?: string
+ calendarWeekHeight?: string
+ calendarWeekFs?: string
+ calendarDayFs?: string
+ calendarDayColor?: string
+ calendarDayFw?: string
+ calendarDayHeight?: string
+ calendarMonthWidth?: string
+ calendarActiveColor?: string
+ calendarSelectedColor?: string
+ calendarDisabledColor?: string
+ calendarRangeColor?: string
+ calendarActiveBorder?: string
+ calendarInfoFs?: string
+ calendarItemMarginBottom?: string
+}
+
+export type checkboxThemeVars = {
+ checkboxMargin?: string
+ checkboxBg?: string
+ checkboxLabelMargin?: string
+ checkboxSize?: string
+ checkboxIconSize?: string
+ checkboxBorderColor?: string
+ checkboxCheckColor?: string
+ checkboxLabelFs?: string
+ checkboxLabelColor?: string
+ checkboxCheckedColor?: string
+ checkboxDisabledColor?: string
+ checkboxDisabledLabelColor?: string
+ checkboxDisabledCheckColor?: string
+ checkboxDisabledCheckBg?: string
+ checkboxSquareRadius?: string
+ checkboxLargeSize?: string
+ checkboxLargeLabelFs?: string
+ checkboxButtonHeight?: string
+ checkboxButtonMinWidth?: string
+ checkboxButtonRadius?: string
+ checkboxButtonBg?: string
+ checkboxButtonFontSize?: string
+ checkboxButtonBorder?: string
+ checkboxButtonDisabledBorder?: string
+}
+
+export type collapseThemeVars = {
+ collapseSidePadding?: string
+ collapseBodyPadding?: string
+ collapseHeaderPadding?: string
+ collapseTitleColor?: string
+ collapseTitleFs?: string
+ collapseArrowSize?: string
+ collapseArrowColor?: string
+ collapseBodyFs?: string
+ collapseBodyColor?: string
+ collapseDisabledColor?: string
+ collapseRetractFs?: string
+ collapseMoreColor?: string
+}
+
+export type dividerThemeVars = {
+ dividerPadding?: string
+ dividerMargin?: string
+ dividerColor?: string
+ dividerLineColor?: string
+ dividerLineHeight?: string
+ dividerFs?: string
+ dividerContentLeftWidth?: string
+ dividerContentLeftMargin?: string
+ dividerContentRightMargin?: string
+ dividerContentRightWidth?: string
+ dividerVerticalHeight?: string
+ dividerVerticalContentMargin?: string
+ dividerVerticalLineWidth?: string
+}
+
+export type dropMenuThemeVars = {
+ dropMenuHeight?: string
+ dropMenuColor?: string
+ dropMenuFs?: string
+ dropMenuArrowFs?: string
+ dropMenuSidePadding?: string
+ dropMenuDisabledColor?: string
+ dropMenuItemHeight?: string
+ dropMenuItemColor?: string
+ dropMenuItemFs?: string
+ dropMenuItemColorActive?: string
+ dropMenuItemColorTip?: string
+ dropMenuItemFsTip?: string
+ dropMenuOptionCheckSize?: string
+ dropMenuLineColor?: string
+ dropMenuLineHeight?: string
+}
+
+export type inputNumberThemeVars = {
+ inputNumberColor?: string
+ inputNumberBorderColor?: string
+ inputNumberDisabledColor?: string
+ inputNumberHeight?: string
+ inputNumberBtnWidth?: string
+ inputNumberInputWidth?: string
+ inputNumberRadius?: string
+ inputNumberFs?: string
+ inputNumberIconSize?: string
+ inputNumberIconColor?: string
+}
+
+export type inputThemeVars = {
+ inputPadding?: string
+ inputBorderColor?: string
+ inputNotEmptyBorderColor?: string
+ inputFs?: string
+ inputFsLarge?: string
+ inputIconMargin?: string
+ inputColor?: string
+ inputPlaceholderColor?: string
+ inputDisabledColor?: string
+ inputErrorColor?: string
+ inputIconColor?: string
+ inputClearColor?: string
+ inputCountColor?: string
+ inputCountCurrentColor?: string
+ inputBg?: string
+ inputCellBg?: string
+ inputCellBorderColor?: string
+ inputCellPadding?: string
+ inputCellPaddingLarge?: string
+ inputCellHeight?: string
+ inputCellLabelWidth?: string
+ inputInnerHeight?: string
+ inputInnerHeightNoBorder?: string
+ inputCountFs?: string
+ inputCountFsLarge?: string
+ inputIconSize?: string
+ inputIconSizeLarge?: string
+}
+
+export type textareaThemeVars = {
+ textareaPadding?: string
+ textareaBorderColor?: string
+ textareaNotEmptyBorderColor?: string
+ textareaFs?: string
+ textareaFsLarge?: string
+ textareaIconMargin?: string
+ textareaColor?: string
+ textareaIconColor?: string
+ textareaClearColor?: string
+ textareaCountColor?: string
+ textareaCountCurrentColor?: string
+ textareaBg?: string
+ textareaCellBorderColor?: string
+ textareaCellPadding?: string
+ textareaCellPaddingLarge?: string
+ textareaCellHeight?: string
+ textareaCountFs?: string
+ textareaCountFsLarge?: string
+ textareaIconSize?: string
+ textareaIconSizeLarge?: string
+}
+
+export type loadmoreThemeVars = {
+ loadmoreHeight?: string
+ loadmoreColor?: string
+ loadmoreFs?: string
+ loadmoreErrorColor?: string
+ loadmoreRefreshFs?: string
+ loadmoreLoadingSize?: string
+}
+
+export type messageBoxThemeVars = {
+ messageBoxWidth?: string
+ messageBoxBg?: string
+ messageBoxRadius?: string
+ messageBoxPadding?: string
+ messageBoxTitleFs?: string
+ messageBoxTitleColor?: string
+ messageBoxContentFs?: string
+ messageBoxContentColor?: string
+ messageBoxContentMaxHeight?: string
+ messageBoxContentScrollbarWidth?: string
+ messageBoxContentScrollbarColor?: string
+ messageBoxInputErrorColor?: string
+}
+
+export type noticeBarThemeVars = {
+ noticeBarFs?: string
+ noticeBarLineHeight?: string
+ noticeBarBorderRadius?: string
+ noticeBarPadding?: string
+ noticeBarWarningBg?: string
+ noticeBarInfoBg?: string
+ noticeBarDangerBg?: string
+ noticeBarWarningColor?: string
+ noticeBarInfoColor?: string
+ noticeBarDangerColor?: string
+ noticeBarPrefixSize?: string
+ noticeBarCloseBg?: string
+ noticeBarCloseSize?: string
+ noticeBarCloseColor?: string
+ noticeBarWrapPadding?: string
+}
+
+export type paginationThemeVars = {
+ paginationContentPadding?: string
+ paginationMessagePadding?: string
+ paginationMessageFs?: string
+ paginationMessageColor?: string
+ paginationNavBorder?: string
+ paginationNavBorderRadius?: string
+ paginationNavFs?: string
+ paginationNavWidth?: string
+ paginationNavColor?: string
+ paginationNavContentFs?: string
+ paginationNavSepatatorPadding?: string
+ paginationNavCurrentColor?: string
+ paginationIconSize?: string
+}
+
+export type pickerThemeVars = {
+ pickerToolbarHeight?: string
+ pickerActionHeight?: string
+ pickerToolbarFinishColor?: string
+ pickerToolbarCancelColor?: string
+ pickerToolbarFs?: string
+ pickerToolbarTitleColor?: string
+ pickerColumnFs?: string
+ pickerBg?: string
+ pickerColumnActiveFs?: string
+ pickerColumnColor?: string
+ pickerColumnHeight?: string
+ pickerColumnItemHeight?: string
+ pickerColumnSelectBg?: string
+ pickerLoadingButtonColor?: string
+ pickerColumnPadding?: string
+ pickerColumnDisabledColor?: string
+ pickerMask?: string
+ pickerLoadingBg?: string
+ pickerRegionSeparatorColor?: string
+ pickerCellArrowSizeLarge?: string
+ pickerRegionColor?: string
+ pickerRegionBgActiveColor?: string
+ pickerRegionFs?: string
+}
+
+export type colPickerThemeVars = {
+ colPickerSelectedHeight?: string
+ colPickerSelectedPadding?: string
+ colPickerSelectedFs?: string
+ colPickerSelectedColor?: string
+ colPickerSelectedFw?: string
+ colPickerLineWidth?: string
+ colPickerLineHeight?: string
+ colPickerLineColor?: string
+ colPickerLineBoxShadow?: string
+ colPickerListHeight?: string
+ colPickerListPaddingBottom?: string
+ colPickerListColor?: string
+ colPickerListColorDisabled?: string
+ colPickerListColorTip?: string
+ colPickerListFs?: string
+ colPickerListFsTip?: string
+ colPickerListItemPadding?: string
+ colPickerListCheckedIconSize?: string
+ colPickerListColorChecked?: string
+}
+
+export type overlayThemeVars = {
+ overlayBg?: string
+ overlayBgDark?: string
+}
+
+export type popupThemeVars = {
+ popupCloseSize?: string
+ popupCloseColor?: string
+}
+
+export type progressThemeVars = {
+ progressPadding?: string
+ progressBg?: string
+ progressDangerColor?: string
+ progressSuccessColor?: string
+ progressWarningColor?: string
+ progressColor?: string
+ progressHeight?: string
+ progressLabelColor?: string
+ progressLabelFs?: string
+ progressIconFs?: string
+}
+
+export type radioThemeVars = {
+ radioMargin?: string
+ radioLabelMargin?: string
+ radioSize?: string
+ radioBg?: string
+ radioLabelFs?: string
+ radioLabelColor?: string
+ radioCheckedColor?: string
+ radioDisabledColor?: string
+ radioDisabledLabelColor?: string
+ radioLargeSize?: string
+ radioLargeLabelFs?: string
+ radioButtonHeight?: string
+ radioButtonMinWidth?: string
+ radioButtonMaxWidth?: string
+ radioButtonRadius?: string
+ radioButtonBg?: string
+ radioButtonFs?: string
+ radioButtonBorder?: string
+ radioButtonDisabledBorder?: string
+ radioDotSize?: string
+ radioDotLargeSize?: string
+ radioDotCheckedBg?: string
+ radioDotCheckedBorderColor?: string
+ radioDotBorderColor?: string
+ radioDotDisabledBorder?: string
+ radioDotDisabledBg?: string
+}
+
+export type searchThemeVars = {
+ searchSidePadding?: string
+ searchPadding?: string
+ searchInputRadius?: string
+ searchInputBg?: string
+ searchInputHeight?: string
+ searchInputPadding?: string
+ searchInputFs?: string
+ searchInputColor?: string
+ searchIconColor?: string
+ searchIconSize?: string
+ searchClearIconSize?: string
+ searchPlaceholderColor?: string
+ searchCancelPadding?: string
+ searchCancelFs?: string
+ searchCancelColor?: string
+ searchLightBg?: string
+}
+
+export type sliderThemeVars = {
+ sliderFs?: string
+ sliderHandleRadius?: string
+ sliderHandleBg?: string
+ sliderAxieHeight?: string
+ sliderColor?: string
+ sliderAxieBg?: string
+ sliderLineColor?: string
+ sliderDisabledColor?: string
+}
+
+export type sortButtonThemeVars = {
+ sortButtonFs?: string
+ sortButtonColor?: string
+ sortButtonHeight?: string
+ sortButtonLineHeight?: string
+ sortButtonLineColor?: string
+}
+
+export type stepsThemeVars = {
+ stepsIconSize?: string
+ stepsInactiveColor?: string
+ stepsFinishedColor?: string
+ stepsIconTextFs?: string
+ stepsErrorColor?: string
+ stepsTitleFs?: string
+ stepsTitleFw?: string
+ stepsLabelFs?: string
+ stepsDescriptionColor?: string
+ stepsIsIconWidth?: string
+ stepsLineColor?: string
+ stepsDotSize?: string
+ stepsDotActiveSize?: string
+}
+
+export type switchThemeVars = {
+ switchSize?: string
+ switchWidth?: string
+ switchHeight?: string
+ switchCircleSize?: string
+ switchBorderColor?: string
+ switchActiveColor?: string
+ switchActiveShadowColor?: string
+ switchInactiveColor?: string
+ switchInactiveShadowColor?: string
+}
+
+export type tabsThemeVars = {
+ tabsNavArrowFs?: string
+ tabsNavArrowOpenFs?: string
+ tabsNavWidth?: string
+ tabsNavHeight?: string
+ tabsNavFs?: string
+ tabsNavColor?: string
+ tabsNavBg?: string
+ tabsNavActiveColor?: string
+ tabsNavDisabledColor?: string
+ tabsNavLineHeight?: string
+ tabsNavLineWidth?: string
+ tabsNavLineBgColor?: string
+ tabsNavMapFs?: string
+ tabsNavMapColor?: string
+ tabsNavMapArrowColor?: string
+ tabsNavMapBtnBeforeBg?: string
+ tabsNavMapButtonBackColor?: string
+ tabsNavMapButtonRadius?: string
+ tabsNavMapModalBg?: string
+}
+
+export type tagThemeVars = {
+ tagFs?: string
+ tagColor?: string
+ tagSmallFs?: string
+ tagInfoColor?: string
+ tagPrimaryColor?: string
+ tagDangerColor?: string
+ tagWarningColor?: string
+ tagSuccessColor?: string
+ tagInfoBg?: string
+ tagPrimaryBg?: string
+ tagDangerBg?: string
+ tagWarningBg?: string
+ tagSuccessBg?: string
+ tagRoundColor?: string
+ tagRoundBorderColor?: string
+ tagRoundRadius?: string
+ tagMarkRadius?: string
+ tagCloseSize?: string
+ tagCloseColor?: string
+ tagCloseActiveColor?: string
+}
+
+export type toastThemeVars = {
+ toastColor?: string
+ toastPadding?: string
+ toastMaxWidth?: string
+ toastRadius?: string
+ toastBg?: string
+ toastFs?: string
+ toastLineHeight?: string
+ toastWithIconMinWidth?: string
+ toastIconSize?: string
+ toastMsgMarginLeft?: string
+ toastIconMarginBottom?: string
+ toastLoadingPadding?: string
+ toastLoadingMarginBottom?: string
+ toastBoxShadow?: string
+}
+
+export type loadingThemeVars = {
+ loadingSize?: string
+ loadingDuration?: string
+}
+
+export type tooltipThemeVars = {
+ tooltipBg?: string
+ tooltipColor?: string
+ tooltipRadius?: string
+ tooltipArrowSize?: string
+ tooltipFs?: string
+ tooltipBlur?: string
+ tooltipPadding?: string
+ tooltipCloseSize?: string
+ tooltipZIndex?: string
+ tooltipLineHeight?: string
+}
+
+export type popoverThemeVars = {
+ popoverBg?: string
+ popoverColor?: string
+ popoverBoxShadow?: string
+ popoverArrowBoxShadow?: string
+ popoverBorderColor?: string
+ popoverRadius?: string
+ popoverArrowSize?: string
+ popoverFs?: string
+ popoverPadding?: string
+ popoverLineHeight?: string
+ popoverZIndex?: string
+}
+
+export type gridItemThemeVars = {
+ gridItemFs?: string
+ gridItemBg?: string
+ gridItemPadding?: string
+ gridItemBorderColor?: string
+ gridItemHoverBg?: string
+ gridItemHoverBgDark?: string
+}
+
+export type statustipThemeVars = {
+ statustipFs?: string
+ statustipColor?: string
+ statustipLineHeight?: string
+ statustipPadding?: string
+}
+
+export type cardThemeVars = {
+ cardBg?: string
+ cardFs?: string
+ cardPadding?: string
+ cardFooterPadding?: string
+ cardShadowColor?: string
+ cardRadius?: string
+ cardLineHeight?: string
+ cardMargin?: string
+ cardTitleColor?: string
+ cardTitleFs?: string
+ cardContentBorderColor?: string
+ cardRectangleTitlePadding?: string
+ cardRectangleContentPadding?: string
+ cardRectangleFooterPadding?: string
+ cardContentColor?: string
+ cardContentLineHeight?: string
+ cardContentMargin?: string
+ cardContentRectangleMargin?: string
+}
+
+export type uploadThemeVars = {
+ uploadSize?: string
+ uploadEvokeIconSize?: string
+ uploadEvokeBg?: string
+ uploadEvokeColor?: string
+ uploadEvokeDisabledColor?: string
+ uploadCloseIconSize?: string
+ uploadCloseIconColor?: string
+ uploadProgressFs?: string
+ uploadFileFs?: string
+ uploadFileColor?: string
+ uploadPreviewNameFs?: string
+ uploadPreviewIconSize?: string
+ uploadPreviewNameBg?: string
+ uploadPreviewNameHeight?: string
+ uploadCoverIconSize?: string
+}
+
+export type curtainThemeVars = {
+ curtainContentRadius?: string
+ curtainContentCloseColor?: string
+ curtainContentCloseFs?: string
+}
+
+export type notifyThemeVars = {
+ notifyTextColor?: string
+ notifyPadding?: string
+ notifyFontSize?: string
+ notifyLineHeight?: string
+ notifyPrimaryBackground?: string
+ notifySuccessBackground?: string
+ notifyDangerBackground?: string
+ notifyWarningBackground?: string
+}
+
+export type skeletonThemeVars = {
+ skeletonBackgroundColor?: string
+ skeletonAnimationGradient?: string
+ skeletonAnimationFlashed?: string
+ skeletonTextHeightDefault?: string
+ skeletonRectHeightDefault?: string
+ skeletonCircleHeightDefault?: string
+ skeletonRowMarginBottom?: string
+ skeletonBorderRadiusText?: string
+ skeletonBorderRadiusRect?: string
+ skeletonBorderRadiusCircle?: string
+}
+
+export type circleThemeVars = {
+ circleTextColor?: string
+}
+
+export type swiperThemeVars = {
+ swiperRadius?: string
+ swiperItemPadding?: string
+ swiperItemTextColor?: string
+ swiperItemTextFs?: string
+}
+
+export type swiperNavThemeVars = {
+ swiperNavDotColor?: string
+ swiperNavDotActiveColor?: string
+ swiperNavDotSize?: string
+ swiperNavDotsBarActiveWidth?: string
+ swiperNavFractionColor?: string
+ swiperNavFractionBgColor?: string
+ swiperNavFractionHeight?: string
+ swiperNavFractionFontSize?: string
+ swiperNavBtnColor?: string
+ swiperNavBtnBgColor?: string
+ swiperNavBtnSize?: string
+}
+
+export type segmentedThemeVars = {
+ segmentedPadding?: string
+ segmentedItemBgColor?: string
+ segmentedItemColor?: string
+ segmentedItemAcitveBg?: string
+ segmentedItemDisabledColor?: string
+}
+
+export type tabbarThemeVars = {
+ tabbarHeight?: string
+ tabbarBoxShadow?: string
+}
+
+export type tabbarItemThemeVars = {
+ tabbarItemTitleFontSize?: string
+ tabbarItemTitleLineHeight?: string
+ tabbarInactiveColor?: string
+ tabbarActiveColor?: string
+ tabbarItemIconSize?: string
+}
+
+export type navbarThemeVars = {
+ navbarHeight?: string
+ navbarColor?: string
+ navbarBackground?: string
+ navbarArrowSize?: string
+ navbarDescFontSize?: string
+ navbarDescFontColor?: string
+ navbarTitleFontSize?: string
+ navbarTitleFontWeight?: string
+ navbarDisabledOpacity?: string
+ navbarHoverColor?: string
+}
+
+export type navbarCapsuleThemeVars = {
+ navbarCapsuleBorderColor?: string
+ navbarCapsuleBorderRadius?: string
+ navbarCapsuleWidth?: string
+ navbarCapsuleHeight?: string
+ navbarCapsuleIconSize?: string
+}
+
+export type tableThemeVars = {
+ tableColor?: string
+ tableBg?: string
+ tableStripeBg?: string
+ tableBorderColor?: string
+ tableFontSize?: string
+}
+
+export type sidebarThemeVars = {
+ sidebarBg?: string
+ sidebarWidth?: string
+ sidebarHeight?: string
+}
+
+export type sidebarItemThemeVars = {
+ sidebarColor?: string
+ sidebarItemHeight?: string
+ sidebarItemLineHeight?: string
+ sidebarDisabledColor?: string
+ sidebarActiveColor?: string
+ sidebarActiveBg?: string
+ sidebarHoverBg?: string
+ sidebarBorderRadius?: string
+ sidebarFontSize?: string
+ sidebarIconSize?: string
+ sidebarActiveBorderWidth?: string
+ sidebarActiveBorderHeight?: string
+}
+
+export type fabThemeVars = {
+ fabTriggerHeight?: string
+ fabTriggerWidth?: string
+ fabActionsPadding?: string
+ fabIconFs?: string
+}
+
+export type countDownThemeVars = {
+ countDownTextColor?: string
+ countDownFontSize?: string
+ countDownLineHeight?: string
+}
+
+export type keyboardThemeVars = {
+ keyboardKeyHeight?: string
+ keyboardKeyFontSize?: string
+ keyboardKeyBackground?: string
+ keyboardKeyBorderRadius?: string
+ keyboardDeleteFontSize?: string
+ keyboardKeyActiveColor?: string
+ keyboardButtonTextColor?: string
+ keyboardButtonBackground?: string
+ keyboardButtonActiveOpacity?: string
+ keyboardBackground?: string
+ keyboardTitleHeight?: string
+ keyboardTitleColor?: string
+ keyboardTitleFontSize?: string
+ keyboardClosePadding?: string
+ keyboardCloseColor?: string
+ keyboardCloseFontSize?: string
+ keyboardIconSize?: string
+}
+
+export type numberKeyboardThemeVars = {
+ numberKeyboardKeyHeight?: string
+ numberKeyboardKeyFontSize?: string
+ numberKeyboardKeyBackground?: string
+ numberKeyboardKeyBorderRadius?: string
+ numberKeyboardDeleteFontSize?: string
+ numberKeyboardKeyActiveColor?: string
+ numberKeyboardButtonTextColor?: string
+ numberKeyboardButtonBackground?: string
+ numberKeyboardButtonActiveOpacity?: string
+ numberKeyboardBackground?: string
+ numberKeyboardTitleHeight?: string
+ numberKeyboardTitleColor?: string
+ numberKeyboardTitleFontSize?: string
+ numberKeyboardClosePadding?: string
+ numberKeyboardCloseColor?: string
+ numberKeyboardCloseFontSize?: string
+ numberKeyboardIconSize?: string
+}
+
+export type passwodInputThemeVars = {
+ passwordInputHeight?: string
+ passwordInputMargin?: string
+ passwordInputFontSize?: string
+ passwordInputRadius?: string
+ passwordInputBackground?: string
+ passwordInputInfoColor?: string
+ passwordInputInfoFontSize?: string
+ passwordInputBorderColor?: string
+ passwordInputErrorInfoColor?: string
+ passwordInputDotSize?: string
+ passwordInputDotColor?: string
+ passwordInputTextColor?: string
+ passwordInputCursorColor?: string
+ passwordInputCursorWidth?: string
+ passwordInputCursorHeight?: string
+ passwordInputCursorDuration?: string
+}
+
+export type formItemThemeVars = {
+ formItemErrorMessageColor?: string
+ formItemErrorMessageFontSize?: string
+ formItemErrorMessageLineHeight?: string
+}
+
+export type backtopThemeVars = {
+ backtopBg?: string
+ backtopIconSize?: string
+}
+
+export type indexBarThemeVars = {
+ indexBarIndexFontSize?: string
+}
+
+export type textThemeVars = {
+ textInfoColor?: string
+ textPrimaryColor?: string
+ textErrorColor?: string
+ textWarningColor?: string
+ textSuccessColor?: string
+}
+
+export type videoPreviewThemeVars = {
+ videoPreviewBg?: string
+ videoPreviewCloseColor?: string
+ videoPreviewCloseFontSize?: string
+}
+
+export type imgCropperThemeVars = {
+ imgCropperIconSize?: string
+ imgCropperIconColor?: string
+}
+
+export type floatingPanelThemeVars = {
+ floatingPanelBg?: string
+ floatingPanelRadius?: string
+ floatingPanelZIndex?: string
+ floatingPanelHeaderHeight?: string
+ floatingPanelBarWidth?: string
+ floatingPanelBarHeight?: string
+ floatingPanelBarBg?: string
+ floatingPanelBarRadius?: string
+ floatingPanelContentBg?: string
+}
+
+export type signatureThemeVars = {
+ signatureBg?: string
+ signatureRadius?: string
+ signatureBorder?: string
+ signatureFooterMarginTop?: string
+ signatureButtonMarginLeft?: string
+}
+
+export type tourThemeVars = {
+ tourZIndex?: string
+ tourPopoverZIndex?: string
+ tourPopoverPadding?: string
+ tourPopoverRadius?: string
+ tourPopoverMinWidth?: string
+ tourPopoverMaxWidth?: string
+ tourPopoverInfoFontSize?: string
+ tourPopoverBg?: string
+ tourInfoBg?: string
+ tourInfoBorderColor?: string
+ tourInfoBorderWidth?: string
+ tourInfoTextColor?: string
+ tourAnimationDuration?: string
+ tourPopoverAnimationTiming?: string
+ tourHighlightAnimationTiming?: string
+ tourButtonFontSize?: string
+ tourButtonRadius?: string
+ tourButtonPadding?: string
+ tourPrimaryButtonBgColor?: string
+ tourPrimaryButtonTextColor?: string
+ tourSkipBgColor?: string
+ tourButtonTextColor?: string
+ tourHighlightShadowColor?: string
+}
+
+export type avatarThemeVars = {
+ avatarSize?: string
+ avatarSizeLarge?: string
+ avatarSizeMedium?: string
+ avatarSizeSmall?: string
+ avatarTextColor?: string
+ avatarFontWeight?: string
+ avatarFontSize?: string
+ avatarFontSizeLarge?: string
+ avatarFontSizeMedium?: string
+ avatarFontSizeSmall?: string
+ avatarLineHeight?: string
+ avatarBgColor?: string
+ avatarBorderRadius?: string
+}
+
+export type avatarGroupThemeVars = {
+ avatarGroupOverlap?: string
+ avatarGroupCollapseFontSize?: string
+}
+
+export type slideVerifyThemeVars = {
+ slideVerifyDisabledColor?: string
+ slideVerifyTextColor?: string
+ slideVerifyTextSize?: string
+ slideVerifySuccessTextColor?: string
+ slideVerifyButtonBg?: string
+ slideVerifyButtonShadow?: string
+ slideVerifyButtonColor?: string
+ slideVerifyButtonSize?: string
+ slideVerifyTrackWidth?: string
+}
+
+export type ConfigProviderThemeVars = baseThemeVars &
+ actionSheetThemeVars &
+ badgeThemeVars &
+ buttonThemeVars &
+ cellThemeVars &
+ calendarThemeVars &
+ checkboxThemeVars &
+ collapseThemeVars &
+ dividerThemeVars &
+ dropMenuThemeVars &
+ inputNumberThemeVars &
+ inputThemeVars &
+ textareaThemeVars &
+ loadmoreThemeVars &
+ messageBoxThemeVars &
+ noticeBarThemeVars &
+ paginationThemeVars &
+ pickerThemeVars &
+ colPickerThemeVars &
+ overlayThemeVars &
+ popupThemeVars &
+ progressThemeVars &
+ radioThemeVars &
+ searchThemeVars &
+ sliderThemeVars &
+ sortButtonThemeVars &
+ stepsThemeVars &
+ switchThemeVars &
+ tabsThemeVars &
+ tagThemeVars &
+ toastThemeVars &
+ loadingThemeVars &
+ tooltipThemeVars &
+ popoverThemeVars &
+ gridItemThemeVars &
+ statustipThemeVars &
+ cardThemeVars &
+ uploadThemeVars &
+ curtainThemeVars &
+ notifyThemeVars &
+ skeletonThemeVars &
+ circleThemeVars &
+ swiperThemeVars &
+ swiperNavThemeVars &
+ segmentedThemeVars &
+ tabbarThemeVars &
+ tabbarItemThemeVars &
+ navbarThemeVars &
+ navbarCapsuleThemeVars &
+ tableThemeVars &
+ sidebarThemeVars &
+ sidebarItemThemeVars &
+ fabThemeVars &
+ countDownThemeVars &
+ keyboardThemeVars &
+ numberKeyboardThemeVars &
+ passwodInputThemeVars &
+ formItemThemeVars &
+ backtopThemeVars &
+ indexBarThemeVars &
+ textThemeVars &
+ videoPreviewThemeVars &
+ imgCropperThemeVars &
+ floatingPanelThemeVars &
+ signatureThemeVars &
+ tourThemeVars &
+ avatarThemeVars &
+ avatarGroupThemeVars &
+ slideVerifyThemeVars
diff --git a/node_modules/wot-design-uni/components/wd-config-provider/wd-config-provider.vue b/node_modules/wot-design-uni/components/wd-config-provider/wd-config-provider.vue
new file mode 100644
index 0000000..2bab9d3
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-config-provider/wd-config-provider.vue
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-count-down/index.scss b/node_modules/wot-design-uni/components/wd-count-down/index.scss
new file mode 100644
index 0000000..c9b93f1
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-down/index.scss
@@ -0,0 +1,15 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(count-down) {
+ color: $-dark-color;
+ }
+}
+
+
+@include b(count-down) {
+ color: $-count-down-text-color;
+ font-size: $-count-down-font-size;
+ line-height: $-count-down-line-height;
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-count-down/types.ts b/node_modules/wot-design-uni/components/wd-count-down/types.ts
new file mode 100644
index 0000000..7f1bdd7
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-down/types.ts
@@ -0,0 +1,41 @@
+import type { ComponentPublicInstance, ExtractPropTypes } from 'vue'
+import { baseProps, makeBooleanProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+export const countDownProps = {
+ ...baseProps,
+ /**
+ * 倒计时时长,单位毫秒
+ */
+ time: makeRequiredProp(Number),
+ /**
+ * 是否开启毫秒
+ */
+ millisecond: makeBooleanProp(false),
+ /**
+ * 格式化时间
+ */
+ format: makeStringProp('HH:mm:ss'),
+ /**
+ * 是否自动开始
+ */
+ autoStart: makeBooleanProp(true)
+}
+
+export type CountDownProps = ExtractPropTypes
+
+export type CountDownExpose = {
+ /**
+ * 开始倒计时
+ */
+ start: () => void
+ /**
+ * 暂停倒计时
+ */
+ pause: () => void
+ /**
+ * 重设倒计时,若 auto-start 为 true,重设后会自动开始倒计时
+ */
+ reset: () => void
+}
+
+export type CountDownInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-count-down/utils.ts b/node_modules/wot-design-uni/components/wd-count-down/utils.ts
new file mode 100644
index 0000000..efa6200
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-down/utils.ts
@@ -0,0 +1,52 @@
+import { padZero } from '../common/util'
+
+export type TimeData = {
+ days: number
+ hours: number
+ minutes: number
+ seconds: number
+ milliseconds: number
+}
+
+export function parseFormat(format: string, timeData: TimeData): string {
+ const { days } = timeData
+ let { hours, minutes, seconds, milliseconds } = timeData
+
+ if (format.includes('DD')) {
+ format = format.replace('DD', padZero(days))
+ } else {
+ hours += days * 24
+ }
+
+ if (format.includes('HH')) {
+ format = format.replace('HH', padZero(hours))
+ } else {
+ minutes += hours * 60
+ }
+
+ if (format.includes('mm')) {
+ format = format.replace('mm', padZero(minutes))
+ } else {
+ seconds += minutes * 60
+ }
+
+ if (format.includes('ss')) {
+ format = format.replace('ss', padZero(seconds))
+ } else {
+ milliseconds += seconds * 1000
+ }
+
+ if (format.includes('S')) {
+ const ms = padZero(milliseconds, 3)
+
+ if (format.includes('SSS')) {
+ format = format.replace('SSS', ms)
+ } else if (format.includes('SS')) {
+ format = format.replace('SS', ms.slice(0, 2))
+ } else {
+ format = format.replace('S', ms.charAt(0))
+ }
+ }
+
+ return format
+}
diff --git a/node_modules/wot-design-uni/components/wd-count-down/wd-count-down.vue b/node_modules/wot-design-uni/components/wd-count-down/wd-count-down.vue
new file mode 100644
index 0000000..04c10f4
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-down/wd-count-down.vue
@@ -0,0 +1,60 @@
+
+
+
+ {{ timeText }}
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-count-to/index.scss b/node_modules/wot-design-uni/components/wd-count-to/index.scss
new file mode 100644
index 0000000..0a96178
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-to/index.scss
@@ -0,0 +1,7 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+
+.wd-count-to{
+ vertical-align: bottom;
+}
diff --git a/node_modules/wot-design-uni/components/wd-count-to/types.ts b/node_modules/wot-design-uni/components/wd-count-to/types.ts
new file mode 100644
index 0000000..5cd17ee
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-to/types.ts
@@ -0,0 +1,117 @@
+import type { ComponentPublicInstance, ExtractPropTypes } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
+import type { TextType } from '../wd-text/types'
+
+export const countToProps = {
+ ...baseProps,
+
+ // 字体大小
+ fontSize: makeNumberProp(16),
+
+ // 文本颜色
+ color: makeStringProp(''),
+ /**
+ * 主题类型
+ * 类型:string
+ * 可选值:'default' /'primary' / 'error' / 'warning' / 'success'
+ * 默认值:'default'
+ */
+ type: makeStringProp('default'),
+ /**
+ * 起始值
+ * 类型:number
+ * 默认值:0
+ */
+ startVal: makeNumberProp(0),
+
+ /**
+ * 最终值
+ * 类型:number
+ * 默认值:2021
+ */
+ endVal: makeNumberProp(2024),
+
+ /**
+ * 从起始值到结束值数字变动的时间,单位毫秒
+ * 类型:number
+ * 默认值:3000
+ */
+ duration: makeNumberProp(3000),
+ /**
+ * 是否自动开始
+ * 类型:boolean
+ * 默认值:true
+ */
+ autoStart: makeBooleanProp(true),
+ /**
+ * 保留的小数位数
+ * 类型:number
+ * 默认值:0
+ * 校验:大于等于0
+ */
+ decimals: {
+ type: Number,
+ required: false,
+ default: 0,
+ validator(value: number) {
+ return value >= 0
+ }
+ },
+
+ // 小数点
+ decimal: makeStringProp('.'),
+
+ // 三位三位的隔开效果
+ separator: makeStringProp(','),
+
+ /**
+ * 前缀
+ * 类型:string
+ * 默认值:''
+ * @example '¥' 人民币前缀
+ */
+ prefix: makeStringProp(''),
+
+ /**
+ * 后缀
+ * 类型:string
+ * 默认值:''
+ */
+ suffix: makeStringProp(''),
+
+ /**
+ * 是否具有连贯性
+ * 类型:boolean
+ * 默认值:true
+ */
+ useEasing: makeBooleanProp(true),
+
+ /**
+ * 自定义根节点样式
+ */
+ customStyle: makeStringProp(''),
+
+ /**
+ * 自定义根节点样式类
+ */
+ customClass: makeStringProp('')
+}
+
+export type CountDownProps = ExtractPropTypes
+
+export type CountUpExpose = {
+ /**
+ * 开始倒计时
+ */
+ start: () => void
+ /**
+ * 暂停倒计时
+ */
+ pause: () => void
+ /**
+ * 重设倒计时,若 auto-start 为 true,重设后会自动开始倒计时
+ */
+ reset: () => void
+}
+
+export type CountToInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-count-to/wd-count-to.vue b/node_modules/wot-design-uni/components/wd-count-to/wd-count-to.vue
new file mode 100644
index 0000000..b72f601
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-count-to/wd-count-to.vue
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-curtain/index.scss b/node_modules/wot-design-uni/components/wd-curtain/index.scss
new file mode 100644
index 0000000..4f7c10a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-curtain/index.scss
@@ -0,0 +1,85 @@
+@import "./../common/abstracts/_mixin.scss";
+@import "./../common/abstracts/variable.scss";
+
+@include b(curtain-wrapper){
+ :deep(.wd-curtain){
+ display: inline-block;
+ border-radius: $-curtain-content-radius;
+ overflow-y: visible !important;
+ background: transparent;
+ font-size: 0;
+ }
+}
+
+
+@include b(curtain) {
+
+ @include e(content) {
+ position: relative;
+ display: inline-block;
+ background: transparent;
+ border-radius: $-curtain-content-radius;
+ }
+ @include e(content-link) {
+ display: block;
+ border-radius: $-curtain-content-radius;
+ }
+ @include e(content-img) {
+ display: block;
+ width: auto;
+ height: auto;
+ border-radius: $-curtain-content-radius;
+ }
+ @include edeep(content-close) {
+ position: absolute;
+ margin: 0;
+ padding: 6px;
+ top: 10px;
+ right: 10px;
+ color: $-curtain-content-close-color;
+ font-size: $-curtain-content-close-fs;
+ -webkit-tap-highlight-color: transparent;
+ &.top {
+ margin: 0 0 0 -18px;
+ top: -62px;
+ right: unset;
+ left: 50%;
+ bottom: unset;
+ }
+ &.top-left {
+ margin: 0;
+ top: -62px;
+ right: unset;
+ left: -6px;
+ bottom: unset;
+ }
+ &.top-right {
+ margin: 0;
+ top: -62px;
+ right: -6px;
+ left: unset;
+ bottom: unset;
+ }
+ &.bottom {
+ margin: 0 0 0 -18px;
+ top: unset;
+ right: unset;
+ left: 50%;
+ bottom: -62px;
+ }
+ &.bottom-left {
+ margin: 0;
+ top: unset;
+ right: unset;
+ left: -6px;
+ bottom: -62px;
+ }
+ &.bottom-right {
+ margin: 0;
+ top: unset;
+ right: -6px;
+ left: unset;
+ bottom: -62px;
+ }
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-curtain/types.ts b/node_modules/wot-design-uni/components/wd-curtain/types.ts
new file mode 100644
index 0000000..ce12a8d
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-curtain/types.ts
@@ -0,0 +1,82 @@
+/*
+ * @Author: weisheng
+ * @Date: 2025-01-25 23:46:29
+ * @LastEditTime: 2025-09-09 10:00:00
+ * @LastEditors: rusheng
+ * @Description:
+ * @FilePath: /wot-design-uni/src/uni_modules/wot-design-uni/components/wd-curtain/types.ts
+ * 记得注释
+ */
+import type { ExtractPropTypes } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeStringProp } from '../common/props'
+
+export type ClosePosition = 'inset' | 'top' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'
+
+export const curtainProps = {
+ ...baseProps,
+ /**
+ * 绑定值,展示/关闭幕帘
+ * @deprecated 请使用 modelValue
+ */
+ value: makeBooleanProp(false),
+ /**
+ * 绑定值,展示/关闭幕帘
+ */
+ modelValue: makeBooleanProp(false),
+ /**
+ * 关闭按钮位置,可选值:inset / top / bottom / top-left / top-right / bottom-left / bottom-right
+ */
+ closePosition: makeStringProp('inset'),
+ /**
+ * 幕帘图片地址,必须使用网络地址
+ */
+ src: String,
+ /**
+ * 幕帘图片点击链接
+ */
+ to: String,
+ /**
+ * 幕帘图片宽度
+ */
+ width: Number,
+ /**
+ * 点击遮罩是否关闭
+ */
+ closeOnClickModal: makeBooleanProp(false),
+ /**
+ * 是否当关闭时将弹出层隐藏(display: none)
+ */
+ hideWhenClose: makeBooleanProp(true),
+ /**
+ * 设置层级
+ * 类型:number
+ * 默认值:10
+ */
+ zIndex: makeNumberProp(10),
+ /**
+ * 自定义关闭按钮的类名
+ * 类型:string
+ * 默认值:''
+ */
+ customCloseClass: makeStringProp(''),
+ /**
+ * 自定义关闭按钮的样式
+ * 类型:string
+ * 默认值:''
+ */
+ customCloseStyle: makeStringProp(''),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ */
+ rootPortal: makeBooleanProp(false),
+ /**
+ * 开启长按图片显示识别小程序码菜单,仅在微信小程序平台有效
+ */
+ showMenuByLongpress: makeBooleanProp(false),
+ /**
+ * 点击图片是否关闭幕帘,默认为 true
+ */
+ closeOnClick: makeBooleanProp(true)
+}
+
+export type CurtainProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-curtain/wd-curtain.vue b/node_modules/wot-design-uni/components/wd-curtain/wd-curtain.vue
new file mode 100644
index 0000000..f646420
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-curtain/wd-curtain.vue
@@ -0,0 +1,172 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker-view/types.ts b/node_modules/wot-design-uni/components/wd-datetime-picker-view/types.ts
new file mode 100644
index 0000000..8b95e3d
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker-view/types.ts
@@ -0,0 +1,120 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+
+export type DateTimeType = 'date' | 'year-month' | 'time' | 'datetime' | 'year'
+
+export const datetimePickerViewProps = {
+ ...baseProps,
+ /**
+ * 选中项,当 type 为 time 时,类型为字符串,否则为 时间戳
+ */
+ modelValue: makeRequiredProp([String, Number]),
+ /**
+ * 加载中
+ */
+ loading: makeBooleanProp(false),
+ /**
+ * 加载的颜色,只能使用十六进制的色值写法,且不能使用缩写
+ */
+ loadingColor: makeStringProp('#4D80F0'),
+ /**
+ * picker内部滚筒高
+ */
+ columnsHeight: makeNumberProp(217),
+ /**
+ * picker item的高度
+ */
+ itemHeight: makeNumberProp(35),
+ /**
+ * 选项的key
+ */
+ valueKey: makeStringProp('value'),
+ /**
+ * 选项的label
+ */
+ labelKey: makeStringProp('label'),
+ /**
+ * 选择器类型,可选值:date / year-month / time
+ */
+ type: makeStringProp('datetime'),
+ /**
+ * 自定义过滤选项的函数,返回列的选项数组
+ */
+ filter: Function as PropType,
+ /**
+ * 自定义弹出层选项文案的格式化函数,返回一个字符串
+ */
+ formatter: Function as PropType,
+ /**
+ * 自定义列的格式化函数
+ */
+ columnFormatter: Function as PropType,
+ /**
+ * 最小日期
+ */
+ minDate: makeNumberProp(new Date(new Date().getFullYear() - 10, 0, 1).getTime()),
+ /**
+ * 最大日期
+ */
+ maxDate: makeNumberProp(new Date(new Date().getFullYear() + 10, 11, 31).getTime()),
+ /**
+ * 最小小时,time类型时生效
+ */
+ minHour: makeNumberProp(0),
+ /**
+ * 最大小时,time类型时生效
+ */
+ maxHour: makeNumberProp(23),
+ /**
+ * 最小分钟,time类型时生效
+ */
+ minMinute: makeNumberProp(0),
+ /**
+ * 最大分钟,time类型时生效
+ */
+ maxMinute: makeNumberProp(59),
+ /**
+ * 是否显示秒选择,仅在 time 和 datetime 类型下生效
+ */
+ useSecond: makeBooleanProp(false),
+ /**
+ * 最小秒数,仅在 time 和 datetime 类型下生效
+ */
+ minSecond: makeNumberProp(0),
+ /**
+ * 最大秒数,仅在 time 和 datetime 类型下生效
+ */
+ maxSecond: makeNumberProp(59),
+ /**
+ * 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
+ */
+ immediateChange: makeBooleanProp(false)
+}
+
+export type DatetimePickerViewColumnType = 'year' | 'month' | 'date' | 'hour' | 'minute' | 'second'
+
+export type DatetimePickerViewOption = {
+ label: string
+ value: number
+}
+
+export type DatetimePickerViewFilter = (type: DatetimePickerViewColumnType, values: number[]) => number[]
+
+export type DatetimePickerViewFormatter = (type: string, value: string) => string
+
+export type DatetimePickerViewColumnFormatter = (picker: DatetimePickerViewExpose) => DatetimePickerViewOption[][]
+
+export type DatetimePickerViewProps = ExtractPropTypes
+
+export type DatetimePickerViewExpose = {
+ updateColumns: () => DatetimePickerViewOption[][]
+ setColumns: (columnList: DatetimePickerViewOption[][]) => void
+ getSelects: () => Record | Record[] | undefined
+ correctValue: (value: string | number) => string | number
+ getOriginColumns: () => {
+ type: DatetimePickerViewColumnType
+ values: number[]
+ }[]
+}
+
+export type DatetimePickerViewInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker-view/util.ts b/node_modules/wot-design-uni/components/wd-datetime-picker-view/util.ts
new file mode 100644
index 0000000..47e8449
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker-view/util.ts
@@ -0,0 +1,30 @@
+import { type DateTimeType } from './types'
+
+/**
+ * @description 根据传入的值和类型,获取当前的选项数组,便于传入 pickerView
+ * @param value
+ * @param type picker类型
+ * @param useSecond 是否使用秒,仅在 time 和 datetime 类型下生效
+ */
+export function getPickerValue(value: string | number, type: DateTimeType, useSecond: boolean = false) {
+ const values: number[] = []
+ const date = new Date(value)
+ if (type === 'time') {
+ const pair = String(value).split(':')
+ values.push(parseInt(pair[0]), parseInt(pair[1]))
+ if (useSecond && pair[2]) {
+ values.push(parseInt(pair[2]))
+ }
+ } else {
+ values.push(date.getFullYear(), date.getMonth() + 1)
+ if (type === 'date') {
+ values.push(date.getDate())
+ } else if (type === 'datetime') {
+ values.push(date.getDate(), date.getHours(), date.getMinutes())
+ if (useSecond) {
+ values.push(date.getSeconds())
+ }
+ }
+ }
+ return values
+}
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker-view/wd-datetime-picker-view.vue b/node_modules/wot-design-uni/components/wd-datetime-picker-view/wd-datetime-picker-view.vue
new file mode 100644
index 0000000..2d764e6
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker-view/wd-datetime-picker-view.vue
@@ -0,0 +1,499 @@
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker/index.scss b/node_modules/wot-design-uni/components/wd-datetime-picker/index.scss
new file mode 100644
index 0000000..b92953e
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker/index.scss
@@ -0,0 +1,164 @@
+@import "./../common/abstracts/_mixin.scss";
+@import "./../common/abstracts/variable.scss";
+
+.wot-theme-dark {
+ @include b(datetime-picker) {
+
+ @include e(placeholder) {
+ color: $-dark-color-gray;
+ }
+
+ :deep(.wd-datetime-picker__arrow),
+ :deep(.wd-datetime-picker__clear) {
+ color: $-dark-color;
+ }
+
+ @include e(action) {
+ @include m(cancel) {
+ color: $-dark-color;
+ }
+ }
+
+ @include e(region) {
+ color: $-dark-color;
+
+ @include when(active) {
+ background: $-picker-region-bg-active-color;
+ color: $-dark-color;
+ }
+ }
+ }
+}
+
+
+@include b(datetime-picker) {
+ @include edeep(cell) {
+ @include when(disabled) {
+ .wd-cell__value {
+ color: $-input-disabled-color;
+ cursor: not-allowed;
+ }
+ }
+ @include when(error) {
+ .wd-cell__value {
+ color: $-input-error-color;
+ }
+ .wd-datetime-picker__arrow {
+ color: $-input-error-color;
+ }
+ }
+ @include when(large) {
+ .wd-datetime-picker__arrow {
+ font-size: $-cell-icon-size-large;
+ }
+ }
+
+ .wd-cell__value--ellipsis {
+ view {
+ @include lineEllipsis;
+ width: 100%;
+ }
+
+ text {
+ @include lineEllipsis;
+ max-width: 100%;
+ }
+ }
+ }
+
+ @include e(placeholder) {
+ color: $-input-placeholder-color;
+ }
+
+ @include edeep(arrow) {
+ display: block;
+ font-size: $-cell-icon-size;
+ color: $-cell-arrow-color;
+ line-height: $-cell-line-height;
+ }
+
+ @include edeep(clear) {
+ display: block;
+ font-size: $-cell-icon-size;
+ color: $-cell-clear-color;
+ line-height: $-cell-line-height;
+ }
+
+ @include edeep(popup) {
+ border-radius: 16px 16px 0px 0px;
+ }
+
+ @include e(wraper) {
+ padding-bottom: var(--window-bottom);
+ }
+
+ @include e(toolbar) {
+ position: relative;
+ display: flex;
+ font-size: $-picker-toolbar-fs;
+ height: $-picker-toolbar-height;
+ line-height: $-picker-action-height;
+ justify-content: space-between;
+ align-items: center;
+ box-sizing: border-box;
+ }
+
+ @include e(action) {
+ display: block;
+ border: none;
+ outline: none;
+ font-size: $-picker-toolbar-fs;
+ color: $-picker-toolbar-finish-color;
+ background: transparent;
+ padding: 24px 15px 14px 15px;
+
+ @include m(cancel) {
+ color: $-picker-toolbar-cancel-color;
+ }
+
+ @include when(loading) {
+ color: $-picker-loading-button-color;
+ }
+ }
+ @include e(title) {
+ display: block;
+ float: 1;
+ color: $-picker-toolbar-title-color;
+ }
+
+ @include e(region-tabs) {
+ display: flex;
+ }
+
+ @include e(region) {
+ width: 50%;
+ display: inline-block;
+ color: $-picker-region-color;
+ text-align: center;
+ padding: 14px 0;
+ font-size: $-picker-region-fs;
+ line-height: 16px;
+ transition: all 0.15s ease-out;
+
+ @include when(active) {
+ background: $-picker-region-bg-active-color;
+ color: $-color-white;
+ }
+ }
+
+ @include e(region-time) {
+ font-size: 16px;
+ margin-top: 2px;
+ }
+
+ @include e(hidden) {
+ visibility: hidden;
+ overflow: hidden;
+ height: 0;
+ }
+
+ @include e(show) {
+ visibility: visible;
+ height: auto;
+ }
+}
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker/types.ts b/node_modules/wot-design-uni/components/wd-datetime-picker/types.ts
new file mode 100644
index 0000000..f02d3b8
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker/types.ts
@@ -0,0 +1,235 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeNumberProp, makeRequiredProp, makeStringProp } from '../common/props'
+import type { DateTimeType, DatetimePickerViewFilter, DatetimePickerViewFormatter } from '../wd-datetime-picker-view/types'
+import type { FormItemRule } from '../wd-form/types'
+
+const now = new Date()
+const defaultMinDate = new Date(now.getFullYear() - 10, 0, 1).getTime()
+const defaultMaxDate = new Date(now.getFullYear() + 10, 11, 31, 23, 59, 59).getTime()
+
+export const datetimePickerProps = {
+ ...baseProps,
+ /**
+ * 选择器左侧文案,label可以不传
+ */
+ label: String,
+ /**
+ * 选择器占位符
+ */
+ placeholder: String,
+ /**
+ * 禁用
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 只读
+ */
+ readonly: makeBooleanProp(false),
+ /**
+ * 加载中
+ */
+ loading: makeBooleanProp(false),
+ /**
+ * 加载的颜色,只能使用十六进制的色值写法,且不能使用缩写
+ */
+ loadingColor: makeStringProp('#4D80F0'),
+ /**
+ * 弹出层标题
+ */
+ title: String,
+ /**
+ * 取消按钮文案
+ */
+ cancelButtonText: String,
+ /**
+ * 确认按钮文案
+ */
+ confirmButtonText: String,
+ /**
+ * 是否必填
+ */
+ required: makeBooleanProp(false),
+ /**
+ * 设置选择器大小,可选值:large
+ */
+ size: String,
+ /**
+ * 设置左侧标题宽度
+ */
+ labelWidth: makeStringProp('33%'),
+ /**
+ * 是否为错误状态,错误状态时右侧内容为红色
+ */
+ error: makeBooleanProp(false),
+ /**
+ * 选择器的值靠右展示
+ */
+ alignRight: makeBooleanProp(false),
+ /**
+ * 点击遮罩是否关闭
+ */
+ closeOnClickModal: makeBooleanProp(true),
+ /**
+ * 弹出面板是否设置底部安全距离(iphone X 类型的机型)
+ */
+ safeAreaInsetBottom: makeBooleanProp(true),
+ /**
+ * 是否超出隐藏
+ */
+ ellipsis: makeBooleanProp(false),
+ /**
+ * picker内部滚筒高
+ */
+ columnsHeight: makeNumberProp(217),
+ /**
+ * 选项的key
+ */
+ valueKey: makeStringProp('value'),
+ /**
+ * 选项的label
+ */
+ labelKey: makeStringProp('label'),
+ /**
+ * 选中项,当 type 为 time 时,类型为字符串;当 type 为 Array 时,类型为范围选择;否则为 时间戳
+ */
+ modelValue: makeRequiredProp([String, Number, Array] as PropType>),
+ /**
+ * 选择器类型,可选值为:date / year-month / time
+ */
+ type: makeStringProp('datetime'),
+ /**
+ * 最小日期
+ */
+ minDate: makeNumberProp(defaultMinDate),
+ /**
+ * 最大日期
+ */
+ maxDate: makeNumberProp(defaultMaxDate),
+ /**
+ * 最小小时,time类型时生效
+ */
+ minHour: makeNumberProp(0),
+ /**
+ * 最大小时,time类型时生效
+ */
+ maxHour: makeNumberProp(23),
+ /**
+ * 最小分钟,time类型时生效
+ */
+ minMinute: makeNumberProp(0),
+ /**
+ * 最大分钟,time类型时生效
+ */
+ maxMinute: makeNumberProp(59),
+ /**
+ * 是否启用秒选择,仅在 time 和 datetime 类型下生效
+ */
+ useSecond: makeBooleanProp(false),
+ /**
+ * 最小秒数,仅在 time 和 datetime 类型下生效
+ */
+ minSecond: makeNumberProp(0),
+ /**
+ * 最大秒数,仅在 time 和 datetime 类型下生效
+ */
+ maxSecond: makeNumberProp(59),
+ /**
+ * 自定义过滤选项的函数,返回列的选项数组
+ */
+ filter: Function as PropType,
+ /**
+ * 自定义弹出层选项文案的格式化函数,返回一个字符串
+ */
+ formatter: Function as PropType,
+ /**
+ * 自定义展示文案的格式化函数,返回一个字符串
+ */
+ displayFormat: Function as PropType,
+ /**
+ * 确定前校验函数,接收 (value, resolve, picker) 参数,通过 resolve 继续执行 picker,resolve 接收1个boolean参数
+ */
+ beforeConfirm: Function as PropType,
+ /**
+ * 在区域选择模式下,自定义展示tab标签文案的格式化函数,返回一个字符串
+ */
+ displayFormatTabLabel: Function as PropType,
+ /**
+ * 默认日期,类型保持与 value 一致,打开面板时面板自动选到默认日期
+ */
+ defaultValue: [String, Number, Array] as PropType>,
+ /**
+ * 弹窗层级
+ */
+ zIndex: makeNumberProp(15),
+ /**
+ * 表单域 model 字段名,在使用表单校验功能的情况下,该属性是必填的
+ */
+ prop: String,
+ /**
+ * 表单验证规则,结合wd-form组件使用
+ */
+ rules: makeArrayProp(),
+ /**
+ * picker cell 外部自定义样式
+ */
+ customCellClass: makeStringProp(''),
+ /**
+ * pickerView 外部自定义样式
+ */
+ customViewClass: makeStringProp(''),
+ /**
+ * label 外部自定义样式
+ */
+ customLabelClass: makeStringProp(''),
+ /**
+ * value 外部自定义样式
+ */
+ customValueClass: makeStringProp(''),
+ /**
+ * 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
+ */
+ immediateChange: makeBooleanProp(false),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ */
+ rootPortal: makeBooleanProp(false),
+ /**
+ * 显示清空按钮
+ */
+ clearable: makeBooleanProp(false),
+ /**
+ * 必填标记位置,可选值:before、after
+ */
+ markerSide: makeStringProp<'before' | 'after'>('before')
+}
+
+export type DatetimePickerDisplayFormat = (items: Record[]) => string
+
+export type DatetimePickerBeforeConfirm = (
+ value: number | string | (number | string)[],
+ resolve: (isPass: boolean) => void,
+ picker: DatetimePickerInstance
+) => void
+
+export type DatetimePickerDisplayFormatTabLabel = (items: Record[]) => string
+
+export type DatetimePickerExpose = {
+ /**
+ * 打开picker弹框
+ */
+ open: () => void
+ /**
+ * 关闭picker弹框
+ */
+ close: () => void
+ /**
+ * 设置加载状态
+ * @param loading 加载状态
+ * @returns
+ */
+ setLoading: (loading: boolean) => void
+}
+
+export type DatetimePickerProps = ExtractPropTypes
+
+export type DatetimePickerInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-datetime-picker/wd-datetime-picker.vue b/node_modules/wot-design-uni/components/wd-datetime-picker/wd-datetime-picker.vue
new file mode 100644
index 0000000..17f3397
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-datetime-picker/wd-datetime-picker.vue
@@ -0,0 +1,801 @@
+
+
+
+
+
+
+
+
+
+
+ {{ showValue[0] ? showValue[0] : placeholder || translate('placeholder') }}
+
+ {{ translate('to') }}
+
+ {{ showValue[1] ? showValue[1] : placeholder || translate('placeholder') }}
+
+
+
+ {{ placeholder || translate('placeholder') }}
+
+
+
+ {{ showValue ? showValue : placeholder || translate('placeholder') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ cancelButtonText || translate('cancel') }}
+
+
+ {{ title }}
+
+
+ {{ confirmButtonText || translate('confirm') }}
+
+
+
+
+
+ {{ translate('start') }}
+ {{ showTabLabel[0] }}
+
+
+ {{ translate('end') }}
+ {{ showTabLabel[1] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-divider/index.scss b/node_modules/wot-design-uni/components/wd-divider/index.scss
new file mode 100644
index 0000000..c67d106
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-divider/index.scss
@@ -0,0 +1,100 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(divider) {
+ color: $-dark-color3;
+
+ @include e(line) {
+ background: $-dark-color-gray;
+ }
+ }
+}
+
+@include b(divider) {
+ position: relative;
+ display: flex;
+ padding: $-divider-padding;
+ margin: $-divider-margin;
+ align-items: center;
+ color: $-divider-color;
+ font-size: $-divider-fs;
+
+ &::after,
+ &::before {
+ flex: 1;
+ display: block;
+ box-sizing: border-box;
+ border-style: solid;
+ border-color: $-divider-line-color;
+ border-width: $-divider-line-height 0 0;
+ }
+
+ &::before {
+ content: '';
+ }
+
+ @include m(center, left, right) {
+ &::after {
+ content: '';
+ margin-left: $-divider-content-left-margin;
+ }
+
+ &::before {
+ margin-right: $-divider-content-right-margin;
+ }
+ }
+
+ @include m(left) {
+ &::before {
+ max-width: $-divider-content-left-width;
+ }
+ }
+
+ @include m(right) {
+ &::after {
+ max-width: $-divider-content-right-width;
+ }
+ }
+
+ @include when(hairline) {
+
+ &::before,
+ &::after {
+ transform: scaleY(0.5);
+ }
+ }
+
+ @include when(dashed) {
+
+ &::before,
+ &::after {
+ border-style: dashed;
+ }
+ }
+
+ @include m(vertical) {
+ display: inline-block;
+ width: $-divider-vertical-line-width;
+ height: $-divider-vertical-height;
+ margin: $-divider-vertical-content-margin;
+ padding: 0;
+ vertical-align: middle;
+
+ &::before {
+ height: 100%;
+ border-width: 0 0 0 $-divider-vertical-line-width;
+ }
+
+ &::after {
+ display: none;
+ }
+
+ @include when(hairline) {
+ &::before {
+ transform: scaleX(0.5);
+ }
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-divider/types.ts b/node_modules/wot-design-uni/components/wd-divider/types.ts
new file mode 100644
index 0000000..12d6726
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-divider/types.ts
@@ -0,0 +1,35 @@
+import type { ExtractPropTypes } from 'vue'
+import { baseProps, makeBooleanProp, makeStringProp } from '../common/props'
+
+export type DividerPosition = 'center' | 'left' | 'right'
+export type DividerDirection = 'horizontal' | 'vertical'
+
+export const dividerProps = {
+ ...baseProps,
+ /**
+ * 自定义颜色
+ */
+ color: String,
+ /**
+ * 内容位置,可选值为 `left` `right` `center`
+ * 默认值:`center`
+ */
+ contentPosition: makeStringProp('center'),
+ /**
+ * 是否显示为虚线
+ * 默认值:`false`
+ */
+ dashed: Boolean,
+ /**
+ * 是否为垂直分割线
+ * 默认值:`false`
+ */
+ vertical: makeBooleanProp(false),
+ /**
+ * 是否显示为 0.5px 的线
+ * 默认值:`true`
+ */
+ hairline: makeBooleanProp(true)
+}
+
+export type DividerProps = ExtractPropTypes
diff --git a/node_modules/wot-design-uni/components/wd-divider/wd-divider.vue b/node_modules/wot-design-uni/components/wd-divider/wd-divider.vue
new file mode 100644
index 0000000..25eb681
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-divider/wd-divider.vue
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/wot-design-uni/components/wd-drop-menu-item/index.scss b/node_modules/wot-design-uni/components/wd-drop-menu-item/index.scss
new file mode 100644
index 0000000..8265f54
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-drop-menu-item/index.scss
@@ -0,0 +1,66 @@
+@import '../common/abstracts/variable';
+@import '../common/abstracts/mixin';
+
+.wot-theme-dark {
+ @include b(drop-item) {
+ color: $-dark-color;
+
+ @include e(tip) {
+ color: $-dark-color3;
+ }
+ }
+}
+
+@include b(drop-item) {
+ position: fixed;
+ right: 0;
+ left: 0;
+ overflow: hidden;
+ font-size: $-drop-menu-item-fs;
+ color: $-drop-menu-item-color;
+ width: 100%;
+ z-index: 101;
+
+ @include e(popup){
+ position: absolute;
+ max-height: 80%;
+ }
+
+ @include e(option) {
+ display: flex;
+ height: $-drop-menu-item-height;
+ line-height: $-drop-menu-item-height;
+ padding: 0 $-drop-menu-side-padding;
+ justify-content: space-between;
+ align-items: center;
+ transition: color .2s;
+
+ @include when(active) {
+ color: $-drop-menu-item-color-active;
+ }
+ }
+
+ @include e(title){
+ display: block;
+ }
+
+ @include e(tip) {
+ display: inline-block;
+ color: $-drop-menu-item-color-tip;
+ font-size: $-drop-menu-item-fs-tip;
+ margin-left: 2px;
+ }
+
+ @include edeep(icon){
+ display: block;
+ font-size: $-drop-menu-option-check-size;
+ }
+
+ @include e(modal) {
+ position: fixed;
+ left: 0;
+ right: 0;
+ background: rgba(0, 0, 0, 0.7);
+ height: 100%;
+ }
+}
\ No newline at end of file
diff --git a/node_modules/wot-design-uni/components/wd-drop-menu-item/types.ts b/node_modules/wot-design-uni/components/wd-drop-menu-item/types.ts
new file mode 100644
index 0000000..336730a
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-drop-menu-item/types.ts
@@ -0,0 +1,94 @@
+import type { ComponentPublicInstance, ExtractPropTypes, PropType } from 'vue'
+import { baseProps, makeArrayProp, makeBooleanProp, makeNumericProp, makeStringProp, numericProp } from '../common/props'
+
+export type DropMenuItemBeforeToggleOption = {
+ // 操作状态:true 打开下拉菜单,false 关闭下拉菜单
+ status: boolean
+ // 回调函数,用于控制是否允许打开或关闭下拉菜单,true 允许打开或关闭,false 不允许打开或关闭
+ resolve: (isPass: boolean) => void
+}
+
+export type DropMenuItemBeforeToggle = (option: DropMenuItemBeforeToggleOption) => void
+
+export const dorpMenuItemProps = {
+ ...baseProps,
+ /**
+ * DropMenuItem 左侧文字样式
+ */
+ customTitle: makeStringProp(''),
+ /**
+ * DropMenuItem 右侧 icon 样式
+ */
+ customIcon: makeStringProp(''),
+ /**
+ * 当前选中项对应选中的 value
+ */
+ modelValue: [String, Number],
+ /**
+ * 列表数据,对应数据结构 [{label: '标题', value: '0', tip: '提示文字'}]
+ */
+ options: makeArrayProp>(),
+ /**
+ * 禁用菜单
+ */
+ disabled: makeBooleanProp(false),
+ /**
+ * 选中的图标名称(可选名称在 wd-icon 组件中)
+ */
+ iconName: makeStringProp('check'),
+ /**
+ * 菜单标题
+ */
+ title: String,
+ /**
+ * 菜单图标
+ */
+ icon: makeStringProp('arrow-down'),
+ /**
+ * 菜单图标大小
+ */
+ iconSize: numericProp,
+ /**
+ * 自定义点击事件
+ */
+ beforeToggle: Function as PropType,
+ /**
+ * 选项对象中,value 对应的 key
+ */
+ valueKey: makeStringProp('value'),
+ /**
+ * 选项对象中,展示的文本对应的 key
+ */
+ labelKey: makeStringProp('label'),
+ /**
+ * 选项对象中,选项说明对应的 key
+ */
+ tipKey: makeStringProp('tip'),
+ /**
+ * 自定义下拉菜单popup样式类
+ */
+ customPopupClass: makeStringProp(''),
+ /**
+ * 自定义下拉菜单popup样式
+ */
+ customPopupStyle: makeStringProp(''),
+ /**
+ * 弹出层高度 这里设置了 就取这里的
+ */
+ popupHeight: makeStringProp(''),
+ /**
+ * 是否从页面中脱离出来,用于解决各种 fixed 失效问题 (H5: teleport, APP: renderjs, 小程序: root-portal)
+ */
+ rootPortal: makeBooleanProp(false)
+}
+
+export type DropMenuItemProps = ExtractPropTypes
+
+export type DropMenuItemExpose = {
+ getShowPop: () => boolean
+ open: () => void
+ close: () => void
+ toggle: () => void
+}
+
+export type DropMenuItemInstance = ComponentPublicInstance
diff --git a/node_modules/wot-design-uni/components/wd-drop-menu-item/wd-drop-menu-item.vue b/node_modules/wot-design-uni/components/wd-drop-menu-item/wd-drop-menu-item.vue
new file mode 100644
index 0000000..b69c777
--- /dev/null
+++ b/node_modules/wot-design-uni/components/wd-drop-menu-item/wd-drop-menu-item.vue
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+