vasille 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/cdn/es2015.js +470 -529
- package/cdn/es5.js +490 -536
- package/flow-typed/vasille.js +176 -180
- package/lib/binding/attribute.js +6 -12
- package/lib/binding/binding.js +9 -19
- package/lib/binding/class.js +34 -42
- package/lib/binding/style.js +5 -11
- package/lib/core/core.js +24 -28
- package/lib/core/destroyable.js +2 -2
- package/lib/core/ivalue.js +15 -13
- package/lib/node/app.js +6 -6
- package/lib/node/interceptor.js +3 -3
- package/lib/node/node.js +306 -303
- package/lib/node/watch.js +8 -8
- package/lib/value/expression.js +3 -3
- package/lib/value/mirror.js +6 -8
- package/lib/value/reference.js +3 -7
- package/lib/views/array-view.js +2 -2
- package/lib/views/base-view.js +6 -6
- package/lib/views/map-view.js +2 -2
- package/lib/views/object-view.js +2 -2
- package/lib/views/repeat-node.js +16 -44
- package/lib/views/repeater.js +7 -7
- package/lib/views/set-view.js +3 -3
- package/package.json +1 -1
- package/types/binding/attribute.d.ts +0 -6
- package/types/binding/binding.d.ts +4 -13
- package/types/binding/class.d.ts +7 -19
- package/types/binding/style.d.ts +0 -6
- package/types/core/core.d.ts +31 -31
- package/types/core/destroyable.d.ts +2 -2
- package/types/core/ivalue.d.ts +13 -11
- package/types/models/array-model.d.ts +2 -2
- package/types/models/map-model.d.ts +2 -2
- package/types/models/model.d.ts +3 -1
- package/types/models/object-model.d.ts +2 -2
- package/types/models/set-model.d.ts +2 -2
- package/types/node/app.d.ts +3 -3
- package/types/node/interceptor.d.ts +2 -2
- package/types/node/node.d.ts +137 -140
- package/types/node/watch.d.ts +2 -2
- package/types/value/expression.d.ts +1 -1
- package/types/value/mirror.d.ts +3 -3
- package/types/value/reference.d.ts +5 -5
- package/types/views/array-view.d.ts +1 -1
- package/types/views/base-view.d.ts +4 -4
- package/types/views/map-view.d.ts +1 -1
- package/types/views/object-view.d.ts +1 -1
- package/types/views/repeat-node.d.ts +1 -1
- package/types/views/repeater.d.ts +3 -3
- package/types/views/set-view.d.ts +1 -1
package/README.md
CHANGED
|
@@ -35,9 +35,9 @@ ES5 Compatible version
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Getting ready be example
|
|
38
|
-
* JavaScript Example
|
|
39
|
-
* TypeScript Example
|
|
40
|
-
* Flow.js Example
|
|
38
|
+
* [JavaScript Example](https://gitlab.com/vasille-js/learning/vasille-js-example)
|
|
39
|
+
* [TypeScript Example](https://gitlab.com/vasille-js/learning/vasille-ts-example)
|
|
40
|
+
* [Flow.js Example](https://gitlab.com/vasille-js/learning/vasille-flow-js-example)
|
|
41
41
|
|
|
42
42
|
### Flow.js typedef
|
|
43
43
|
Add the next line to `[libs]` section in your `.flowconfig` file
|