@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.
Files changed (61) hide show
  1. package/@types/animations/interface.d.ts +4 -0
  2. package/@types/animations/runner/animate-runner.d.ts +2 -1
  3. package/@types/animations/shared.d.ts +100 -44
  4. package/@types/core/compile/attributes.d.ts +34 -18
  5. package/@types/core/compile/compile.d.ts +4 -5
  6. package/@types/core/controller/interface.d.ts +1 -1
  7. package/@types/core/di/di.d.ts +0 -10
  8. package/@types/core/di/interface.d.ts +28 -0
  9. package/@types/core/di/internal-injector.d.ts +28 -19
  10. package/@types/core/di/ng-module/ng-module.d.ts +35 -4
  11. package/@types/core/interpolate/interpolate.d.ts +1 -1
  12. package/@types/core/parse/ast/ast.d.ts +6 -12
  13. package/@types/core/parse/ast-type.d.ts +1 -1
  14. package/@types/core/parse/interface.d.ts +8 -40
  15. package/@types/core/parse/interpreter.d.ts +4 -3
  16. package/@types/core/parse/lexer/lexer.d.ts +2 -30
  17. package/@types/core/parse/parse.d.ts +1 -34
  18. package/@types/core/parse/parser/parser.d.ts +2 -13
  19. package/@types/core/sanitize/sanitize-uri.d.ts +2 -2
  20. package/@types/core/scope/interface.d.ts +1 -0
  21. package/@types/core/scope/scope.d.ts +10 -5
  22. package/@types/directive/form/form.d.ts +8 -40
  23. package/@types/directive/model/model.d.ts +34 -30
  24. package/@types/directive/model-options/model-options.d.ts +1 -2
  25. package/@types/directive/validators/validators.d.ts +5 -7
  26. package/@types/filters/order-by.d.ts +2 -1
  27. package/@types/interface.d.ts +3 -2
  28. package/@types/namespace.d.ts +18 -2
  29. package/@types/router/state/state-object.d.ts +2 -2
  30. package/@types/router/state/state-service.d.ts +1 -0
  31. package/@types/router/template-factory.d.ts +4 -5
  32. package/@types/router/transition/reject-factory.d.ts +32 -9
  33. package/@types/router/transition/transition-event-type.d.ts +2 -2
  34. package/@types/router/transition/transition-hook.d.ts +5 -2
  35. package/@types/router/transition/transition-service.d.ts +2 -2
  36. package/@types/router/transition/transition.d.ts +2 -2
  37. package/@types/router/view/view.d.ts +4 -4
  38. package/@types/services/http/http.d.ts +1 -1
  39. package/@types/services/pubsub/pubsub.d.ts +2 -2
  40. package/@types/services/sce/interface.d.ts +8 -0
  41. package/@types/services/sce/sce.d.ts +10 -7
  42. package/@types/services/sse/interface.d.ts +5 -20
  43. package/@types/services/storage/storage.d.ts +2 -2
  44. package/@types/services/stream/interface.d.ts +1 -0
  45. package/@types/services/stream/stream.d.ts +1 -1
  46. package/@types/services/template-request/template-request.d.ts +0 -1
  47. package/@types/services/websocket/interface.d.ts +16 -0
  48. package/@types/services/websocket/websocket.d.ts +20 -0
  49. package/@types/shared/common.d.ts +48 -27
  50. package/@types/shared/constants.d.ts +2 -8
  51. package/@types/shared/dom.d.ts +33 -19
  52. package/@types/shared/utils.d.ts +8 -8
  53. package/README.md +15 -7
  54. package/dist/angular-ts.esm.js +4257 -4325
  55. package/dist/angular-ts.umd.js +4257 -4325
  56. package/dist/angular-ts.umd.min.js +1 -1
  57. package/dist/angular-ts.umd.min.js.gz +0 -0
  58. package/dist/angular-ts.umd.min.js.map +1 -1
  59. package/package.json +1 -1
  60. package/@types/core/di/inteface.d.ts +0 -11
  61. /package/@types/core/compile/{inteface.d.ts → interface.d.ts} +0 -0
package/README.md CHANGED
@@ -3,12 +3,13 @@
3
3
  ![Build status](https://github.com/angular-wave/angular.ts/actions/workflows/ci.yml/badge.svg)
4
4
  [![stats](https://data.jsdelivr.com/v1/package/npm/@angular-wave/angular.ts/badge?style=rounded)](https://www.jsdelivr.com/package/npm/@angular-wave/angular.ts)
5
5
 
6
- This project preserves, modernises and expands the original [AngularJS](https://angularjs.org/)
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 with strong typechecking of TypeScript.
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, required for applications like Google Cloud and Kubernetes.
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, progressive and battle-tested JS framework that stays as close to Web standards as possible.
22
- If you write server-rendered web applications for desktop and mobile, and do not wish to leave the comfort of your tech-stack, this is your new secret weapon.
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