Skip to content

Commit 991ad7a

Browse files
committed
chore(release): prepare release 1.14.3
1 parent 812b3fa commit 991ad7a

12 files changed

+21
-14
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-templating-resources",
3-
"version": "1.14.2",
3+
"version": "1.14.3",
44
"description": "A standard set of behaviors, converters and other resources for use with the Aurelia templating library.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/commonjs/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2015/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/es2017/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native-modules/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/system/aurelia-templating-resources.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/aurelia-templating-resources.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,23 +216,23 @@ export declare class AbstractRepeater {
216216
* @param {Boolean} skipAnimation Should the removal animation be skipped?
217217
* @return {Promise|null}
218218
*/
219-
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
219+
removeAllViews(returnToCache?: boolean, skipAnimation?: boolean): any;
220220
/**
221221
* Removes an array of Views from the repeater.
222222
*
223223
* @param {Array} viewsToRemove The array of views to be removed.
224224
* @param {Boolean} returnToCache Should the view be returned to the view cache?
225225
* @param {Boolean} skipAnimation Should the removal animation be skipped?
226226
*/
227-
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): (any | Promise<any>)[];
227+
removeViews(viewsToRemove: Array<View>, returnToCache?: boolean, skipAnimation?: boolean): any;
228228
/**
229229
* Removes a view from the repeater at a specific index.
230230
*
231231
* @param {Number} index The index of the view to be removed.
232232
* @param {Boolean} returnToCache Should the view be returned to the view cache?
233233
* @param {Boolean} skipAnimation Should the removal animation be skipped?
234234
*/
235-
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): any | Promise<any>;
235+
removeView(index: number, returnToCache?: boolean, skipAnimation?: boolean): any;
236236
/**
237237
* Forces a particular view to update it's bindings, called as part of
238238
* an in-place processing of items for better performance

doc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [1.14.3](https://github.com/aurelia/templating-resources/compare/1.14.2...1.14.3) (2022-04-19)
6+
7+
8+
### Bug Fixes
9+
10+
* **typings:** ensure compat typings for abstract repeater ([812b3fa](https://github.com/aurelia/templating-resources/commit/812b3fa49536e8687c04259feaf92330717352c1))
11+
512
### [1.14.2](https://github.com/aurelia/templating-resources/compare/1.14.1...1.14.2) (2022-04-19)
613

714

doc/api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)