@equinor/fusion-framework-react-components-bookmark 1.0.8 → 1.0.9

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.
Files changed (49) hide show
  1. package/CHANGELOG.md +226 -215
  2. package/dist/esm/components/Bookmark.js.map +1 -1
  3. package/dist/esm/components/BookmarkProvider.js.map +1 -1
  4. package/dist/esm/components/create-bookmark/CreateBookmark.js.map +1 -1
  5. package/dist/esm/components/edit-bookmark/EditBookmark.js +1 -3
  6. package/dist/esm/components/edit-bookmark/EditBookmark.js.map +1 -1
  7. package/dist/esm/components/filter/Filter.js +2 -5
  8. package/dist/esm/components/filter/Filter.js.map +1 -1
  9. package/dist/esm/components/import-bookmark/ImportBookmark.js.map +1 -1
  10. package/dist/esm/components/loading/Loading.js.map +1 -1
  11. package/dist/esm/components/messages/Message.js.map +1 -1
  12. package/dist/esm/components/row/MoreMenu.js.map +1 -1
  13. package/dist/esm/components/row/Row.js.map +1 -1
  14. package/dist/esm/components/section/Section.js.map +1 -1
  15. package/dist/esm/components/sectionList/SectionList.js.map +1 -1
  16. package/dist/esm/components/shared/SharedIcon.js.map +1 -1
  17. package/dist/esm/hooks/useBookmarkGrouping.js.map +1 -1
  18. package/dist/esm/utils/append-bookmark-to-uri.js.map +1 -1
  19. package/dist/esm/utils/utils.js.map +1 -1
  20. package/dist/esm/version.js +1 -1
  21. package/dist/tsconfig.tsbuildinfo +1 -1
  22. package/dist/types/components/BookmarkProvider.d.ts +1 -1
  23. package/dist/types/components/filter/Filter.d.ts +1 -1
  24. package/dist/types/components/messages/Message.d.ts +1 -1
  25. package/dist/types/components/row/MoreMenu.d.ts +2 -2
  26. package/dist/types/components/row/Row.d.ts +1 -1
  27. package/dist/types/components/section/Section.d.ts +1 -1
  28. package/dist/types/components/sectionList/SectionList.d.ts +1 -1
  29. package/dist/types/hooks/useBookmarkGrouping.d.ts +1 -1
  30. package/dist/types/utils/utils.d.ts +1 -1
  31. package/dist/types/version.d.ts +1 -1
  32. package/package.json +7 -7
  33. package/src/components/Bookmark.tsx +46 -47
  34. package/src/components/BookmarkProvider.tsx +78 -78
  35. package/src/components/create-bookmark/CreateBookmark.tsx +96 -96
  36. package/src/components/edit-bookmark/EditBookmark.tsx +149 -152
  37. package/src/components/filter/Filter.tsx +21 -41
  38. package/src/components/import-bookmark/ImportBookmark.tsx +61 -65
  39. package/src/components/loading/Loading.tsx +11 -11
  40. package/src/components/messages/Message.tsx +47 -47
  41. package/src/components/row/MoreMenu.tsx +27 -27
  42. package/src/components/row/Row.tsx +56 -56
  43. package/src/components/section/Section.tsx +17 -17
  44. package/src/components/sectionList/SectionList.tsx +137 -143
  45. package/src/components/shared/SharedIcon.tsx +19 -19
  46. package/src/hooks/useBookmarkGrouping.ts +37 -37
  47. package/src/utils/append-bookmark-to-uri.ts +3 -3
  48. package/src/utils/utils.ts +6 -6
  49. package/src/version.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2848](https://github.com/equinor/fusion-framework/pull/2848) [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d) Thanks [@odinr](https://github.com/odinr)! - Refactored imports to use `type` when importing types from a module, to conform with the `useImportType` rule in Biome.
8
+
9
+ - Updated dependencies [[`811f1a0`](https://github.com/equinor/fusion-framework/commit/811f1a0139ff4d1b0c3fba1ec2b77cc84ba080d1), [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d)]:
10
+ - @equinor/fusion-observable@8.4.5
11
+ - @equinor/fusion-framework-react-module-bookmark@3.0.1
12
+ - @equinor/fusion-framework-react@7.4.1
13
+
3
14
  ## 1.0.8
4
15
 
5
16
  ### Patch Changes
@@ -7,24 +18,24 @@
7
18
  - [#2827](https://github.com/equinor/fusion-framework/pull/2827) [`4578b18`](https://github.com/equinor/fusion-framework/commit/4578b1835b70bd0869441c8fcf6d188f6440f192) Thanks [@odinr](https://github.com/odinr)! - fixed peer dependencies
8
19
 
9
20
  - Updated dependencies [[`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa)]:
10
- - @equinor/fusion-framework-react@7.4.0
11
- - @equinor/fusion-framework-react-module-bookmark@3.0.0
21
+ - @equinor/fusion-framework-react@7.4.0
22
+ - @equinor/fusion-framework-react-module-bookmark@3.0.0
12
23
 
13
24
  ## 1.0.7
14
25
 
15
26
  ### Patch Changes
16
27
 
17
28
  - Updated dependencies []:
18
- - @equinor/fusion-framework-react@7.3.8
19
- - @equinor/fusion-framework-react-module-bookmark@2.3.2
29
+ - @equinor/fusion-framework-react@7.3.8
30
+ - @equinor/fusion-framework-react-module-bookmark@2.3.2
20
31
 
21
32
  ## 1.0.6
22
33
 
23
34
  ### Patch Changes
24
35
 
25
36
  - Updated dependencies []:
26
- - @equinor/fusion-framework-react@7.3.7
27
- - @equinor/fusion-framework-react-module-bookmark@2.3.1
37
+ - @equinor/fusion-framework-react@7.3.7
38
+ - @equinor/fusion-framework-react-module-bookmark@2.3.1
28
39
 
29
40
  ## 1.0.5
30
41
 
@@ -35,8 +46,8 @@
35
46
  - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - improved handling of provider
36
47
 
37
48
  - Updated dependencies [[`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb)]:
38
- - @equinor/fusion-framework-react-module-bookmark@2.3.0
39
- - @equinor/fusion-framework-react@7.3.6
49
+ - @equinor/fusion-framework-react-module-bookmark@2.3.0
50
+ - @equinor/fusion-framework-react@7.3.6
40
51
 
41
52
  ## 1.0.4
42
53
 
@@ -45,31 +56,31 @@
45
56
  - [#2690](https://github.com/equinor/fusion-framework/pull/2690) [`809bee0`](https://github.com/equinor/fusion-framework/commit/809bee089d5d84799a3834294ca02937eaa46a0e) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/eds-icons from 0.21.0 to 0.22.0
46
57
 
47
58
  - Updated dependencies []:
48
- - @equinor/fusion-framework-react@7.3.5
49
- - @equinor/fusion-framework-react-module-bookmark@2.2.4
59
+ - @equinor/fusion-framework-react@7.3.5
60
+ - @equinor/fusion-framework-react-module-bookmark@2.2.4
50
61
 
51
62
  ## 1.0.3
52
63
 
53
64
  ### Patch Changes
54
65
 
55
66
  - Updated dependencies []:
56
- - @equinor/fusion-framework-react@7.3.4
57
- - @equinor/fusion-framework-react-module-bookmark@2.2.3
67
+ - @equinor/fusion-framework-react@7.3.4
68
+ - @equinor/fusion-framework-react-module-bookmark@2.2.3
58
69
 
59
70
  ## 1.0.2
60
71
 
61
72
  ### Patch Changes
62
73
 
63
74
  - Updated dependencies []:
64
- - @equinor/fusion-framework-react@7.3.3
65
- - @equinor/fusion-framework-react-module-bookmark@2.2.2
75
+ - @equinor/fusion-framework-react@7.3.3
76
+ - @equinor/fusion-framework-react-module-bookmark@2.2.2
66
77
 
67
78
  ## 1.0.1
68
79
 
69
80
  ### Patch Changes
70
81
 
71
82
  - Updated dependencies [[`7e67ae1`](https://github.com/equinor/fusion-framework/commit/7e67ae127a3a5256df925ae6bd472aa32b8d9292)]:
72
- - @equinor/fusion-framework-react-module-bookmark@2.2.1
83
+ - @equinor/fusion-framework-react-module-bookmark@2.2.1
73
84
 
74
85
  ## 1.0.0
75
86
 
@@ -77,27 +88,27 @@
77
88
 
78
89
  - [#2410](https://github.com/equinor/fusion-framework/pull/2410) [`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641) Thanks [@odinr](https://github.com/odinr)! - **@equinor/fusion-framework-react-module-bookmark:**
79
90
 
80
- Updated the `Bookmark` component to use the `useBookmarkComponentContext` hook for accessing the bookmark provider and state.
91
+ Updated the `Bookmark` component to use the `useBookmarkComponentContext` hook for accessing the bookmark provider and state.
81
92
 
82
- - Replaced the `useBookmark` hook with `useBookmarkComponentContext` in the `Bookmark` component.
83
- - Updated the `BookmarkProvider` component to use `createContext` and `useContext` for managing the bookmark provider state.
84
- - Modified the `CreateBookmarkModal` and `EditBookmarkModal` components to use the `useBookmarkComponentContext` hook.
85
- - Enhanced the `BookmarkProvider` component to include the current application context.
86
- - Improved error handling and loading state management in the `Bookmark` component.
93
+ - Replaced the `useBookmark` hook with `useBookmarkComponentContext` in the `Bookmark` component.
94
+ - Updated the `BookmarkProvider` component to use `createContext` and `useContext` for managing the bookmark provider state.
95
+ - Modified the `CreateBookmarkModal` and `EditBookmarkModal` components to use the `useBookmarkComponentContext` hook.
96
+ - Enhanced the `BookmarkProvider` component to include the current application context.
97
+ - Improved error handling and loading state management in the `Bookmark` component.
87
98
 
88
99
  ### Patch Changes
89
100
 
90
101
  - Updated dependencies [[`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641)]:
91
- - @equinor/fusion-framework-react-module-bookmark@2.2.0
92
- - @equinor/fusion-framework-react@7.3.2
102
+ - @equinor/fusion-framework-react-module-bookmark@2.2.0
103
+ - @equinor/fusion-framework-react@7.3.2
93
104
 
94
105
  ## 0.5.3
95
106
 
96
107
  ### Patch Changes
97
108
 
98
109
  - Updated dependencies []:
99
- - @equinor/fusion-framework-react@7.3.1
100
- - @equinor/fusion-framework-react-module-bookmark@2.1.19
110
+ - @equinor/fusion-framework-react@7.3.1
111
+ - @equinor/fusion-framework-react-module-bookmark@2.1.19
101
112
 
102
113
  ## 0.5.2
103
114
 
@@ -105,73 +116,73 @@
105
116
 
106
117
  - [#2494](https://github.com/equinor/fusion-framework/pull/2494) [`e11ad64`](https://github.com/equinor/fusion-framework/commit/e11ad64a42210443bdfd9ab9eb2fb95e7e345251) Thanks [@odinr](https://github.com/odinr)! - Adjusted module to the new app service API.
107
118
 
108
- > [!WARNING]
109
- > This will introduce breaking changes to the configuration of `AppConfigurator.client`.
110
-
111
- **Added**
112
-
113
- - Introduced `AppClient` class to handle application manifest and configuration queries.
114
- - Added `zod` to validate the application manifest.
115
-
116
- **Changed**
117
-
118
- - Updated `AppModuleProvider` to use `AppClient` for fetching application manifests and configurations.
119
- - Modified `AppConfigurator` to utilize `AppClient` for client configuration.
120
- - Updated `useApps` hook with new input parameter for `filterByCurrentUser` in `fusion-framework-react`.
121
-
122
- **Migration**
123
-
124
- before:
125
-
126
- ```ts
127
- configurator.setClient({
128
- getAppManifest: {
129
- client: {
130
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}`),
131
- },
132
- key: ({ appKey }) => appKey,
133
- },
134
- getAppManifests: {
135
- client: {
136
- fn: () => httpClient.json$<ApiApp[]>(`/apps`),
137
- },
138
- key: () => `all-apps`,
139
- },
140
- getAppConfig: {
141
- client: {
142
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}/config`),
143
- },
144
- key: ({ appKey }) => appKey,
145
- },
146
- });
147
- ```
148
-
149
- after:
150
-
151
- ```ts
152
- import { AppClient } from `@equinor/fusion-framework-module-app`;
153
- configurator.setClient(new AppClient());
154
- ```
155
-
156
- custom client implementation:
157
-
158
- ```ts
159
- import { AppClient } from `@equinor/fusion-framework-module-app`;
160
- class CustomAppClient implements IAppClient { ... }
161
- configurator.setClient(new CustomAppClient());
162
- ```
119
+ > [!WARNING]
120
+ > This will introduce breaking changes to the configuration of `AppConfigurator.client`.
121
+
122
+ **Added**
123
+
124
+ - Introduced `AppClient` class to handle application manifest and configuration queries.
125
+ - Added `zod` to validate the application manifest.
126
+
127
+ **Changed**
128
+
129
+ - Updated `AppModuleProvider` to use `AppClient` for fetching application manifests and configurations.
130
+ - Modified `AppConfigurator` to utilize `AppClient` for client configuration.
131
+ - Updated `useApps` hook with new input parameter for `filterByCurrentUser` in `fusion-framework-react`.
132
+
133
+ **Migration**
134
+
135
+ before:
136
+
137
+ ```ts
138
+ configurator.setClient({
139
+ getAppManifest: {
140
+ client: {
141
+ fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}`),
142
+ },
143
+ key: ({ appKey }) => appKey,
144
+ },
145
+ getAppManifests: {
146
+ client: {
147
+ fn: () => httpClient.json$<ApiApp[]>(`/apps`),
148
+ },
149
+ key: () => `all-apps`,
150
+ },
151
+ getAppConfig: {
152
+ client: {
153
+ fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}/config`),
154
+ },
155
+ key: ({ appKey }) => appKey,
156
+ },
157
+ });
158
+ ```
159
+
160
+ after:
161
+
162
+ ```ts
163
+ import { AppClient } from `@equinor/fusion-framework-module-app`;
164
+ configurator.setClient(new AppClient());
165
+ ```
166
+
167
+ custom client implementation:
168
+
169
+ ```ts
170
+ import { AppClient } from `@equinor/fusion-framework-module-app`;
171
+ class CustomAppClient implements IAppClient { ... }
172
+ configurator.setClient(new CustomAppClient());
173
+ ```
163
174
 
164
175
  - Updated dependencies [[`e11ad64`](https://github.com/equinor/fusion-framework/commit/e11ad64a42210443bdfd9ab9eb2fb95e7e345251)]:
165
- - @equinor/fusion-framework-react@7.3.0
166
- - @equinor/fusion-framework-react-module-bookmark@2.1.18
176
+ - @equinor/fusion-framework-react@7.3.0
177
+ - @equinor/fusion-framework-react-module-bookmark@2.1.18
167
178
 
168
179
  ## 0.5.1
169
180
 
170
181
  ### Patch Changes
171
182
 
172
183
  - Updated dependencies []:
173
- - @equinor/fusion-framework-react@7.2.3
174
- - @equinor/fusion-framework-react-module-bookmark@2.1.17
184
+ - @equinor/fusion-framework-react@7.2.3
185
+ - @equinor/fusion-framework-react-module-bookmark@2.1.17
175
186
 
176
187
  ## 0.5.0
177
188
 
@@ -182,16 +193,16 @@
182
193
  ### Patch Changes
183
194
 
184
195
  - Updated dependencies []:
185
- - @equinor/fusion-framework-react@7.2.2
186
- - @equinor/fusion-framework-react-module-bookmark@2.1.16
196
+ - @equinor/fusion-framework-react@7.2.2
197
+ - @equinor/fusion-framework-react-module-bookmark@2.1.16
187
198
 
188
199
  ## 0.4.15
189
200
 
190
201
  ### Patch Changes
191
202
 
192
203
  - Updated dependencies []:
193
- - @equinor/fusion-framework-react-module-bookmark@2.1.15
194
- - @equinor/fusion-framework-react@7.2.1
204
+ - @equinor/fusion-framework-react-module-bookmark@2.1.15
205
+ - @equinor/fusion-framework-react@7.2.1
195
206
 
196
207
  ## 0.4.14
197
208
 
@@ -199,11 +210,11 @@
199
210
 
200
211
  - [#2403](https://github.com/equinor/fusion-framework/pull/2403) [`67ea61d`](https://github.com/equinor/fusion-framework/commit/67ea61dad8f50e8b8b977008b26374c2f982eb4d) Thanks [@dependabot](https://github.com/apps/dependabot)! - bump @equinor/eds-core-react from 0.40.1 to 0.41.2
201
212
 
202
- [see EDS changelog](https://github.com/equinor/design-system/blob/develop/packages/eds-core-react/CHANGELOG.md)
213
+ [see EDS changelog](https://github.com/equinor/design-system/blob/develop/packages/eds-core-react/CHANGELOG.md)
203
214
 
204
215
  - Updated dependencies [[`843edd9`](https://github.com/equinor/fusion-framework/commit/843edd96f2a01ebd814766105902977cdc1cdf8e)]:
205
- - @equinor/fusion-framework-react@7.2.0
206
- - @equinor/fusion-framework-react-module-bookmark@2.1.14
216
+ - @equinor/fusion-framework-react@7.2.0
217
+ - @equinor/fusion-framework-react-module-bookmark@2.1.14
207
218
 
208
219
  ## 0.4.13
209
220
 
@@ -212,16 +223,16 @@
212
223
  - [#2350](https://github.com/equinor/fusion-framework/pull/2350) [`960ca34`](https://github.com/equinor/fusion-framework/commit/960ca34cae26f386e28c16bac00e7932f4f9199a) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/eds-core-react from 0.38.0 to 0.40.1
213
224
 
214
225
  - Updated dependencies []:
215
- - @equinor/fusion-framework-react@7.1.4
216
- - @equinor/fusion-framework-react-module-bookmark@2.1.13
226
+ - @equinor/fusion-framework-react@7.1.4
227
+ - @equinor/fusion-framework-react-module-bookmark@2.1.13
217
228
 
218
229
  ## 0.4.12
219
230
 
220
231
  ### Patch Changes
221
232
 
222
233
  - Updated dependencies []:
223
- - @equinor/fusion-framework-react@7.1.3
224
- - @equinor/fusion-framework-react-module-bookmark@2.1.12
234
+ - @equinor/fusion-framework-react@7.1.3
235
+ - @equinor/fusion-framework-react-module-bookmark@2.1.12
225
236
 
226
237
  ## 0.4.11
227
238
 
@@ -231,58 +242,58 @@
231
242
 
232
243
  - [#2320](https://github.com/equinor/fusion-framework/pull/2320) [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee) Thanks [@odinr](https://github.com/odinr)! - Removed the `removeComments` option from the `tsconfig.base.json` file.
233
244
 
234
- Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
245
+ Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
235
246
 
236
- 1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
237
- 2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
238
- 3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
247
+ 1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
248
+ 2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
249
+ 3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
239
250
 
240
- No action is required from consumers of the library. This change affects the build process and doesn't introduce any breaking changes or new features.
251
+ No action is required from consumers of the library. This change affects the build process and doesn't introduce any breaking changes or new features.
241
252
 
242
- Before:
253
+ Before:
243
254
 
244
- ```json
245
- {
246
- "compilerOptions": {
247
- "module": "ES2022",
248
- "target": "ES6",
249
- "incremental": true,
250
- "removeComments": true,
251
- "preserveConstEnums": true,
252
- "sourceMap": true,
253
- "moduleResolution": "node"
254
- }
255
+ ```json
256
+ {
257
+ "compilerOptions": {
258
+ "module": "ES2022",
259
+ "target": "ES6",
260
+ "incremental": true,
261
+ "removeComments": true,
262
+ "preserveConstEnums": true,
263
+ "sourceMap": true,
264
+ "moduleResolution": "node"
255
265
  }
256
- ```
257
-
258
- After:
259
-
260
- ```json
261
- {
262
- "compilerOptions": {
263
- "module": "ES2022",
264
- "target": "ES6",
265
- "incremental": true,
266
- "preserveConstEnums": true,
267
- "sourceMap": true,
268
- "moduleResolution": "node"
269
- }
266
+ }
267
+ ```
268
+
269
+ After:
270
+
271
+ ```json
272
+ {
273
+ "compilerOptions": {
274
+ "module": "ES2022",
275
+ "target": "ES6",
276
+ "incremental": true,
277
+ "preserveConstEnums": true,
278
+ "sourceMap": true,
279
+ "moduleResolution": "node"
270
280
  }
271
- ```
281
+ }
282
+ ```
272
283
 
273
- This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
284
+ This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
274
285
 
275
286
  - Updated dependencies [[`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee)]:
276
- - @equinor/fusion-framework-react-module-bookmark@2.1.11
277
- - @equinor/fusion-framework-react@7.1.2
287
+ - @equinor/fusion-framework-react-module-bookmark@2.1.11
288
+ - @equinor/fusion-framework-react@7.1.2
278
289
 
279
290
  ## 0.4.10
280
291
 
281
292
  ### Patch Changes
282
293
 
283
294
  - Updated dependencies []:
284
- - @equinor/fusion-framework-react@7.1.1
285
- - @equinor/fusion-framework-react-module-bookmark@2.1.10
295
+ - @equinor/fusion-framework-react@7.1.1
296
+ - @equinor/fusion-framework-react-module-bookmark@2.1.10
286
297
 
287
298
  ## 0.4.9
288
299
 
@@ -291,32 +302,32 @@
291
302
  - [#2205](https://github.com/equinor/fusion-framework/pull/2205) [`4e64552`](https://github.com/equinor/fusion-framework/commit/4e64552a3c1b0324e1deda93779eab16dbebbed3) Thanks [@odinr](https://github.com/odinr)! - Updated `@equinor/eds-core-react` dependency to version `^0.38.0`
292
303
  Updated `@equinor/eds-utils` dependency to version `^0.8.5`
293
304
  - Updated dependencies [[`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8)]:
294
- - @equinor/fusion-framework-react@7.1.0
295
- - @equinor/fusion-framework-react-module-bookmark@2.1.9
305
+ - @equinor/fusion-framework-react@7.1.0
306
+ - @equinor/fusion-framework-react-module-bookmark@2.1.9
296
307
 
297
308
  ## 0.4.8
298
309
 
299
310
  ### Patch Changes
300
311
 
301
312
  - Updated dependencies []:
302
- - @equinor/fusion-framework-react@7.0.8
303
- - @equinor/fusion-framework-react-module-bookmark@2.1.8
313
+ - @equinor/fusion-framework-react@7.0.8
314
+ - @equinor/fusion-framework-react-module-bookmark@2.1.8
304
315
 
305
316
  ## 0.4.7
306
317
 
307
318
  ### Patch Changes
308
319
 
309
320
  - Updated dependencies []:
310
- - @equinor/fusion-framework-react-module-bookmark@2.1.7
311
- - @equinor/fusion-framework-react@7.0.7
321
+ - @equinor/fusion-framework-react-module-bookmark@2.1.7
322
+ - @equinor/fusion-framework-react@7.0.7
312
323
 
313
324
  ## 0.4.6
314
325
 
315
326
  ### Patch Changes
316
327
 
317
328
  - Updated dependencies []:
318
- - @equinor/fusion-framework-react-module-bookmark@2.1.6
319
- - @equinor/fusion-framework-react@7.0.6
329
+ - @equinor/fusion-framework-react-module-bookmark@2.1.6
330
+ - @equinor/fusion-framework-react@7.0.6
320
331
 
321
332
  ## 0.4.5
322
333
 
@@ -325,32 +336,32 @@
325
336
  - [#2098](https://github.com/equinor/fusion-framework/pull/2098) [`5093391`](https://github.com/equinor/fusion-framework/commit/5093391eabda84873041ee89632f26770734b03c) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump @equinor/eds-core-react from 0.36.1 to 0.37.0
326
337
 
327
338
  - Updated dependencies []:
328
- - @equinor/fusion-framework-react-module-bookmark@2.1.5
329
- - @equinor/fusion-framework-react@7.0.5
339
+ - @equinor/fusion-framework-react-module-bookmark@2.1.5
340
+ - @equinor/fusion-framework-react@7.0.5
330
341
 
331
342
  ## 0.4.4
332
343
 
333
344
  ### Patch Changes
334
345
 
335
346
  - Updated dependencies []:
336
- - @equinor/fusion-framework-react@7.0.4
337
- - @equinor/fusion-framework-react-module-bookmark@2.1.4
347
+ - @equinor/fusion-framework-react@7.0.4
348
+ - @equinor/fusion-framework-react-module-bookmark@2.1.4
338
349
 
339
350
  ## 0.4.3
340
351
 
341
352
  ### Patch Changes
342
353
 
343
354
  - Updated dependencies []:
344
- - @equinor/fusion-framework-react@7.0.3
345
- - @equinor/fusion-framework-react-module-bookmark@2.1.3
355
+ - @equinor/fusion-framework-react@7.0.3
356
+ - @equinor/fusion-framework-react-module-bookmark@2.1.3
346
357
 
347
358
  ## 0.4.2
348
359
 
349
360
  ### Patch Changes
350
361
 
351
362
  - Updated dependencies []:
352
- - @equinor/fusion-framework-react@7.0.2
353
- - @equinor/fusion-framework-react-module-bookmark@2.1.2
363
+ - @equinor/fusion-framework-react@7.0.2
364
+ - @equinor/fusion-framework-react-module-bookmark@2.1.2
354
365
 
355
366
  ## 0.4.1
356
367
 
@@ -359,8 +370,8 @@
359
370
  - [#1981](https://github.com/equinor/fusion-framework/pull/1981) [`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc) Thanks [@eikeland](https://github.com/eikeland)! - Align package exports with node10+ documentation.
360
371
 
361
372
  - Updated dependencies [[`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc)]:
362
- - @equinor/fusion-framework-react@7.0.1
363
- - @equinor/fusion-framework-react-module-bookmark@2.1.1
373
+ - @equinor/fusion-framework-react@7.0.1
374
+ - @equinor/fusion-framework-react-module-bookmark@2.1.1
364
375
 
365
376
  ## 0.4.0
366
377
 
@@ -371,32 +382,32 @@
371
382
  ### Patch Changes
372
383
 
373
384
  - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
374
- - @equinor/fusion-framework-react-module-bookmark@2.1.0
375
- - @equinor/fusion-framework-react@7.0.0
385
+ - @equinor/fusion-framework-react-module-bookmark@2.1.0
386
+ - @equinor/fusion-framework-react@7.0.0
376
387
 
377
388
  ## 0.3.11
378
389
 
379
390
  ### Patch Changes
380
391
 
381
392
  - Updated dependencies []:
382
- - @equinor/fusion-framework-react-module-bookmark@2.0.35
383
- - @equinor/fusion-framework-react@6.0.5
393
+ - @equinor/fusion-framework-react-module-bookmark@2.0.35
394
+ - @equinor/fusion-framework-react@6.0.5
384
395
 
385
396
  ## 0.3.10
386
397
 
387
398
  ### Patch Changes
388
399
 
389
400
  - Updated dependencies []:
390
- - @equinor/fusion-framework-react@6.0.4
391
- - @equinor/fusion-framework-react-module-bookmark@2.0.34
401
+ - @equinor/fusion-framework-react@6.0.4
402
+ - @equinor/fusion-framework-react-module-bookmark@2.0.34
392
403
 
393
404
  ## 0.3.9
394
405
 
395
406
  ### Patch Changes
396
407
 
397
408
  - Updated dependencies []:
398
- - @equinor/fusion-framework-react@6.0.3
399
- - @equinor/fusion-framework-react-module-bookmark@2.0.33
409
+ - @equinor/fusion-framework-react@6.0.3
410
+ - @equinor/fusion-framework-react-module-bookmark@2.0.33
400
411
 
401
412
  ## 0.3.8
402
413
 
@@ -409,16 +420,16 @@
409
420
  ### Patch Changes
410
421
 
411
422
  - Updated dependencies [[`2a813bc`](https://github.com/equinor/fusion-framework/commit/2a813bc0a32f53e7515f16f8b5cba1cf1e5018a3)]:
412
- - @equinor/fusion-framework-react@6.0.2
413
- - @equinor/fusion-framework-react-module-bookmark@2.0.32
423
+ - @equinor/fusion-framework-react@6.0.2
424
+ - @equinor/fusion-framework-react-module-bookmark@2.0.32
414
425
 
415
426
  ## 0.3.6
416
427
 
417
428
  ### Patch Changes
418
429
 
419
430
  - Updated dependencies [[`fdbe12f`](https://github.com/equinor/fusion-framework/commit/fdbe12f258aeb98d91094f16f2d8ce229d7b13ee)]:
420
- - @equinor/fusion-framework-react@6.0.1
421
- - @equinor/fusion-framework-react-module-bookmark@2.0.31
431
+ - @equinor/fusion-framework-react@6.0.1
432
+ - @equinor/fusion-framework-react-module-bookmark@2.0.31
422
433
 
423
434
  ## 0.3.5
424
435
 
@@ -427,39 +438,39 @@
427
438
  - [#1754](https://github.com/equinor/fusion-framework/pull/1754) [`81e7db7`](https://github.com/equinor/fusion-framework/commit/81e7db74690aa7284584d3820494cb71e6ad6c91) Thanks [@eikeland](https://github.com/eikeland)! - Updating eds packages to mitigate type errors after latest version, @equinor/ids-icons >= 0.20.0.
428
439
 
429
440
  - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
430
- - @equinor/fusion-framework-react@6.0.0
431
- - @equinor/fusion-framework-react-module-bookmark@2.0.30
441
+ - @equinor/fusion-framework-react@6.0.0
442
+ - @equinor/fusion-framework-react-module-bookmark@2.0.30
432
443
 
433
444
  ## 0.3.4
434
445
 
435
446
  ### Patch Changes
436
447
 
437
448
  - Updated dependencies []:
438
- - @equinor/fusion-framework-react-module-bookmark@2.0.29
449
+ - @equinor/fusion-framework-react-module-bookmark@2.0.29
439
450
 
440
451
  ## 0.3.3
441
452
 
442
453
  ### Patch Changes
443
454
 
444
455
  - Updated dependencies []:
445
- - @equinor/fusion-framework-react@5.3.9
446
- - @equinor/fusion-framework-react-module-bookmark@2.0.28
456
+ - @equinor/fusion-framework-react@5.3.9
457
+ - @equinor/fusion-framework-react-module-bookmark@2.0.28
447
458
 
448
459
  ## 0.3.2
449
460
 
450
461
  ### Patch Changes
451
462
 
452
463
  - Updated dependencies []:
453
- - @equinor/fusion-framework-react@5.3.8
454
- - @equinor/fusion-framework-react-module-bookmark@2.0.27
464
+ - @equinor/fusion-framework-react@5.3.8
465
+ - @equinor/fusion-framework-react-module-bookmark@2.0.27
455
466
 
456
467
  ## 0.3.1
457
468
 
458
469
  ### Patch Changes
459
470
 
460
471
  - Updated dependencies []:
461
- - @equinor/fusion-framework-react@5.3.7
462
- - @equinor/fusion-framework-react-module-bookmark@2.0.26
472
+ - @equinor/fusion-framework-react@5.3.7
473
+ - @equinor/fusion-framework-react-module-bookmark@2.0.26
463
474
 
464
475
  ## 0.3.0
465
476
 
@@ -470,39 +481,39 @@
470
481
  ### Patch Changes
471
482
 
472
483
  - Updated dependencies []:
473
- - @equinor/fusion-framework-react@5.3.6
474
- - @equinor/fusion-framework-react-module-bookmark@2.0.25
484
+ - @equinor/fusion-framework-react@5.3.6
485
+ - @equinor/fusion-framework-react-module-bookmark@2.0.25
475
486
 
476
487
  ## 0.2.14
477
488
 
478
489
  ### Patch Changes
479
490
 
480
491
  - Updated dependencies []:
481
- - @equinor/fusion-framework-react@5.3.5
482
- - @equinor/fusion-framework-react-module-bookmark@2.0.24
492
+ - @equinor/fusion-framework-react@5.3.5
493
+ - @equinor/fusion-framework-react-module-bookmark@2.0.24
483
494
 
484
495
  ## 0.2.13
485
496
 
486
497
  ### Patch Changes
487
498
 
488
499
  - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
489
- - @equinor/fusion-framework-react-module-bookmark@2.0.23
490
- - @equinor/fusion-framework-react@5.3.4
500
+ - @equinor/fusion-framework-react-module-bookmark@2.0.23
501
+ - @equinor/fusion-framework-react@5.3.4
491
502
 
492
503
  ## 0.2.12
493
504
 
494
505
  ### Patch Changes
495
506
 
496
507
  - Updated dependencies []:
497
- - @equinor/fusion-framework-react-module-bookmark@2.0.22
508
+ - @equinor/fusion-framework-react-module-bookmark@2.0.22
498
509
 
499
510
  ## 0.2.11
500
511
 
501
512
  ### Patch Changes
502
513
 
503
514
  - Updated dependencies []:
504
- - @equinor/fusion-framework-react-module-bookmark@2.0.21
505
- - @equinor/fusion-framework-react@5.3.3
515
+ - @equinor/fusion-framework-react-module-bookmark@2.0.21
516
+ - @equinor/fusion-framework-react@5.3.3
506
517
 
507
518
  ## 0.2.10
508
519
 
@@ -510,15 +521,15 @@
510
521
 
511
522
  - [#1348](https://github.com/equinor/fusion-framework/pull/1348) [`0acc8827`](https://github.com/equinor/fusion-framework/commit/0acc8827e5e2df8b5b2aeac5e1a2cd29c4384e78) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/eds-core-react from 0.32.4 to 0.33.0
512
523
 
513
- - support for [styled-components@6](https://styled-components.com/releases#v6.0.0)
524
+ - support for [styled-components@6](https://styled-components.com/releases#v6.0.0)
514
525
 
515
526
  ## 0.2.9
516
527
 
517
528
  ### Patch Changes
518
529
 
519
530
  - Updated dependencies []:
520
- - @equinor/fusion-framework-react-module-bookmark@2.0.20
521
- - @equinor/fusion-framework-react@5.3.2
531
+ - @equinor/fusion-framework-react-module-bookmark@2.0.20
532
+ - @equinor/fusion-framework-react@5.3.2
522
533
 
523
534
  ## 0.2.8
524
535
 
@@ -527,32 +538,32 @@
527
538
  - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
528
539
 
529
540
  - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
530
- - @equinor/fusion-framework-react@5.3.1
531
- - @equinor/fusion-framework-react-module-bookmark@2.0.19
541
+ - @equinor/fusion-framework-react@5.3.1
542
+ - @equinor/fusion-framework-react-module-bookmark@2.0.19
532
543
 
533
544
  ## 0.2.7
534
545
 
535
546
  ### Patch Changes
536
547
 
537
548
  - Updated dependencies [[`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658)]:
538
- - @equinor/fusion-framework-react@5.3.0
539
- - @equinor/fusion-framework-react-module-bookmark@2.0.18
549
+ - @equinor/fusion-framework-react@5.3.0
550
+ - @equinor/fusion-framework-react-module-bookmark@2.0.18
540
551
 
541
552
  ## 0.2.6
542
553
 
543
554
  ### Patch Changes
544
555
 
545
556
  - Updated dependencies []:
546
- - @equinor/fusion-framework-react@5.2.7
547
- - @equinor/fusion-framework-react-module-bookmark@2.0.17
557
+ - @equinor/fusion-framework-react@5.2.7
558
+ - @equinor/fusion-framework-react-module-bookmark@2.0.17
548
559
 
549
560
  ## 0.2.5
550
561
 
551
562
  ### Patch Changes
552
563
 
553
564
  - Updated dependencies []:
554
- - @equinor/fusion-framework-react@5.2.6
555
- - @equinor/fusion-framework-react-module-bookmark@2.0.16
565
+ - @equinor/fusion-framework-react@5.2.6
566
+ - @equinor/fusion-framework-react-module-bookmark@2.0.16
556
567
 
557
568
  ## 0.2.4
558
569
 
@@ -579,8 +590,8 @@
579
590
  - [`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594) Thanks [@odinr](https://github.com/odinr)! - fix typo in styled components
580
591
 
581
592
  - Updated dependencies []:
582
- - @equinor/fusion-framework-react-module-bookmark@2.0.15
583
- - @equinor/fusion-framework-react@5.2.5
593
+ - @equinor/fusion-framework-react-module-bookmark@2.0.15
594
+ - @equinor/fusion-framework-react@5.2.5
584
595
 
585
596
  ## 0.2.0
586
597
 
@@ -588,30 +599,30 @@
588
599
 
589
600
  - [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Removed emotion styling
590
601
 
591
- issues whit conflicting package when using 3x jss frameworks (mui, styled-components, emotion)
602
+ issues whit conflicting package when using 3x jss frameworks (mui, styled-components, emotion)
592
603
 
593
- _this might break jss class generation front-end, since classnames changes_
604
+ _this might break jss class generation front-end, since classnames changes_
594
605
 
595
606
  ### Patch Changes
596
607
 
597
608
  - [#1109](https://github.com/equinor/fusion-framework/pull/1109) [`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862) Thanks [@odinr](https://github.com/odinr)! - Change packaged manager from yarn to pnpm
598
609
 
599
- conflicts of `@types/react` made random outcomes when using `yarn`
610
+ conflicts of `@types/react` made random outcomes when using `yarn`
600
611
 
601
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
612
+ this change should not affect consumer of the packages, but might conflict dependent on local package manager.
602
613
 
603
614
  - [#1129](https://github.com/equinor/fusion-framework/pull/1129) [`f672d0bb`](https://github.com/equinor/fusion-framework/commit/f672d0bba71a7ea6cd08135778fda67ff38f3ac3) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @equinor/eds-core-react from 0.30.0 to 0.32.4
604
615
 
605
616
  - [#1122](https://github.com/equinor/fusion-framework/pull/1122) [`1a055b21`](https://github.com/equinor/fusion-framework/commit/1a055b21e07f84bc5d35cc891586aa9aa0bdf661) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update styled-components to [^6.0.7](https://github.com/styled-components/styled-components/releases/tag/v6.0.7)
606
617
 
607
- - upgraded dev deps of `@equinor/fusion-framework-react-components-bookmark` to react 18, see style-components [changelog](https://github.com/styled-components/styled-components/releases/tag/v6.0.0)
608
- - removed `@types/style-components` from `@equinor/fusion-framework-react-components-bookmark`
618
+ - upgraded dev deps of `@equinor/fusion-framework-react-components-bookmark` to react 18, see style-components [changelog](https://github.com/styled-components/styled-components/releases/tag/v6.0.0)
619
+ - removed `@types/style-components` from `@equinor/fusion-framework-react-components-bookmark`
609
620
 
610
- see style-components [migration guide](https://styled-components.com/docs/faqs#what-do-i-need-to-do-to-migrate-to-v6)
621
+ see style-components [migration guide](https://styled-components.com/docs/faqs#what-do-i-need-to-do-to-migrate-to-v6)
611
622
 
612
623
  - Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
613
- - @equinor/fusion-framework-react-module-bookmark@2.0.14
614
- - @equinor/fusion-framework-react@5.2.4
624
+ - @equinor/fusion-framework-react-module-bookmark@2.0.14
625
+ - @equinor/fusion-framework-react@5.2.4
615
626
 
616
627
  ## 0.1.16
617
628
 
@@ -619,11 +630,11 @@
619
630
 
620
631
  - [#1047](https://github.com/equinor/fusion-framework/pull/1047) [`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump @typescript-eslint/eslint-plugin from 5.59.11 to 6.1.0
621
632
 
622
- only style semantics updated
633
+ only style semantics updated
623
634
 
624
635
  - Updated dependencies [[`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c), [`1749da29`](https://github.com/equinor/fusion-framework/commit/1749da290c98c0a43b9fdf2253dfb224e4ccdcd0)]:
625
- - @equinor/fusion-framework-react@5.2.3
626
- - @equinor/fusion-framework-react-module-bookmark@2.0.13
636
+ - @equinor/fusion-framework-react@5.2.3
637
+ - @equinor/fusion-framework-react-module-bookmark@2.0.13
627
638
 
628
639
  ## 0.1.15
629
640
 
@@ -643,12 +654,12 @@
643
654
 
644
655
  - [#905](https://github.com/equinor/fusion-framework/pull/905) [`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c) Thanks [@odinr](https://github.com/odinr)! - **🚧 Chore: dedupe packages**
645
656
 
646
- - align all versions of typescript
647
- - update types to build
648
- - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
657
+ - align all versions of typescript
658
+ - update types to build
659
+ - a couple of typecasts did not [satisfies](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#satisfies-support-in-jsdoc) and was recasted as `unknwon`, marked with `TODO`, should be fixed in future
649
660
 
650
661
  - Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
651
- - @equinor/fusion-framework-react-module-bookmark@2.0.12
662
+ - @equinor/fusion-framework-react-module-bookmark@2.0.12
652
663
 
653
664
  ## 0.1.12
654
665
 
@@ -656,16 +667,16 @@
656
667
 
657
668
  - 727fb935: fix(react-module-bookmark): module can be undefined
658
669
 
659
- the bookmark module might not been enable, which makes the application crash.
670
+ the bookmark module might not been enable, which makes the application crash.
660
671
 
661
- **TODO:**
672
+ **TODO:**
662
673
 
663
- - [ ] create a simpler hook for using bookmark
664
- - [ ] create a hook for exposing the module
665
- - [ ] create better documentation
674
+ - [ ] create a simpler hook for using bookmark
675
+ - [ ] create a hook for exposing the module
676
+ - [ ] create better documentation
666
677
 
667
678
  - Updated dependencies [727fb935]
668
- - @equinor/fusion-framework-react-module-bookmark@2.0.11
679
+ - @equinor/fusion-framework-react-module-bookmark@2.0.11
669
680
 
670
681
  All notable changes to this project will be documented in this file.
671
682
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.