@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.
- package/CHANGELOG.md +6 -0
- package/dist/esm/BookmarkProvider.js +1 -1
- package/dist/esm/BookmarkProvider.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/BookmarkProvider.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -6
- package/src/BookmarkProvider.ts +1 -1
- package/src/version.ts +1 -1
- package/tsconfig.json +5 -11
|
@@ -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>):
|
|
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
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.1.
|
|
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
|
+
"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.
|
|
51
|
-
"@equinor/fusion-framework-module-context": "^5.0
|
|
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": {
|
package/src/BookmarkProvider.ts
CHANGED
|
@@ -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.
|
|
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
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
]
|
|
36
|
-
}
|
|
28
|
+
"include": ["src/**/*"],
|
|
29
|
+
"exclude": ["node_modules", "dist"]
|
|
30
|
+
}
|