Skip to content

Latest commit

 

History

History
93 lines (57 loc) · 1.17 KB

CHANGELOG.md

File metadata and controls

93 lines (57 loc) · 1.17 KB

BalmScroll ChangeLog

0.6.0 (2020.02.19)

Chores

  • clean core code
  • fix custom event bug for all components
  • update docs

0.5.3 (2019.10.29)

Bugfix

  • fix touchmove bug

0.5.2 (2019.10.22)

New Features

  • update pullUp and pullDown actions
    • pullDownAction(refresh: Function)
    • pullUpAction(refresh: Function)
<ui-scroll ref="iScroll" :pullUpAction="pullUpAction"></ui-scroll>
export default {
  methods: {
    firstLoaded() {
      // Update here your DOM

      this.$refs.iScroll.refresh();
    },
    pullUpAction(refresh) {
      // Update here your DOM

      setTimeout(function() {
        refresh();
      }, 0);
    }
  }
};

Breaking Change

  • remove config: refreshTimeout

0.5.1 (2019.10.21)

New Config

  • add debug: boolean prop for development

Bugfix

  • fix pullUpLabel watch status

0.5.0 (2019.08.13)

New Config

  • add scrollEnabled: boolean prop for load more data controls

0.4.0 (2019.07.18)

New Config

  • add excludes: array prop

Bugfix

  • fix transition style bug
  • fix touchmove event bug

0.3.0 (2019.07.12)

  • demo