@angular-wave/angular.ts 0.15.2 → 0.16.0
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/@types/animations/interface.d.ts +4 -0
- package/@types/animations/runner/animate-runner.d.ts +2 -1
- package/@types/animations/shared.d.ts +100 -44
- package/@types/core/compile/attributes.d.ts +34 -18
- package/@types/core/compile/compile.d.ts +4 -5
- package/@types/core/controller/interface.d.ts +1 -1
- package/@types/core/di/di.d.ts +0 -10
- package/@types/core/di/interface.d.ts +28 -0
- package/@types/core/di/internal-injector.d.ts +28 -19
- package/@types/core/di/ng-module/ng-module.d.ts +35 -4
- package/@types/core/interpolate/interpolate.d.ts +1 -1
- package/@types/core/parse/ast/ast.d.ts +6 -12
- package/@types/core/parse/ast-type.d.ts +1 -1
- package/@types/core/parse/interface.d.ts +8 -40
- package/@types/core/parse/interpreter.d.ts +4 -3
- package/@types/core/parse/lexer/lexer.d.ts +2 -30
- package/@types/core/parse/parse.d.ts +1 -34
- package/@types/core/parse/parser/parser.d.ts +2 -13
- package/@types/core/sanitize/sanitize-uri.d.ts +2 -2
- package/@types/core/scope/interface.d.ts +1 -0
- package/@types/core/scope/scope.d.ts +10 -5
- package/@types/directive/form/form.d.ts +8 -40
- package/@types/directive/model/model.d.ts +34 -30
- package/@types/directive/model-options/model-options.d.ts +1 -2
- package/@types/directive/validators/validators.d.ts +5 -7
- package/@types/filters/order-by.d.ts +2 -1
- package/@types/interface.d.ts +3 -2
- package/@types/namespace.d.ts +18 -2
- package/@types/router/state/state-object.d.ts +2 -2
- package/@types/router/state/state-service.d.ts +1 -0
- package/@types/router/template-factory.d.ts +4 -5
- package/@types/router/transition/reject-factory.d.ts +32 -9
- package/@types/router/transition/transition-event-type.d.ts +2 -2
- package/@types/router/transition/transition-hook.d.ts +5 -2
- package/@types/router/transition/transition-service.d.ts +2 -2
- package/@types/router/transition/transition.d.ts +2 -2
- package/@types/router/view/view.d.ts +4 -4
- package/@types/services/http/http.d.ts +1 -1
- package/@types/services/pubsub/pubsub.d.ts +2 -2
- package/@types/services/sce/interface.d.ts +8 -0
- package/@types/services/sce/sce.d.ts +10 -7
- package/@types/services/sse/interface.d.ts +5 -20
- package/@types/services/storage/storage.d.ts +2 -2
- package/@types/services/stream/interface.d.ts +1 -0
- package/@types/services/stream/stream.d.ts +1 -1
- package/@types/services/template-request/template-request.d.ts +0 -1
- package/@types/services/websocket/interface.d.ts +16 -0
- package/@types/services/websocket/websocket.d.ts +20 -0
- package/@types/shared/common.d.ts +48 -27
- package/@types/shared/constants.d.ts +2 -8
- package/@types/shared/dom.d.ts +33 -19
- package/@types/shared/utils.d.ts +8 -8
- package/README.md +15 -7
- package/dist/angular-ts.esm.js +4257 -4325
- package/dist/angular-ts.umd.js +4257 -4325
- package/dist/angular-ts.umd.min.js +1 -1
- package/dist/angular-ts.umd.min.js.gz +0 -0
- package/dist/angular-ts.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/@types/core/di/inteface.d.ts +0 -11
- /package/@types/core/compile/{inteface.d.ts → interface.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|

|
|
4
4
|
[](https://www.jsdelivr.com/package/npm/@angular-wave/angular.ts)
|
|
5
5
|
|
|
6
|
-
This project preserves,
|
|
6
|
+
This project preserves, modernizes and expands the original [AngularJS](https://angularjs.org/)
|
|
7
7
|
framework. AngularTS is "AngularJS: The Good Parts". It takes the three core pillars of the original – a string-interpolation engine,
|
|
8
|
-
dependency injection, two-way data-binding – and adds a reactive change-detection model on top of modern build tooling
|
|
8
|
+
dependency injection, two-way data-binding – and adds a reactive change-detection model on top of modern build tooling
|
|
9
|
+
with strong typechecking of TypeScript.
|
|
9
10
|
|
|
10
|
-
With AngularJS, you get a decade-long optimization effort of Angular Team at Google, plus a massive testing suite
|
|
11
|
-
AngularTS adds:
|
|
11
|
+
With AngularJS, you get a decade-long optimization effort of Angular Team at Google, plus a massive testing suite.
|
|
12
|
+
AngularTS builds on that foundation and adds:
|
|
12
13
|
|
|
13
14
|
- a fully reactive change-detection model without digests or virtual DOMs, like `Vue`
|
|
14
15
|
- access to native DOM APIs at component and directive level (no `JQuery`or `JQLite`)
|
|
@@ -16,10 +17,17 @@ AngularTS adds:
|
|
|
16
17
|
- built-in enterprise-level router (`ui-router` ported as `ng-router`)
|
|
17
18
|
- built-in animations (`animate`)
|
|
18
19
|
- new directives, inspired by `HTMX`
|
|
19
|
-
- new injectables for REST resources, persistent stores, Web Workers and WASM modules
|
|
20
|
+
- new injectables for REST resources, persistent stores, Web Workers, EventSources, WebSockets and WASM modules
|
|
20
21
|
|
|
21
|
-
The result is a high-performance, buildless,
|
|
22
|
-
|
|
22
|
+
The result is a high-performance, buildless, multi-paradigm and battle-tested JS framework that stays as close to Web standards as possible.
|
|
23
|
+
|
|
24
|
+
If you:
|
|
25
|
+
|
|
26
|
+
- Build server-rendered web applications for desktop and mobile
|
|
27
|
+
- Want a tools that is easy to get started with, yet remains expert-friendly at scale
|
|
28
|
+
- Make no compromises on performance (think McMaster-Carr)
|
|
29
|
+
|
|
30
|
+
then AngularTS is your new (old) secret weapon.
|
|
23
31
|
|
|
24
32
|
### Getting started
|
|
25
33
|
|