Skip to content

Commit

Permalink
chore(release): prepare release 1.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bigopon committed Apr 19, 2022
1 parent 812b3fa commit 991ad7a
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "1.14.2",
"version": "1.14.3",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es2015/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es2017/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/system/aurelia-templating-resources.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/types/aurelia-templating-resources.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,23 +216,23 @@ export declare class AbstractRepeater {
* @param {Boolean} skipAnimation Should the removal animation be skipped?
* @return {Promise|null}
*/
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): any;
/**
* Removes an array of Views from the repeater.
*
* @param {Array} viewsToRemove The array of views to be removed.
* @param {Boolean} returnToCache Should the view be returned to the view cache?
* @param {Boolean} skipAnimation Should the removal animation be skipped?
*/
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): any;
/**
* Removes a view from the repeater at a specific index.
*
* @param {Number} index The index of the view to be removed.
* @param {Boolean} returnToCache Should the view be returned to the view cache?
* @param {Boolean} skipAnimation Should the removal animation be skipped?
*/
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): any | Promise<any>;
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): any;
/**
* Forces a particular view to update it's bindings, called as part of
* an in-place processing of items for better performance
Expand Down
7 changes: 7 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.14.3](https://github.com/aurelia/templating-resources/compare/1.14.2...1.14.3) (2022-04-19)


### Bug Fixes

* **typings:** ensure compat typings for abstract repeater ([812b3fa](https://github.com/aurelia/templating-resources/commit/812b3fa49536e8687c04259feaf92330717352c1))

### [1.14.2](https://github.com/aurelia/templating-resources/compare/1.14.1...1.14.2) (2022-04-19)


Expand Down
2 changes: 1 addition & 1 deletion doc/api.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-resources",
"version": "1.14.2",
"version": "1.14.3",
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 991ad7a

Please sign in to comment.