@dynamic-labs/react-hooks 4.50.3 → 4.50.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.
Files changed (3) hide show
  1. package/index.cjs +1 -1
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/index.cjs CHANGED
@@ -6,7 +6,7 @@ var assertPackageVersion = require('@dynamic-labs/assert-package-version');
6
6
  var react = require('react');
7
7
  var reactivity = require('@vue/reactivity');
8
8
 
9
- var version = "4.50.3";
9
+ var version = "4.50.4";
10
10
 
11
11
  const isObject = value => typeof value === 'object' && value !== null && value !== undefined && typeof value !== 'function' && typeof value !== 'symbol' && typeof value !== 'bigint' && !Array.isArray(value) && !(value instanceof Date);
12
12
  /**
package/index.js CHANGED
@@ -2,7 +2,7 @@ import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
2
2
  import { useRef, useState, useCallback, useMemo } from 'react';
3
3
  import { effect, stop } from '@vue/reactivity';
4
4
 
5
- var version = "4.50.3";
5
+ var version = "4.50.4";
6
6
 
7
7
  const isObject = value => typeof value === 'object' && value !== null && value !== undefined && typeof value !== 'function' && typeof value !== 'symbol' && typeof value !== 'bigint' && !Array.isArray(value) && !(value instanceof Date);
8
8
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/react-hooks",
3
- "version": "4.50.3",
3
+ "version": "4.50.4",
4
4
  "main": "./index.cjs",
5
5
  "module": "./index.js",
6
6
  "types": "./src/index.d.ts",
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@vue/reactivity": "^3.4.21",
18
- "@dynamic-labs/assert-package-version": "4.50.3"
18
+ "@dynamic-labs/assert-package-version": "4.50.4"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": ">=18.0.0 <20.0.0"