This repository has been archived by the owner on Dec 6, 2021. It is now read-only.
Releases: b2nil/taro-ui-vue3
Releases · b2nil/taro-ui-vue3
Release v1.0.0-alpha.11
Release v1.0.0-alpha.10
Release v1.0.0-alpha.9
Fixes
- AtListItem: 修复
className
和customStyle
未定义的问题 - AtIndexes: 修复 #38 H5 中
AtIndexes
点击字母索引跳转失效 - AtSearchBar:
- 修复 #41 H5 中
AtSearchBar
点击搜索按钮后,不能彻底清空搜索内容 - Enhancement: 小程序以及 H5
AtSearchBar
的onActionClick
事件默认清空搜索内容
- 修复 #41 H5 中
- 构建配置: 修复 #40 H5 使用 Taro.xxx 接口的组件报错:Taro__default.default.xxx is not a function h5 (Thanks to @ljquan )
Release v1.0.0-alpha.8
Fixes
- 修复
AtTabs
不能正常显示 Slot 内容 (#35) - 移除
types
与React
相关的依赖
Release v1.0.0-alpha.7
Fixes
- 修复 AtCurtain
closeBtnPosition
默认类型错误 - 导出 AtFlex 和 AtFlexItem
- 更新与 H5 相关的 Readme、Config 等内容
Release v1.0.0-alpha.6
Enhancement
- 采用函数式插槽(function slots), 避免编译至 h5 时出现
non-funtion value encountered with default slot
的警告
Bug Fixes
- AtCalendar Demo: 修复跳转示例当月不能跳转的问题
Release v1.0.0-alpha.5
Bug Fixes
Release v1.0.0-alpha.4
Bug Fixes:
-
AtCalendar:
-
AtInput:
- 修复各小程序端
clear
清除输入内容的逻辑 - 修复 placeholder 显示样式
- 修复各小程序端
-
AtTextarea:
- 修复 Alipay 小程序字数统计重复渲染, #24
- 修复 placeholder 显示样式
-
AtSearchBar: 修复字节小程序端 input value 清除失效
-
AtActionSheet: 修复 AtActionSheetFooter 的
onClick
属性类型 -
Demo Pages:
- 修复 Alipay 小程序端分包路径错误
- 移除 Toast Demo 中的调试代码
Alipay 小程序端已知问题
-
AtCalendar: 由于 Taro 的
Swiper
组件暂不支持支付宝内置Swiper
组件的onAnimationEnd
属性, 编译后,需手动修改base.axml
中的<template name="tmpl_0_swiper">
基础模板, 将swiper
节点中的onAnimationFinish
修改为onAnimationEnd
, 否则滑动切换时不能更新月份 -
AtTextarea: 由于 Taro 的
Textarea
组件不支持支付宝textarea
组件的show-count
属性, 所以字数统计不能通过设置:count="false"
直接关闭, 需要手动修改编译后的 base.axml, 在<template name="tmpl_0_textarea_focus">
和<template name="tmpl_0_textarea_blur">
基础模板下的textarea
节点中添加show-count="{{i.showCount}}"
v1.0.0-alpha.3
Release v1.0.0-alpha.2
Overview of this new release:
- Use computed classes to replace the dependency of classnames
const rootClasses = computed(() => ({ 'at-xxx': true, [`xxx-${props.xxx}`]: Boolean(props.xxx) }))
- Use
class
andstyle
to replace the props ofclassName
andcustomStyle
The props// before <at-card className="custom-class" customStyle="height: 20px;">...</at-card> // NOW <at-card class="custom-class" style="height: 20px;">...</at-card>
class
andstyle
will be merged to theattrs
of the component's root node:setup(props, { slots, attrs }) { h(View, mergeProps(attrs, { class: rootClasses.value }), slots.default()) }
- and some other minor fixes