@angular-wave/angular.ts 0.0.19 → 0.0.21
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/dist/angular-ts.esm.js +1 -1
- package/dist/angular-ts.umd.js +1 -1
- package/index.html +2 -1
- package/package.json +1 -1
- package/src/core/q.js +9 -9
- package/src/core/sanitize-uri.js +1 -1
- package/src/core/sce.js +1 -1
- package/src/public.js +0 -2
- package/src/router/stateProvider.js +2 -0
- package/test/router/state-filter.spec.js +146 -0
- package/test/directive/a.spec.js +0 -192
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ Building upon the monumental effort of the [Angular Team](https://docs.angularjs
|
|
|
6
6
|
this project preserves, modernises and expands the original [AngularJS](https://github.com/angular/angular.js)
|
|
7
7
|
framework. While building on the core features of the original, AngularTS is not
|
|
8
8
|
a drop-in replacement or an LTS version. It has no relation to [Angular](https://angular.io) and makes no efforts to be compatible with it.
|
|
9
|
-
AngularTS is "AngularJS: The Good Parts". It takes the three core pillars of the original –
|
|
10
|
-
dependency injection, two-way data-binding – and adopts them
|
|
11
|
-
|
|
9
|
+
AngularTS is "AngularJS: The Good Parts". It takes the three core pillars of the original – a string-interpolation engine,
|
|
10
|
+
dependency injection, two-way data-binding – and adopts them for [Modern Web](https://modern-web.dev/).
|
|
11
|
+
The result is a buildless, progressive and battle-tested JS framework that stays as close to Web standards as possible.
|
|
12
12
|
|
|
13
13
|
AngularTS lets you write server-rendered web applications for desktop and mobile, without leaving the comfort of your tech-stack.
|
|
14
14
|
It lets you use good old HTML as your template language and lets you extend HTML’s
|