@effect-rx/rx-react 0.30.2 → 0.30.4

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/cjs/index.js CHANGED
@@ -78,7 +78,7 @@ function scheduleTask(f) {
78
78
  */
79
79
  const RegistryContext = exports.RegistryContext = /*#__PURE__*/React.createContext( /*#__PURE__*/Registry.make({
80
80
  scheduleTask,
81
- defaultIdleTTL: 250
81
+ defaultIdleTTL: 400
82
82
  }));
83
83
  const storeRegistry = /*#__PURE__*/(0, _GlobalValue.globalValue)("@effect-rx/rx-react/storeRegistry", () => new WeakMap());
84
84
  function makeStore(registry, rx) {
package/dist/esm/index.js CHANGED
@@ -38,7 +38,7 @@ function scheduleTask(f) {
38
38
  */
39
39
  export const RegistryContext = /*#__PURE__*/React.createContext( /*#__PURE__*/Registry.make({
40
40
  scheduleTask,
41
- defaultIdleTTL: 250
41
+ defaultIdleTTL: 400
42
42
  }));
43
43
  const storeRegistry = /*#__PURE__*/globalValue("@effect-rx/rx-react/storeRegistry", () => new WeakMap());
44
44
  function makeStore(registry, rx) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-rx/rx-react",
3
- "version": "0.30.2",
3
+ "version": "0.30.4",
4
4
  "description": "Reactive toolkit for Effect",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -10,7 +10,7 @@
10
10
  "sideEffects": [],
11
11
  "author": "Effect contributors",
12
12
  "dependencies": {
13
- "@effect-rx/rx": "^0.33.1"
13
+ "@effect-rx/rx": "^0.33.2"
14
14
  },
15
15
  "peerDependencies": {
16
16
  "effect": "^3.0.5",
package/src/index.ts CHANGED
@@ -43,7 +43,7 @@ function scheduleTask(f: () => void): void {
43
43
  */
44
44
  export const RegistryContext = React.createContext<Registry.Registry>(Registry.make({
45
45
  scheduleTask,
46
- defaultIdleTTL: 250
46
+ defaultIdleTTL: 400
47
47
  }))
48
48
 
49
49
  interface RxStore<A> {