Skip to content

Commit

Permalink
chore(all): prepare release 0.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 16, 2015
1 parent d025abf commit b999c43
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 16 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",
"version": "0.13.6",
"version": "0.13.7",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
4 changes: 2 additions & 2 deletions dist/amd/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ declare module 'aurelia-templating' {
constructor(moduleId: string);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise;
load(container: Container, loadContext?: string[]): Promise<void>;
}
export class ResourceDescription {
constructor(key: string, exportedValue: any, resourceTypeMeta: Object);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise | void;
load(container: Container, loadContext?: string[]): Promise<void> | void;
static get(resource: any, key?: string): ResourceDescription;
}
export class ModuleAnalyzer {
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ declare module 'aurelia-templating' {
constructor(moduleId: string);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise;
load(container: Container, loadContext?: string[]): Promise<void>;
}
export class ResourceDescription {
constructor(key: string, exportedValue: any, resourceTypeMeta: Object);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise | void;
load(container: Container, loadContext?: string[]): Promise<void> | void;
static get(resource: any, key?: string): ResourceDescription;
}
export class ModuleAnalyzer {
Expand Down
4 changes: 2 additions & 2 deletions dist/es6/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ declare module 'aurelia-templating' {
constructor(moduleId: string);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise;
load(container: Container, loadContext?: string[]): Promise<void>;
}
export class ResourceDescription {
constructor(key: string, exportedValue: any, resourceTypeMeta: Object);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise | void;
load(container: Container, loadContext?: string[]): Promise<void> | void;
static get(resource: any, key?: string): ResourceDescription;
}
export class ModuleAnalyzer {
Expand Down
8 changes: 6 additions & 2 deletions dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,8 @@ export class ViewFactory{
applySurrogateInstruction(container, element, this.surrogateInstruction, behaviors, bindings, children);
}

//TODO: get DOMBoundary from container; attach to instructable to be picked up by delegated events

for(i = 0, ii = instructables.length; i < ii; ++i){
applyInstructions(containers, executionContext, instructables[i],
instructions[i], behaviors, bindings, children, contentSelectors, partReplacements, resources);
Expand Down Expand Up @@ -2351,6 +2353,8 @@ export class HtmlBehaviorResource {
}

create(container:Container, instruction?:Object=defaultInstruction, element?:Element=null, bindings?:Binding[]=null):BehaviorInstance{
//TODO: push host into container as DOMBoundary

var executionContext = instruction.executionContext || container.get(this.target),
behaviorInstance = new BehaviorInstance(this, executionContext, instruction),
childBindings = this.childBindings,
Expand Down Expand Up @@ -2510,7 +2514,7 @@ export class ResourceModule {
}
}

load(container:Container, loadContext?:string[]):Promise{
load(container:Container, loadContext?:string[]):Promise<void>{
if(this.onLoaded){
return this.onLoaded;
}
Expand Down Expand Up @@ -2576,7 +2580,7 @@ export class ResourceDescription {
this.metadata.register(registry, name);
}

load(container:Container, loadContext?:string[]):Promise|void{
load(container:Container, loadContext?:string[]):Promise<void>|void{
let metadata = this.metadata,
value = this.value;

Expand Down
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ declare module 'aurelia-templating' {
constructor(moduleId: string);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise;
load(container: Container, loadContext?: string[]): Promise<void>;
}
export class ResourceDescription {
constructor(key: string, exportedValue: any, resourceTypeMeta: Object);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise | void;
load(container: Container, loadContext?: string[]): Promise<void> | void;
static get(resource: any, key?: string): ResourceDescription;
}
export class ModuleAnalyzer {
Expand Down
8 changes: 6 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,8 @@ export class ViewFactory{
applySurrogateInstruction(container, element, this.surrogateInstruction, behaviors, bindings, children);
}

//TODO: get DOMBoundary from container; attach to instructable to be picked up by delegated events

for(i = 0, ii = instructables.length; i < ii; ++i){
applyInstructions(containers, executionContext, instructables[i],
instructions[i], behaviors, bindings, children, contentSelectors, partReplacements, resources);
Expand Down Expand Up @@ -2351,6 +2353,8 @@ export class HtmlBehaviorResource {
}

create(container:Container, instruction?:Object=defaultInstruction, element?:Element=null, bindings?:Binding[]=null):BehaviorInstance{
//TODO: push host into container as DOMBoundary

var executionContext = instruction.executionContext || container.get(this.target),
behaviorInstance = new BehaviorInstance(this, executionContext, instruction),
childBindings = this.childBindings,
Expand Down Expand Up @@ -2510,7 +2514,7 @@ export class ResourceModule {
}
}

load(container:Container, loadContext?:string[]):Promise{
load(container:Container, loadContext?:string[]):Promise<void>{
if(this.onLoaded){
return this.onLoaded;
}
Expand Down Expand Up @@ -2576,7 +2580,7 @@ export class ResourceDescription {
this.metadata.register(registry, name);
}

load(container:Container, loadContext?:string[]):Promise|void{
load(container:Container, loadContext?:string[]):Promise<void>|void{
let metadata = this.metadata,
value = this.value;

Expand Down
4 changes: 2 additions & 2 deletions dist/system/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@ declare module 'aurelia-templating' {
constructor(moduleId: string);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise;
load(container: Container, loadContext?: string[]): Promise<void>;
}
export class ResourceDescription {
constructor(key: string, exportedValue: any, resourceTypeMeta: Object);
analyze(container: Container): any;
register(registry: ResourceRegistry, name?: string): any;
load(container: Container, loadContext?: string[]): Promise | void;
load(container: Container, loadContext?: string[]): Promise<void> | void;
static get(resource: any, key?: string): ResourceDescription;
}
export class ModuleAnalyzer {
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.13.7 (2015-07-16)


#### Bug Fixes

* **module-analyzer:** correct some promise types in the d.ts ([d025abf0](http://github.com/aurelia/templating/commit/d025abf0ea17792a7e56bf5d54120fed3790f837))


### 0.13.6 (2015-07-15)


Expand Down
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",
"version": "0.13.6",
"version": "0.13.7",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit b999c43

Please sign in to comment.