Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Releases: b2nil/taro-ui-vue3

Release v1.0.0-alpha.11

22 Oct 12:21
Compare
Choose a tag to compare
Pre-release

Fixes

  • AtVirtualScroll: 修复 #44 AtVirtualScroll 滚动时发生抖动 (4677951)

Enhancement

  • AtVirtualScroll: 新增 viewport 属性 (e09a78c)

Release v1.0.0-alpha.10

21 Oct 15:15
Compare
Choose a tag to compare
Pre-release

Features

  • 新增长列表组件: AtVirtualScroll (2c523d8, 5496416)

  • 新增长列表组件 Demo

Release v1.0.0-alpha.9

19 Oct 05:13
Compare
Choose a tag to compare
Pre-release

Fixes

  • AtListItem: 修复 classNamecustomStyle 未定义的问题
  • AtIndexes: 修复 #38 H5 中 AtIndexes 点击字母索引跳转失效
  • AtSearchBar:
    • 修复 #41 H5 中 AtSearchBar 点击搜索按钮后,不能彻底清空搜索内容
    • Enhancement: 小程序以及 H5 AtSearchBaronActionClick 事件默认清空搜索内容
  • 构建配置: 修复 #40 H5 使用 Taro.xxx 接口的组件报错:Taro__default.default.xxx is not a function h5 (Thanks to @ljquan )

Release v1.0.0-alpha.8

14 Oct 05:37
Compare
Choose a tag to compare
Pre-release

Fixes

  • 修复 AtTabs 不能正常显示 Slot 内容 (#35)
  • 移除 typesReact 相关的依赖

Release v1.0.0-alpha.7

08 Oct 14:57
Compare
Choose a tag to compare
Pre-release

Fixes

  • 修复 AtCurtain closeBtnPosition 默认类型错误
  • 导出 AtFlex 和 AtFlexItem
  • 更新与 H5 相关的 Readme、Config 等内容

Release v1.0.0-alpha.6

25 Sep 14:46
Compare
Choose a tag to compare
Pre-release

Enhancement

  • 采用函数式插槽(function slots), 避免编译至 h5 时出现 non-funtion value encountered with default slot 的警告

Bug Fixes

  • AtCalendar Demo: 修复跳转示例当月不能跳转的问题

Release v1.0.0-alpha.5

23 Sep 14:26
Compare
Choose a tag to compare
Pre-release

Bug Fixes

  • AtAccordion: 修复 #29: H5 Accordion 展开和收起动画异常

  • AtFlex: 导出 AtFlex 和 AtFlexItem

  • AtInput, AtSearchBar: 修复 #30: H5 和 Alipay 端 AtSearchBar、AtInput 不能彻底清除 input 的值

  • AtTabs: 修复 Alipay 小程序 Tab Item 标题换行

  • Demo:

    • 增加 h5 编译配置, Demo 项目可编译至 h5 供正常体验的参考
    • 根据设备宽度设置 demo 页面的显示宽度
    • 修复 #18 支付宝小程序和 h5 端跑马灯文字方向错误
    • 修复百度小程序分包设置错误

Release v1.0.0-alpha.4

20 Sep 01:26
Compare
Choose a tag to compare
Pre-release

Bug Fixes:

  • AtCalendar:

    • 修复小程序端日期列表显示不全,#23
    • 修复 Alipay 小程序滑动时不能更新月份, #22
  • 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

17 Sep 13:22
Compare
Choose a tag to compare
v1.0.0-alpha.3 Pre-release
Pre-release

Fixes

  • 修复 #8: AtIndexes 的 onSrollIntoView 事件不能跳转至目标区域
  • 修复 #13: Accordion 展开和收起动画异常

Feature

  • AtIndexes 的索引列表增加了索引选中样式

Release v1.0.0-alpha.2

15 Sep 16:15
Compare
Choose a tag to compare
Pre-release

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 and style to replace the props of className and customStyle
    // before
    <at-card className="custom-class" customStyle="height: 20px;">...</at-card>
    
    // NOW
    <at-card class="custom-class" style="height: 20px;">...</at-card>
    The props class and style will be merged to the attrs of the component's root node:
    setup(props, { slots, attrs }) {
      h(View, mergeProps(attrs, {
         class: rootClasses.value
      }), slots.default())
    }
  • and some other minor fixes