@dereekb/browser 12.6.21 → 13.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/browser",
3
- "version": "12.6.21",
3
+ "version": "13.0.0",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -15,12 +15,13 @@
15
15
  }
16
16
  },
17
17
  "peerDependencies": {
18
- "@dereekb/util": "*",
19
- "@dereekb/rxjs": "*",
20
- "rxjs": "^7.4.0"
18
+ "@dereekb/util": "13.0.0",
19
+ "@dereekb/rxjs": "13.0.0",
20
+ "rxjs": "^7.8.0",
21
+ "core-js": "^3.0.0"
21
22
  },
22
23
  "dependencies": {},
23
24
  "module": "./index.esm.js",
24
25
  "main": "./index.cjs.js",
25
- "types": "./index.esm.d.ts"
26
+ "types": "./index.d.ts"
26
27
  }
@@ -25,7 +25,7 @@ export declare abstract class AbstractAsyncWindowLoadedService<T> implements Des
25
25
  * @param windowKey
26
26
  * @param callbackKey
27
27
  */
28
- constructor(windowKey: string, callbackKey?: string, serviceName?: Maybe<string>, preload?: Maybe<boolean>);
28
+ constructor(windowKey: string, callbackKey?: string, serviceName?: Maybe<string>, preload?: Maybe<boolean | string>);
29
29
  destroy(): void;
30
30
  getService(): Promise<T>;
31
31
  protected loadService(): Promise<T>;
package/index.esm.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from "./src/index";
File without changes