@lomray/react-mobx-manager 2.1.1 → 2.1.2-beta.1

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/lib/context.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  import React from 'react';
3
3
  import { FC, ReactElement } from "react";
4
4
  import Manager from "./manager.js";
5
- import { TStores } from "./types-a7240264.js";
5
+ import { TStores } from "./types-01f82098.js";
6
6
  interface IStoreManagerProvider {
7
7
  storeManager: Manager;
8
8
  shouldInit?: boolean;
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export * from "./types-a7240264.js";
1
+ export * from "./types-01f82098.js";
2
2
  export * from "./context.js";
3
3
  export { default as Manager } from "./manager.js";
4
4
  export { default as onChangeListener } from "./on-change-listener.js";
package/lib/manager.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import StoreStatus from "./store-status.js";
2
- import { IConstructableStore, IManagerOptions, IManagerParams, IStorage, IStore, IStoreParams, TInitStore, TStoreDefinition, TStores } from "./types-a7240264.js";
2
+ import { IConstructableStore, IManagerOptions, IManagerParams, IStorage, IStore, IStoreParams, IStorePersisted, TInitStore, TStoreDefinition, TStores } from "./types-01f82098.js";
3
3
  /**
4
4
  * Mobx stores manager
5
5
  */
@@ -211,6 +211,6 @@ declare class Manager {
211
211
  /**
212
212
  * Persist store
213
213
  */
214
- static persistStore<TSt extends IStore>(store: IConstructableStore<TSt>, id: string): IConstructableStore<TSt>;
214
+ static persistStore<TSt extends IStore | IStorePersisted>(store: IConstructableStore<TSt>, id: string): IConstructableStore<TSt>;
215
215
  }
216
216
  export { Manager as default };
@@ -1,4 +1,4 @@
1
- import { IStorePersisted } from "./types-a7240264.js";
1
+ import { IStorePersisted } from "./types-01f82098.js";
2
2
  /**
3
3
  * Listen persist store changes
4
4
  */
@@ -1,4 +1,4 @@
1
- import { IStorage } from "../types-a7240264.js";
1
+ import { IStorage } from "../types-01f82098.js";
2
2
  interface IAsyncStorage {
3
3
  getItem: (key: string) => Promise<string | null>;
4
4
  setItem: (key: string, value: string) => Promise<void>;
@@ -1,4 +1,4 @@
1
- import { IStorage } from "../types-a7240264.js";
1
+ import { IStorage } from "../types-01f82098.js";
2
2
  /**
3
3
  * Local storage for mobx store manager
4
4
  */
@@ -1,4 +1,4 @@
1
- import { TInitStore } from "./types-a7240264.js";
1
+ import { TInitStore } from "./types-01f82098.js";
2
2
  interface IPromise<TReturn> extends Promise<TReturn> {
3
3
  status?: 'fulfilled' | 'pending' | 'rejected';
4
4
  value?: TReturn;
package/lib/wakeup.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { TStores, TWakeup } from "./types-a7240264.js";
1
+ import { TStores, TWakeup } from "./types-01f82098.js";
2
2
  /**
3
3
  * Restore persisted store state
4
4
  */
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- import { TMapStores, IWithStoreOptions } from "./types-a7240264.js";
2
+ import { TMapStores, IWithStoreOptions } from "./types-01f82098.js";
3
3
  /**
4
4
  * Make component observable and pass stores as props
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lomray/react-mobx-manager",
3
- "version": "2.1.1",
3
+ "version": "2.1.2-beta.1",
4
4
  "description": "This package provides Mobx stores manager for react.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",