@tramvai/state 2.94.27 → 2.95.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.
@@ -4,4 +4,4 @@ export declare const Provider: ({ context, children, serverState, }: {
4
4
  context: ConsumerContext;
5
5
  children: ReactElement;
6
6
  serverState?: ServerState;
7
- }) => JSX.Element;
7
+ }) => import("react/jsx-runtime").JSX.Element;
package/lib/index.d.ts CHANGED
@@ -11,4 +11,5 @@ export { StoreClass } from './typings';
11
11
  export { BaseStore } from './stores/BaseStore';
12
12
  export * from './connect/index';
13
13
  export { Subscription } from './connect/Subscription';
14
+ export { scheduling } from './connect/scheduling';
14
15
  export { devTools };
package/lib/index.es.js CHANGED
@@ -8,6 +8,7 @@ export { createReducer } from './createReducer/createReducer.es.js';
8
8
  export { BaseStore } from './stores/BaseStore.es.js';
9
9
  export { Consumer, default as connect, createConnect } from './connect/index.es.js';
10
10
  export { Subscription } from './connect/Subscription.es.js';
11
+ export { scheduling } from './connect/scheduling.es.js';
11
12
  export { Provider } from './connect/Provider.es.js';
12
13
  export { useConsumerContext } from './connect/hooks/useConsumerContext.es.js';
13
14
  export { useActions } from './connect/hooks/useActions.es.js';
package/lib/index.js CHANGED
@@ -11,6 +11,7 @@ var createReducer = require('./createReducer/createReducer.js');
11
11
  var BaseStore = require('./stores/BaseStore.js');
12
12
  var index$1 = require('./connect/index.js');
13
13
  var Subscription = require('./connect/Subscription.js');
14
+ var scheduling = require('./connect/scheduling.js');
14
15
  var Provider = require('./connect/Provider.js');
15
16
  var useConsumerContext = require('./connect/hooks/useConsumerContext.js');
16
17
  var useActions = require('./connect/hooks/useActions.js');
@@ -34,6 +35,7 @@ exports.Consumer = index$1.Consumer;
34
35
  exports.connect = index$1["default"];
35
36
  exports.createConnect = index$1.createConnect;
36
37
  exports.Subscription = Subscription.Subscription;
38
+ exports.scheduling = scheduling.scheduling;
37
39
  exports.Provider = Provider.Provider;
38
40
  exports.useConsumerContext = useConsumerContext.useConsumerContext;
39
41
  exports.useActions = useActions.useActions;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/state",
3
- "version": "2.94.27",
3
+ "version": "2.95.4",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "@tinkoff/react-hooks": "0.1.6",
21
21
  "@tinkoff/utils": "^2.1.2",
22
- "@tramvai/types-actions-state-context": "2.94.27",
22
+ "@tramvai/types-actions-state-context": "2.95.4",
23
23
  "@types/hoist-non-react-statics": "^3.3.1",
24
24
  "invariant": "^2.2.4",
25
25
  "react-is": ">=17",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@reatom/core": "^1.1.5",
37
- "@tramvai/core": "2.94.27",
37
+ "@tramvai/core": "2.95.4",
38
38
  "@types/invariant": "^2.2.31",
39
39
  "@types/react-is": "^17.0.0",
40
40
  "@types/use-sync-external-store": "^0.0.3",