Skip to content
This repository was archived by the owner on Mar 21, 2021. It is now read-only.

Releases: allenhwkim/angular-template

v2.4.0

25 Jan 21:48

Choose a tag to compare

added ht-include-context attribute is by ht-include directive that allows you to remap some values used in current context to the one used in included template. This is particularly useful when including a template within repeat block

v2.3.3

14 Jan 22:31

Choose a tag to compare

fixes #20 (broken date pipe when parsing 2018-01-14T22:26:59.680Z )

v2.3.2

06 Nov 19:48

Choose a tag to compare

Bugfix for ng-repeat expressions in case it included track by. From now on it will be ignored.

v2.3.1

26 Sep 12:31

Choose a tag to compare

  • bugfix for expression that has quoted string inside quotes, such as {{1288323623006 | date:'MM/dd/yyyy \'a:t\' h:mma':'+0200' }}"

v2.3.0

26 Sep 10:39

Choose a tag to compare

  • limitTo pipe
  • filter pipe
  • the above works inside ht-repeat
  • bugfix for expression parser (colons or pipes were not escaped correctly inside quotes)

v2.2.0

25 Sep 11:41

Choose a tag to compare

  • #15 bugfix to ht-if in case it was added to an element with ht-repeat
  • #14 pipes / filters support. Now it is possible to use them inside expressions: e.g. {{num | number:2 }}. lowercase,uppercase,date,number,currency,json are supported and mostly taken from angularjs thus should work exactly the same.

Additionally a new option 'locale' was added to control number/date formatting.

v2.1.4

22 Aug 10:57

Choose a tag to compare

bugfix for includeDirs, template was not loaded correctly if it resided in other than the path set in includeDirs[0]

v2.1.3

22 Aug 10:38

Choose a tag to compare

bugfix for cache option, directives that created helper functions didn't work when cache was hit

v2.1.2

18 Aug 10:22

Choose a tag to compare

Fix for breaking change in cheerio v1

specs and other unrelated files are now excluded from npm package

v2.1.0

09 Aug 18:35

Choose a tag to compare

Refactored internals to make it easier to develop new features.

Additionally ng-class, ng-style, ng-bind, ng-bind-html are now supported and works in the same way as in angularjs