Skip to content

Releases: Availity/availity-angular

v1.2.0

17 Oct 16:44
Compare
Choose a tag to compare

Added

  • e37bd01 added option av-val-show, when true, allows the validation framework to show the validation messages by bypassing the $dirty flag check
  • f878ed3 added option av-show-on-load to popover directive

v1.1.0

12 Oct 20:42
Compare
Choose a tag to compare

Added

  • 6858c10 added phone and email validators

Fixed

  • 349f7e2 made unit tests timezone aware
  • e22b716 fixed bug with hiding modal programmatically

v1.0.0

01 Oct 17:52
Compare
Choose a tag to compare

Improvements

  • 0d26b94 updated tabs to allow binding within templates
  • 306fbc1 ng-click shows cursor on hover -- behaves as if it is clickable

Docs

  • 07c840f make examples IE8 compliant

v0.17.0

29 Sep 07:31
Compare
Choose a tag to compare

Breaking

  • e15ea8a update AvModal to use promises. The async template loading and modal animation was causing timing issues when certain modal methods were being invoked. The modal methods were changed to return a promise when the animation completes and the modal has fully loaded.
modalSmall.show().then(function() {
  $log.info('modal shown');
});

Added

  • 83c4666 tabs directive
  • e15ea8a added avModalManager that can be used to close the top most modal from anywhere in the application. This can be useful for closing modals during route changes.
$scope.$on('$stateChangeSuccess', function(event, toState) {

  if(toState.name === 'three') {
    avModalManager.closeAll();
  }
});

Fixed

  • 0394c88 fixed issue #127. Validation framework was updated to properly determine when a checkbox and radio input field are empty (better integration with vanilla angular)
  • 1358efc breadcrumbs now replace their dom element

Dev

v0.16.1

15 Sep 05:49
Compare
Choose a tag to compare

Improvements

  • cab94a1 allow dropdowns to be configured globally with a provider
  • 975a0f8 pass original payload (data) to callbacks for get/query/create/remove/update
  • a829183 show full stacktrace when logging exceptions with avLogger
  • 4a2a63e bump uikit v0.12.3
  • e511dae allow avUsersResource.me() to accept a $http config
  • 7e570e5, 0fa0215, 0fa0215 better block-ui integration

Docs

Dev

  • d35da1b add less:dev gulp watch task

v0.16.0

09 Sep 21:12
Compare
Choose a tag to compare

Added

v0.15.3

02 Sep 18:18
Compare
Choose a tag to compare

Improved

  • 65803f9 av-datepicker now correctly ignores empty values

v0.15.2

24 Aug 22:35
Compare
Choose a tag to compare

Improved

  • 874397f Added support for API resource groups

v0.15.1

21 Aug 00:36
Compare
Choose a tag to compare

Improved

  • 914a635 allow string format for date models for datepicker

Dev

  • 23d859b sinon.js was breaking IE8
  • b563c69 fix versions for bower deps to prevent auto upgrades

v0.15.0

18 Aug 15:43
Compare
Choose a tag to compare

Added

  • 8e572fa support DELETE without id
  • 4dc8be9 allow invalid input to pass through validation and into the Angular models. Update validation framework to RESET validation back to pristine state.
  • a42f8e5 integrate Angular with Velocity.js
  • 1ac34d7 remove label directives

Docs

Fixed

  • 2c3421c IE < 11 fires input event when a placeholder changes
  • c110378 size validator doesn't work with input type=number