Skip to content

Commit c427a8b

Browse files
chore(all): prepare release 0.17.5
1 parent 5ee79b7 commit c427a8b

14 files changed

+33
-25
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",
3-
"version": "0.17.4",
3+
"version": "0.17.5",
44
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-templating.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,9 +1073,9 @@ declare module 'aurelia-templating' {
10731073

10741074
/**
10751075
* Invoked when the view which contains this controller is created.
1076-
* @param view The view inside which this controller resides.
1076+
* @param owningView The view inside which this controller resides.
10771077
*/
1078-
created(view: any): void;
1078+
created(owningView: any): void;
10791079

10801080
/**
10811081
* Used to automate the proper binding of this controller and its view. Used by the composition engine for dynamic component creation.

dist/amd/aurelia-templating.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2687,9 +2687,9 @@ define(['exports', 'core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pa
26872687
}
26882688
}
26892689

2690-
Controller.prototype.created = function created(view) {
2690+
Controller.prototype.created = function created(owningView) {
26912691
if (this.behavior.handlesCreated) {
2692-
this.viewModel.created(view);
2692+
this.viewModel.created(owningView, this.view);
26932693
}
26942694
};
26952695

dist/aurelia-templating.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,9 +1073,9 @@ declare module 'aurelia-templating' {
10731073

10741074
/**
10751075
* Invoked when the view which contains this controller is created.
1076-
* @param view The view inside which this controller resides.
1076+
* @param owningView The view inside which this controller resides.
10771077
*/
1078-
created(view: any): void;
1078+
created(owningView: any): void;
10791079

10801080
/**
10811081
* Used to automate the proper binding of this controller and its view. Used by the composition engine for dynamic component creation.

dist/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3241,11 +3241,11 @@ export class Controller {
32413241

32423242
/**
32433243
* Invoked when the view which contains this controller is created.
3244-
* @param view The view inside which this controller resides.
3244+
* @param owningView The view inside which this controller resides.
32453245
*/
3246-
created(view): void {
3246+
created(owningView): void {
32473247
if (this.behavior.handlesCreated) {
3248-
this.viewModel.created(view);
3248+
this.viewModel.created(owningView, this.view);
32493249
}
32503250
}
32513251

dist/commonjs/aurelia-templating.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,9 +1073,9 @@ declare module 'aurelia-templating' {
10731073

10741074
/**
10751075
* Invoked when the view which contains this controller is created.
1076-
* @param view The view inside which this controller resides.
1076+
* @param owningView The view inside which this controller resides.
10771077
*/
1078-
created(view: any): void;
1078+
created(owningView: any): void;
10791079

10801080
/**
10811081
* Used to automate the proper binding of this controller and its view. Used by the composition engine for dynamic component creation.

dist/commonjs/aurelia-templating.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,9 +2708,9 @@ var Controller = (function () {
27082708
}
27092709
}
27102710

2711-
Controller.prototype.created = function created(view) {
2711+
Controller.prototype.created = function created(owningView) {
27122712
if (this.behavior.handlesCreated) {
2713-
this.viewModel.created(view);
2713+
this.viewModel.created(owningView, this.view);
27142714
}
27152715
};
27162716

dist/es6/aurelia-templating.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,9 +1073,9 @@ declare module 'aurelia-templating' {
10731073

10741074
/**
10751075
* Invoked when the view which contains this controller is created.
1076-
* @param view The view inside which this controller resides.
1076+
* @param owningView The view inside which this controller resides.
10771077
*/
1078-
created(view: any): void;
1078+
created(owningView: any): void;
10791079

10801080
/**
10811081
* Used to automate the proper binding of this controller and its view. Used by the composition engine for dynamic component creation.

dist/es6/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3241,11 +3241,11 @@ export class Controller {
32413241

32423242
/**
32433243
* Invoked when the view which contains this controller is created.
3244-
* @param view The view inside which this controller resides.
3244+
* @param owningView The view inside which this controller resides.
32453245
*/
3246-
created(view): void {
3246+
created(owningView): void {
32473247
if (this.behavior.handlesCreated) {
3248-
this.viewModel.created(view);
3248+
this.viewModel.created(owningView, this.view);
32493249
}
32503250
}
32513251

dist/system/aurelia-templating.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,9 +1073,9 @@ declare module 'aurelia-templating' {
10731073

10741074
/**
10751075
* Invoked when the view which contains this controller is created.
1076-
* @param view The view inside which this controller resides.
1076+
* @param owningView The view inside which this controller resides.
10771077
*/
1078-
created(view: any): void;
1078+
created(owningView: any): void;
10791079

10801080
/**
10811081
* Used to automate the proper binding of this controller and its view. Used by the composition engine for dynamic component creation.

0 commit comments

Comments
 (0)