@t8/react-pending 1.0.32 → 1.0.33

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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # T8 React Pending
2
2
 
3
- A concise async action state management lib for React apps
3
+ Self-contained async action state management for React apps
4
4
 
5
- [![npm](https://img.shields.io/npm/v/@t8/react-pending?labelColor=345&color=46e)](https://www.npmjs.com/package/@t8/react-pending) ![Lightweight](https://img.shields.io/bundlephobia/minzip/@t8/react-pending?label=minzip&labelColor=345&color=46e) ![CSR ✓](https://img.shields.io/badge/CSR-✓-345?labelColor=345) ![SSR ✓](https://img.shields.io/badge/SSR-✓-345?labelColor=345)
5
+ [![npm](https://img.shields.io/npm/v/@t8/react-pending?labelColor=345&color=46e)](https://www.npmjs.com/package/@t8/react-pending) ![Lightweight](https://img.shields.io/bundlephobia/minzip/@t8/react-pending?label=minzip&labelColor=345&color=46e)
6
6
 
7
- **Why?** To manage the async action state, whether local or shared, without tightly coupling it with the app state. Decoupled pending state as described here acts like a lightweight scaffolding on top of the action's and component's successful scenario. It's easy to set up from scratch without rewriting the async actions and affecting the app state, and easy to manage further on since it's barely intertwined with other app's internals.
7
+ **Features:** Decoupled from app state management and async actions' internals · Local or shared async action state · CSR/SSR-compatible
8
8
 
9
9
  <!-- docsgen-show-start --
10
10
  ```diff
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@t8/react-pending",
3
- "version": "1.0.32",
4
- "description": "A concise async action state management lib for React apps",
3
+ "version": "1.0.33",
4
+ "description": "Self-contained async action state management for React apps",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
@@ -22,6 +22,7 @@
22
22
  "keywords": [
23
23
  "async actions",
24
24
  "pending state",
25
+ "async state",
25
26
  "react"
26
27
  ],
27
28
  "peerDependencies": {
@@ -36,6 +37,6 @@
36
37
  "react-dom": "^19.2.3"
37
38
  },
38
39
  "dependencies": {
39
- "@t8/react-store": "^1.2.7"
40
+ "@t8/react-store": "^1.2.8"
40
41
  }
41
42
  }