@angular-wave/angular.ts 0.0.58 → 0.0.60
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 -0
- package/dist/angular-ts.esm.js +2 -2
- package/dist/angular-ts.umd.js +2 -2
- package/package.json +5 -1
- package/src/animations/animate-css.js +11 -1
- package/src/animations/animate-js.html +44 -0
- package/src/animations/animation.js +9 -1
- package/src/{core/parser/parse.test.js → animations/animations.test.js} +3 -5
- package/src/animations/raf-scheduler.html +18 -0
- package/src/animations/raf-scheduler.js +56 -58
- package/src/animations/raf-scheduler.spec.js +92 -0
- package/src/core/parser/lexer.html +18 -0
- package/src/core/parser/lexer.spec.js +300 -0
- package/src/core/parser/parse.js +6 -1
- package/src/core/parser/parser.test.js +19 -0
- package/types/animations/animate-css.d.ts +1 -1
- package/types/animations/animation.d.ts +1 -1
- package/types/animations/raf-scheduler.d.ts +8 -23
- package/types/core/parser/parse.d.ts +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,9 @@ Initialize your app
|
|
|
52
52
|
</div>
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
You can also opt for starter a template at [Angular seed](https://github.com/Angular-Wave/angular-seed), which can serve as a solid starting point
|
|
56
|
+
or a source of inspiration for new ideas.
|
|
57
|
+
|
|
55
58
|
New docs website is coming!
|
|
56
59
|
|
|
57
60
|
### Legacy docs
|