@fireflysemantics/slice 17.0.10 → 17.0.12
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 +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
@@ -18,7 +18,6 @@ Lightweight Javascript Reactive State Management for Angular Applications.
|
|
18
18
|
The API is designed to be as minimal as possible and should deliver the same features as other comparable frameworks with about 1/3 the lines of code.
|
19
19
|
|
20
20
|
It offers two types of reactive data stores:
|
21
|
-
- REST like API for performing state operations
|
22
21
|
- Entity stores (EStore<E>) for structured entity like data (Customer, Product, User, ...)
|
23
22
|
- Entity stores can be "Live filtered" by adding slices. For example separating Todo entities into complete and incomplete compartments. Slices are also obserable.
|
24
23
|
- Object store (Key value store) for unstructured data
|
@@ -453,7 +452,7 @@ store.isEmpty().subscribe((empty) => {
|
|
453
452
|
## Features
|
454
453
|
|
455
454
|
- Live Stackblitz demoes
|
456
|
-
- [Typedoc with inlined examples](https://fireflysemantics.github.io/slice/
|
455
|
+
- [Typedoc with inlined examples](https://fireflysemantics.github.io/slice/typedoc/)
|
457
456
|
- [Well documented test cases run with Jest - Each file has a corresponding `.spec` file](https://github.com/fireflysemantics/slice/tree/master/src)
|
458
457
|
- Stream both Entity and Object Stores for UI Updates via RxJS
|
459
458
|
- Define entities using Typescript classes, interfaces, or types
|