react-global-state-hooks 10.0.2 → 10.1.0

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.
@@ -1 +1 @@
1
- export { type ContextProviderAPI, type ContextProvider, type ContextHook, type CreateContext, createContext, default, } from 'react-hooks-global-states/createContext';
1
+ export { type Context, type ContextProvider, type ContextHook, type CreateContext, createContext, default, } from 'react-hooks-global-states/createContext';
package/index.d.ts CHANGED
@@ -8,7 +8,7 @@ export { uniqueId } from './uniqueId';
8
8
  export { throwWrongKeyOnActionCollectionConfig } from './throwWrongKeyOnActionCollectionConfig';
9
9
  export { isRecord } from './isRecord';
10
10
  export { useStableState } from './useStableState';
11
- export { type ContextProviderAPI, type ContextProvider, type ContextHook, type CreateContext, type createContext, } from './createContext';
11
+ export { type Context, type ContextProvider, type ContextHook, type CreateContext, type createContext, } from './createContext';
12
12
  export { type LocalStorageConfig } from './types';
13
13
  export { GlobalStore } from './GlobalStore';
14
14
  export { GlobalStoreAbstract } from './GlobalStoreAbstract';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-global-state-hooks",
3
- "version": "10.0.2",
3
+ "version": "10.1.0",
4
4
  "description": "This is a package to easily handling global-state across your react components No-redux, No-context.",
5
5
  "main": "./bundle.js",
6
6
  "types": "./index.d.ts",
@@ -161,6 +161,6 @@
161
161
  "react": ">=18.0.0"
162
162
  },
163
163
  "dependencies": {
164
- "react-hooks-global-states": "^9.0.1"
164
+ "react-hooks-global-states": "^10.0.1"
165
165
  }
166
166
  }