redux-astroglide 0.1.18 → 0.1.20
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 -3
- package/dist/index.es.js +3945 -1
- package/dist/index.js +3955 -1
- package/dist/index.umd.js +6106 -1
- package/dist/plugins/index.es.js +325 -1
- package/dist/plugins/index.js +338 -1
- package/dist/plugins/index.umd.js +422 -1
- package/dist/plugins/persist/index.es.js +69 -1
- package/dist/plugins/persist/index.js +76 -1
- package/dist/plugins/persist/index.umd.js +82 -1
- package/dist/plugins/set/index.es.js +17 -1
- package/dist/plugins/set/index.js +19 -1
- package/dist/plugins/set/index.umd.js +25 -1
- package/dist/plugins/type/index.es.js +104 -1
- package/dist/plugins/type/index.js +110 -1
- package/dist/plugins/type/index.umd.js +194 -1
- package/dist/selectors/index.es.js +1666 -1
- package/dist/selectors/index.js +1676 -1
- package/dist/selectors/index.umd.js +2572 -1
- package/package.json +3 -28
- package/plugins/index.es.js +325 -0
- package/plugins/index.js +338 -0
- package/plugins/index.umd.js +422 -0
- package/plugins/persist/index.es.js +69 -0
- package/plugins/persist/index.js +76 -0
- package/plugins/persist/index.umd.js +82 -0
- package/plugins/set/index.es.js +17 -0
- package/plugins/set/index.js +19 -0
- package/plugins/set/index.umd.js +25 -0
- package/plugins/type/index.es.js +104 -0
- package/plugins/type/index.js +110 -0
- package/plugins/type/index.umd.js +194 -0
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ Astroglide will create your store for you using a call to RTK's configureStore f
|
|
|
39
39
|
import configure from "redux-astroglide";
|
|
40
40
|
|
|
41
41
|
const { store, createSlice } = configure({
|
|
42
|
-
// ... (configureStore options
|
|
42
|
+
// ... (configureStore options)
|
|
43
43
|
});
|
|
44
44
|
```
|
|
45
45
|
|
|
@@ -351,8 +351,6 @@ addPlugins({
|
|
|
351
351
|
|
|
352
352
|
```
|
|
353
353
|
|
|
354
|
-
Note: This import style uses a package.json `exports` field which is still not supported in some environments. If the nested imports like `redux-astroglide/plugins` can't be found in your project try importing them from `redux-astroglide/dist/plugins` and `redux-astroglide/dist/plugins/set` etc.
|
|
355
|
-
|
|
356
354
|
|
|
357
355
|
|
|
358
356
|
## Contributing
|