mobx-react-use-autorun 3.0.26 → 3.0.27
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ useMobxState(()=>({
|
|
|
103
103
|
|
|
104
104
|
## Notes - Get the real data of the proxy object with toJS
|
|
105
105
|
|
|
106
|
-
toJS will cause data to be used,
|
|
106
|
+
toJS will cause data to be used, please do not execute toJS(state) in component rendering code, it may cause repeated rendering. Wrong Usage Demonstration:<br/>
|
|
107
107
|
|
|
108
108
|
import { toJS, observer, useMobxState } from 'mobx-react-use-autorun'
|
|
109
109
|
import { v1 } from 'uuid'
|
|
@@ -119,7 +119,7 @@ toJS will cause data to be used, Please do not execute toJS(state) in component
|
|
|
119
119
|
return null;
|
|
120
120
|
})
|
|
121
121
|
|
|
122
|
-
Other than that, all usages are correct. Example
|
|
122
|
+
Other than that, all usages are correct. Example:<br/>
|
|
123
123
|
|
|
124
124
|
import { toJS, useMobxEffect, observer, useMobxState } from 'mobx-react-use-autorun';
|
|
125
125
|
import { v1 } from 'uuid'
|
|
@@ -147,8 +147,8 @@ Other than that, all usages are correct. Example:
|
|
|
147
147
|
|
|
148
148
|
## Introduction to third-party hooks
|
|
149
149
|
|
|
150
|
-
useMount is executed when the component loaded
|
|
151
|
-
useUnmount is executed when the component is unmount
|
|
150
|
+
useMount is executed when the component loaded.<br/>
|
|
151
|
+
useUnmount is executed when the component is unmount.<br/>
|
|
152
152
|
|
|
153
153
|
import { useMount, useUnmount } from 'react-use'
|
|
154
154
|
import { Subscription, of, tap } from 'rxjs'
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"mobx-react-use-autorun","version":"3.0.
|
|
1
|
+
{"name":"mobx-react-use-autorun","version":"3.0.27","description":"React Hook for mobx","scripts":{"test":"npx -y -p typescript -p ts-node ts-node --skipProject bin/mobx_react_test.ts","build":"npx -y -p typescript -p ts-node ts-node --skipProject bin/mobx_react_build.ts","make":"npx -y -p typescript -p ts-node ts-node --skipProject bin/mobx_react_make.ts"},"dependencies":{"mobx":">=6.5.0","mobx-react-lite":">=3.3.0","react-use":">=17.3.2","rxjs":">=6.0.0"},"peerDependencies":{"react":">=16.8.0"},"license":"MIT","keywords":["react","mobx","typescript"],"main":"./dist/index.js","types":"./dist/index.d.ts","eslintConfig":{"extends":["react-app","react-app/jest"]},"homepage":"https://github.com/zdu-strong/mobx-react-use-autorun#readme","repository":{"type":"git","url":"git+https://github.com/zdu-strong/mobx-react-use-autorun.git"},"files":["lib","dist"],"bugs":{"url":"https://github.com/zdu-strong/mobx-react-use-autorun/issues"},"publishConfig":{"registry":"https://registry.npmjs.org/"}}
|