##// END OF EJS Templates
`Subscribable` is made compatible with rxjs, added map, filter and scan...
`Subscribable` is made compatible with rxjs, added map, filter and scan methods to observables. `watch` can accept either stateful object and a property name to observe or the subscribable value. added ref attribute to the markup elements and widgets. `bind`, `tooggleClass` and `attach` methods can be passed to `ref` attribute in the markup to interact with elemnts and widgets.

File last commit:

r79:e5bb5e80ce96 v1.2.3 default
r102:c65ea2350b1a v1.3
Show More
tslint.json
47 lines | 1.2 KiB | application/json | JsonLexer
{
"extends": "tslint:recommended",
"defaultSeverity": "warn",
"rules": {
"align": [
true,
"parameters",
"statements"
],
"interface-name": [
false
],
"max-line-length": [
true,
185
],
"quotemark": [true, "double", "avoid-escape"],
"member-access": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-bitwise": false,
"no-empty": false,
"no-namespace": false,
"ordered-imports": false,
"no-return-await": true,
"no-floating-promises": true,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-whitespace"
],
"object-literal-sort-keys": false,
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "never"
}
],
"variable-name": false,
"curly": false,
"array-type": false,
"arrow-parens": [
true,
"ban-single-arg-parens"
]
}
}