Skip to content

Commit

Permalink
chore(all): prepare release 0.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Nov 10, 2015
1 parent 04b3536 commit 7921f55
Show file tree
Hide file tree
Showing 15 changed files with 1,414 additions and 890 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-binding",
"version": "0.16.1",
"version": "0.17.0",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
13 changes: 5 additions & 8 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ System.config({
map: {
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-pal": "github:aurelia/pal@0.2.0",
"aurelia-pal-browser": "github:aurelia/pal-browser@0.2.0",
"aurelia-task-queue": "github:aurelia/task-queue@0.8.0",
"aurelia-pal": "github:aurelia/pal@0.3.0",
"aurelia-pal-browser": "github:aurelia/pal-browser@0.3.0",
"aurelia-task-queue": "github:aurelia/task-queue@0.9.0",
"aurelia-templating": "github:aurelia/[email protected]",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
Expand All @@ -43,11 +43,8 @@ System.config({
"aurelia-pal": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
Expand Down
30 changes: 18 additions & 12 deletions dist/amd/aurelia-templating-binding.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
declare module 'aurelia-templating-binding' {
import * as LogManager from 'aurelia-logging';
import { Parser, ObserverLocator, EventManager, ListenerExpression, BindingExpression, CallExpression, bindingMode, NameExpression, connectable } from 'aurelia-binding';
import { bindingMode, connectable, Parser, ObserverLocator, EventManager, ListenerExpression, BindingExpression, CallExpression, NameExpression } from 'aurelia-binding';
import { BehaviorInstruction, BindingLanguage } from 'aurelia-templating';
export class InterpolationBindingExpression {
constructor(observerLocator: any, targetProperty: any, parts: any, mode: any, lookupFunctions: any, attribute: any);
createBinding(target: any): any;
}
export class InterpolationBinding {
constructor(observerLocator: any, parts: any, target: any, targetProperty: any, mode: any, lookupFunctions: any);
interpolate(): any;
bind(source: any): any;
unbind(): any;
}
export class ChildInterpolationBinding {
constructor(parent: any, observerLocator: any, sourceExpression: any, mode: any, lookupFunctions: any);
updateTarget(value: any): any;
call(): any;
bind(source: any): any;
unbind(): any;
}

/*eslint dot-notation:0*/
export class SyntaxInterpreter {
Expand All @@ -28,16 +45,5 @@ declare module 'aurelia-templating-binding' {
parseText(resources: any, value: any): any;
parseContent(resources: any, attrName: any, attrValue: any): any;
}
export class InterpolationBindingExpression {
constructor(observerLocator: any, targetProperty: any, parts: any, mode: any, valueConverterLookupFunction: any, attribute: any);
createBinding(target: any): any;
}
class InterpolationBinding {
constructor(observerLocator: any, parts: any, target: any, targetProperty: any, mode: any, valueConverterLookupFunction: any);
bind(source: any): any;
call(): any;
interpolate(connect: any, initial: any): any;
unbind(): any;
}
export function configure(config: any): any;
}
Loading

0 comments on commit 7921f55

Please sign in to comment.