@fireflysemantics/slice 16.2.14 → 17.0.2

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 CHANGED
@@ -1,19 +1,29 @@
1
- [![Build Status](https://travis-ci.org/fireflysemantics/slice.svg?branch=master)](https://travis-ci.org/fireflysemantics/slice)
2
-
3
1
  ![Slice](slicelogo.png)
4
2
 
5
3
  # @fireflysemantics/slice
6
4
 
7
- Lightweight Javascript Reactive State Management for Web Applications.
5
+ Lightweight Javascript Reactive State Management for Angular Applications.
8
6
 
9
7
  If you like the [@fireflysemantics/slice API](https://fireflysemantics.github.io/slice/doc/) please star our [Github Repository](https://github.com/fireflysemantics/slice).
10
8
 
11
9
  # Install
12
10
 
13
- Install Slice with peer dependencies:
11
+
12
+ Install Slice with the `nanoid` peer dependency:
13
+
14
+ - `v17.0.x` for Angular 17
15
+ - `v16.2.x` for Angular 16
16
+ - `v15.2.x` for Angular 15
17
+
18
+ So for example for an Angular 15 project run.
19
+
20
+ ```
21
+ npm i @fireflysemantics/slice@15.2.x nanoid
22
+ ```
23
+ For Angular 17 run.
14
24
 
15
25
  ```
16
- npm i @fireflysemantics/slice tslib rxjs nanoid
26
+ npm i @fireflysemantics/slice@lastest nanoid
17
27
  ```
18
28
 
19
29
  # Firefly Semantics Slice Development Center Media and Documentation
@@ -1,4 +1,4 @@
1
- import { ReplaySubject, fromEvent, of } from 'rxjs';
1
+ import { ReplaySubject, of, fromEvent } from 'rxjs';
2
2
  import { map, debounceTime, distinctUntilChanged, pairwise, switchMap, filter, takeWhile } from 'rxjs/operators';
3
3
  import { nanoid } from 'nanoid';
4
4
 
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "@fireflysemantics/slice",
3
- "version": "16.2.14",
3
+ "version": "17.0.2",
4
+ "peerDependencies": {
5
+ "nanoid": "^5.0.4",
6
+ "@types/nanoid": "*"
7
+ },
4
8
  "author": "Ole Ersoy",
5
9
  "license": "MIT",
6
10
  "bugs": {
@@ -22,10 +26,6 @@
22
26
  "Observables",
23
27
  "Multicasting"
24
28
  ],
25
- "peerDependencies": {
26
- "nanoid": "^5.0.4",
27
- "@types/nanoid": "*"
28
- },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.0"
31
31
  },