Skip to content

Releases: Availity/availity-angular

v1.6.2

12 Jan 03:54
Compare
Choose a tag to compare

Fixed

  • b0ac790 Fixed linter warnings, case where responseKey is not needed in scroll pagination

v1.6.1

11 Jan 20:02
Compare
Choose a tag to compare

Fixed

  • b66c765 Fix for updating pagination counts in scroll pagination plugin

v1.6.0

11 Jan 20:01
Compare
Choose a tag to compare

Improved

v1.5.1

11 Jan 19:05
Compare
Choose a tag to compare

Fixed

  • 5782c40 Allow any nested property to be used for scroll pagination

v1.5.0

08 Jan 20:03
Compare
Choose a tag to compare

Added

v1.4.0

04 Dec 02:52
Compare
Choose a tag to compare

Added

Fixed

  • c09c495 Properly initialize Piwik global variable window._paq in the wrapper service avPiwikAnalytics

Improved

  • 3e698f8 Allow to api resource factory to build URLS with path segments that are missing /

v1.3.0

30 Nov 16:55
Compare
Choose a tag to compare

Fixed

  • 761c103 return promise from modal $scope helpers

Added

  • #165 Piwik integration

Piwik is disabled by default. To enable:

  • Initialize availity.config module
availity.demo = angular.module('availity.demo', [
    'availity',
    'availity.ui',
    'availity.ui.templates',
    'availity.config'
  ]);
  • Initialize Piwik provider
availity.demo.config(function(avPiwikAnalyticsProvider) {
  avPiwikAnalyticsProvider.enabled(true);
  avPiwikAnalyticsProvider.setSiteID(1);
});

v1.2.3

11 Nov 11:53
Compare
Choose a tag to compare

Fixed

  • 34f7d11 fixed sync issue with Select2 and Angular when using the remote Select2 feature for multiple dropdowns. In order for Select2 to handle multiple/remote dropdowns the attribute correlationId must be set on the dom element that instructs Angular which attribute to use when converting the model data to the format Select2 understands
  • 4ba26f2 the ISO Date feature in datepicker was causing Angular to go into infinite loop. The ISO wrapper function no longer changes the $modelValue when an ISO date format is detected

v1.2.2

09 Nov 16:15
Compare
Choose a tag to compare

Added

  • 2d4e9f3 - Added avDatepickerConfig for overriding datepicker defaults

v1.2.1

26 Oct 18:01
Compare
Choose a tag to compare

Fixed

  • 7339615 modal should resolve promises on hide, show and toggle

Improvement

  • 2a53c2f bump av-uikit v0.15.0
  • 7de7510 remove optional ngSubmit from form directive

Dev