@superutils/rx 0.1.8 → 0.1.10
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/dist/browser/index.min.js.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -653,7 +653,7 @@ declare const forceUpdateCache$: Subject<string | boolean | string[]>;
|
|
|
653
653
|
* console.log('Saving to database...', data)
|
|
654
654
|
* })
|
|
655
655
|
* // unsubscribe from subject
|
|
656
|
-
* setTimeout(()=> sub.
|
|
656
|
+
* setTimeout(()=> sub.unsubscribe(), 1000)
|
|
657
657
|
*
|
|
658
658
|
* // add an entry to storage
|
|
659
659
|
* storage.set('bob', { age: 99, id: 'bob', name: 'Bob' })
|
package/dist/index.d.ts
CHANGED
|
@@ -653,7 +653,7 @@ declare const forceUpdateCache$: Subject<string | boolean | string[]>;
|
|
|
653
653
|
* console.log('Saving to database...', data)
|
|
654
654
|
* })
|
|
655
655
|
* // unsubscribe from subject
|
|
656
|
-
* setTimeout(()=> sub.
|
|
656
|
+
* setTimeout(()=> sub.unsubscribe(), 1000)
|
|
657
657
|
*
|
|
658
658
|
* // add an entry to storage
|
|
659
659
|
* storage.set('bob', { age: 99, id: 'bob', name: 'Bob' })
|
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"author": "Toufiqur Rahaman Chowdhury",
|
|
3
3
|
"description": "A set of small, focused utilities for working with RxJS observables and subjects.",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@superutils/core": "^1.2.
|
|
6
|
-
"@superutils/promise": "^1.3.
|
|
5
|
+
"@superutils/core": "^1.2.14",
|
|
6
|
+
"@superutils/promise": "^1.3.13",
|
|
7
7
|
"@types/react": "^18.0.0",
|
|
8
8
|
"react": ">=16.8.0",
|
|
9
9
|
"rxjs": "^7.8.2"
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"module": "./dist/index.js",
|
|
50
50
|
"type": "module",
|
|
51
51
|
"types": "./dist/index.d.ts",
|
|
52
|
-
"version": "0.1.
|
|
53
|
-
"gitHead": "
|
|
52
|
+
"version": "0.1.10",
|
|
53
|
+
"gitHead": "a3631a9267f8edad4c64dafafba5140dcfd596ae"
|
|
54
54
|
}
|