@rt-tools/core 0.0.6 → 0.1.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/README.md +4 -10
- package/fesm2022/rt-tools-core.mjs +684 -20
- package/fesm2022/rt-tools-core.mjs.map +1 -1
- package/package.json +10 -4
- package/rt-tools-core-0.1.0.tgz +0 -0
- package/types/rt-tools-core.d.ts +288 -7
- package/rt-tools-core-0.0.6.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
# @rt-tools/core
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
[](https://angular.dev)
|
|
5
|
-
[](https://github.com/Eyhenij/rt-tools/blob/main/LICENSE)
|
|
6
|
-
|
|
7
|
-
The shared foundation of the [rt-tools](https://github.com/Eyhenij/rt-tools) workspace: framework
|
|
8
|
-
primitives used by `@rt-tools/store`, `@rt-tools/utils`, and `@rt-tools/ui-kit` — a `MessageBus`,
|
|
9
|
-
a `PlatformService`, the `WINDOW` injection token, and type guards.
|
|
3
|
+
Core utilities for Angular applications.
|
|
10
4
|
|
|
11
5
|
## Installation
|
|
12
6
|
|
|
@@ -82,9 +76,9 @@ export class MyComponent {
|
|
|
82
76
|
|
|
83
77
|
## Requirements
|
|
84
78
|
|
|
85
|
-
- Angular
|
|
86
|
-
- RxJS
|
|
79
|
+
- Angular 21+
|
|
80
|
+
- RxJS 7.8+
|
|
87
81
|
|
|
88
82
|
## License
|
|
89
83
|
|
|
90
|
-
|
|
84
|
+
Apache-2.0
|