@equinor/fusion-framework-module-bookmark 2.1.3 → 2.1.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.
@@ -29,7 +29,7 @@ export declare class BookmarkProvider implements IBookmarkProvider {
29
29
  * @deprecated
30
30
  * this will be removed as soon as applications have been migrated to use the bookmark provider
31
31
  */
32
- addStateCreator<T extends BookmarkData>(fn: BookmarkPayloadGenerator<T>): void;
32
+ addStateCreator<T extends BookmarkData>(fn: BookmarkPayloadGenerator<T>): VoidFunction;
33
33
  /**
34
34
  * @deprecated
35
35
  * this will be removed as soon as applications have been migrated to use the bookmark provider
@@ -1 +1 @@
1
- export declare const version = "2.1.3";
1
+ export declare const version = "2.1.4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-module-bookmark",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "",
5
5
  "main": "./dist/esm/index.js",
6
6
  "exports": {
@@ -39,18 +39,18 @@
39
39
  "rxjs": "^7.8.1",
40
40
  "uuid": "^11.0.3",
41
41
  "@equinor/fusion-framework-module": "^4.3.7",
42
- "@equinor/fusion-query": "^5.2.3",
43
42
  "@equinor/fusion-observable": "^8.4.6",
44
- "@equinor/fusion-log": "^1.1.2"
43
+ "@equinor/fusion-log": "^1.1.2",
44
+ "@equinor/fusion-query": "^5.2.3"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/uuid": "^9.0.8",
48
48
  "typescript": "^5.8.2",
49
49
  "zod": "^3.23.8",
50
- "@equinor/fusion-framework-module-app": "^6.1.6",
51
- "@equinor/fusion-framework-module-context": "^5.0.19",
52
- "@equinor/fusion-framework-module-http": "^6.2.3",
50
+ "@equinor/fusion-framework-module-app": "^6.1.8",
51
+ "@equinor/fusion-framework-module-context": "^5.1.0",
53
52
  "@equinor/fusion-framework-module-event": "^4.3.2",
53
+ "@equinor/fusion-framework-module-http": "^6.2.4",
54
54
  "@equinor/fusion-framework-module-services": "^5.1.2"
55
55
  },
56
56
  "scripts": {
@@ -104,7 +104,7 @@ export class BookmarkProvider implements IBookmarkProvider {
104
104
  */
105
105
  addStateCreator<T extends BookmarkData>(fn: BookmarkPayloadGenerator<T>) {
106
106
  console.warn('addStateCreator is deprecated, use addPayloadGenerator instead');
107
- this.addPayloadGenerator(fn);
107
+ return this.addPayloadGenerator(fn);
108
108
  }
109
109
 
110
110
  /**
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '2.1.3';
2
+ export const version = '2.1.4';
package/tsconfig.json CHANGED
@@ -3,8 +3,7 @@
3
3
  "compilerOptions": {
4
4
  "outDir": "dist/esm",
5
5
  "rootDir": "src",
6
- "declarationDir": "./dist/types",
7
-
6
+ "declarationDir": "./dist/types"
8
7
  },
9
8
  "references": [
10
9
  {
@@ -24,13 +23,8 @@
24
23
  },
25
24
  {
26
25
  "path": "../app"
27
- },
28
- ],
29
- "include": [
30
- "src/**/*",
26
+ }
31
27
  ],
32
- "exclude": [
33
- "node_modules",
34
- "dist"
35
- ]
36
- }
28
+ "include": ["src/**/*"],
29
+ "exclude": ["node_modules", "dist"]
30
+ }