@equinor/fusion-framework-react-components-bookmark 2.0.4-next.0 → 2.0.5

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 (34) hide show
  1. package/dist/esm/version.js +1 -1
  2. package/dist/esm/version.js.map +1 -1
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/dist/types/version.d.ts +1 -1
  5. package/package.json +10 -7
  6. package/CHANGELOG.md +0 -1121
  7. package/src/__tests__/AppNameField.test.tsx +0 -39
  8. package/src/components/Bookmark.tsx +0 -98
  9. package/src/components/BookmarkProvider.tsx +0 -129
  10. package/src/components/create-bookmark/CreateBookmarkModal.tsx +0 -130
  11. package/src/components/create-bookmark/index.ts +0 -1
  12. package/src/components/edit-bookmark/AppNameField.tsx +0 -27
  13. package/src/components/edit-bookmark/EditBookmarkModal.tsx +0 -203
  14. package/src/components/edit-bookmark/index.ts +0 -1
  15. package/src/components/filter/BookmarkFilter.tsx +0 -44
  16. package/src/components/import-bookmark/ImportBookmarkModal.tsx +0 -100
  17. package/src/components/import-bookmark/index.ts +0 -1
  18. package/src/components/loading/Loading.tsx +0 -20
  19. package/src/components/messages/Message.tsx +0 -89
  20. package/src/components/row/MoreMenu.tsx +0 -41
  21. package/src/components/row/Row.tsx +0 -105
  22. package/src/components/section/Section.tsx +0 -63
  23. package/src/components/sectionList/SectionList.tsx +0 -186
  24. package/src/components/shared/SharedIcon.tsx +0 -51
  25. package/src/hooks/index.ts +0 -1
  26. package/src/hooks/useBookmarkGrouping.ts +0 -65
  27. package/src/index.ts +0 -12
  28. package/src/utils/append-bookmark-id-to-url.ts +0 -5
  29. package/src/utils/filter-empty-groups.ts +0 -5
  30. package/src/utils/sort-by-name.ts +0 -4
  31. package/src/utils/to-human-readable.ts +0 -6
  32. package/src/version.ts +0 -2
  33. package/tsconfig.json +0 -18
  34. package/vitest.config.ts +0 -10
package/CHANGELOG.md DELETED
@@ -1,1121 +0,0 @@
1
- # Change Log
2
-
3
- ## 2.0.4-next.0
4
-
5
- ### Patch Changes
6
-
7
- - e8aae1f: Internal: publish every package on the `next` pre-release tag so the whole framework can be installed as a coherent set.
8
-
9
- Packages without their own changes are bumped only to receive a `-next.N` version and the `next` dist-tag on npm. Install with:
10
-
11
- ```bash
12
- pnpm add @equinor/fusion-framework-react-app@next
13
- ```
14
-
15
- - Updated dependencies [e8aae1f]
16
- - Updated dependencies [2836e0b]
17
- - Updated dependencies [2836e0b]
18
- - @equinor/fusion-framework-react@9.0.0-next.0
19
- - @equinor/fusion-framework-react-module-bookmark@7.0.0-next.0
20
- - @equinor/fusion-observable@9.1.2-next.0
21
-
22
- ## 2.0.3
23
-
24
- ### Patch Changes
25
-
26
- - efad984: Show accessible loading feedback for the app name while the edit bookmark modal resolves its app manifest.
27
-
28
- ## 2.0.2
29
-
30
- ### Patch Changes
31
-
32
- - 80c3e4a: Internal: resolve `fusion-lint` `no-todo-without-issue` warnings by referencing tracking issues (#5089-#5095) and removing a stale empty TODO.
33
- - 80c3e4a: Internal: align bookmark source filenames with their exported symbols; no public API changes.
34
- - 80c3e4a: Internal: add intent comments to control-flow statements and iterator calls across bookmark UI components and hooks to satisfy the `require-intent-comment/flow` and `require-intent-comment/iterators` lint rules. No functional change.
35
- - 80c3e4a: Internal: add intent comments to control-flow statements in `ImportBookmark.tsx` to satisfy the `require-intent-comment/flow` lint rule. No functional change.
36
- - 80c3e4a: Internal: add intent comments to `.pipe()` operator chains in `Bookmark.tsx` and `ImportBookmark.tsx` to satisfy the `require-intent-comment/rxjs` lint rule. No functional change.
37
- - 80c3e4a: Internal: add missing TSDoc comments to `Bookmark`, `BookmarkProvider`, `useBookmarkComponentContext`, `useBookmarkGrouping`, `CreateBookmarkModal`, `EditBookmarkModal`, `BookmarkFilter`, `ImportBookmarkModal`, `Loading`, `Message`, `Section`, `MoreMenu`, `Row`, `SectionList`, and `SharedIcon` to satisfy the `require-component-tsdoc`/`require-hook-tsdoc` lint rules. No functional change.
38
- - 80c3e4a: Internal: split multi-export files into one export per file and convert pure interop re-exports to `export { X } from 'y'` syntax, per `fusion-lint`'s `single-export-per-file` rule. Also removed `modules/event/src/EventProvider.tsx`, a fully dead duplicate of `eventContext.ts`/`useEventProvider.ts`/`useModulesEventProvider.ts` with no remaining consumers. No behavior changes.
39
-
40
- ## 2.0.1
41
-
42
- ### Patch Changes
43
-
44
- - 4f71408: Internal: Bump `@equinor/eds-core-react` from 2.4.1 to 2.5.0.
45
- - 1fc204f: Internal: Bump `@equinor/eds-icons` from 1.3.0 to 1.4.0 (adds `partial_completion` icon).
46
-
47
- ## 2.0.0
48
-
49
- ### Major Changes
50
-
51
- - abffa53: Major version bump for Fusion Framework React 19 release.
52
-
53
- All packages are bumped to the next major version as part of the React 19 upgrade. This release drops support for React versions below 18 and includes breaking changes across the framework.
54
-
55
- **Breaking changes:**
56
- - Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
57
- - React Router upgraded from v6 to v7
58
- - Navigation module refactored with new history API
59
- - `renderComponent` and `renderApp` now use `createRoot` API
60
-
61
- **Migration:**
62
- - Update your React version to 18.0.0 or higher before upgrading
63
- - Replace `NavigationProvider.createRouter()` with `@equinor/fusion-framework-react-router`
64
- - See individual package changelogs for package-specific migration steps
65
-
66
- - abffa53: Require React 18+ as peer dependency. React 17 is no longer supported.
67
-
68
- **Migration:** Update your application to React 18+ to continue using these packages.
69
-
70
- Closes https://github.com/equinor/fusion-framework/issues/3504
71
-
72
- - abffa53: Upgrade to React 19 and remove support for React versions lower than 18.
73
-
74
- **Breaking changes:**
75
- - Peer dependencies now require React 18 or 19 (`^18.0.0 || ^19.0.0`)
76
- - React 16 and 17 are no longer supported
77
- - Dev dependencies upgraded to React 19.2.1 and @types/react 19.2.7
78
-
79
- **Migration:**
80
- - Update your React version to 18.0.0 or higher before upgrading these packages
81
- - If using React 16 or 17, upgrade to React 18 or 19 first
82
-
83
- Closes https://github.com/equinor/fusion-framework/issues/3504
84
-
85
- ### Minor Changes
86
-
87
- - abffa53: Update EDS (Equinor Design System) packages to latest versions: `@equinor/eds-core-react` to ^2.2.0, `@equinor/eds-icons` to ^1.1.0, `@equinor/eds-tokens` to ^2.1.1, and `@equinor/eds-utils` to ^2.0.0.
88
-
89
- These are major version updates from the 0.x series. Consumers should verify compatibility with their applications, particularly if using `@equinor/fusion-react-side-sheet` which may require updates to support the new EDS versions.
90
-
91
- ### Patch Changes
92
-
93
- - Updated dependencies [abffa53]
94
- - Updated dependencies [abffa53]
95
- - Updated dependencies [abffa53]
96
- - Updated dependencies [abffa53]
97
- - @equinor/fusion-framework-react@8.0.0
98
- - @equinor/fusion-framework-react-module-bookmark@6.0.0
99
- - @equinor/fusion-observable@9.0.0
100
-
101
- ## 1.1.3
102
-
103
- ### Patch Changes
104
-
105
- - [#4157](https://github.com/equinor/fusion-framework/pull/4157) [`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581) Thanks [@Noggling](https://github.com/Noggling)! - Internal: patch release to align TypeScript types across packages for consistent type compatibility.
106
-
107
- - Updated dependencies [[`6aa8e1f`](https://github.com/equinor/fusion-framework/commit/6aa8e1f5c9d852b25e97aa7d98a63008c64d4581)]:
108
- - @equinor/fusion-framework-react@7.4.20
109
- - @equinor/fusion-framework-react-module-bookmark@5.0.2
110
- - @equinor/fusion-observable@8.5.8
111
-
112
- ## 1.1.2
113
-
114
- ### Patch Changes
115
-
116
- - [#3714](https://github.com/equinor/fusion-framework/pull/3714) [`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8) Thanks [@odinr](https://github.com/odinr)! - Fix MSAL v4 compatibility in bookmark SharedIcon component.
117
- - Replace deprecated defaultAccount with account property
118
- - Ensure proper account information access for bookmark sharing logic
119
-
120
- This change ensures the bookmark component works correctly with MSAL v4 while maintaining backward compatibility.
121
-
122
- - Updated dependencies [[`11fe961`](https://github.com/equinor/fusion-framework/commit/11fe961794e4960ccb987bc320268cc9b263f1f8)]:
123
- - @equinor/fusion-framework-react@7.4.19
124
-
125
- ## 1.1.1
126
-
127
- ### Patch Changes
128
-
129
- - [#3515](https://github.com/equinor/fusion-framework/pull/3515) [`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275) Thanks [@odinr](https://github.com/odinr)! - ## Global Biome Configuration Modernization
130
-
131
- **Workspace-wide changes:**
132
- - Remove 19 rule overrides from `biome.json` to use Biome's strict "error" defaults
133
- - Enable `correctness/useUniqueElementIds` accessibility rule globally
134
- - Reduce configuration size by 40% (60+ → ~35 lines)
135
- - Eliminate all custom linting rule customizations
136
-
137
- **Package-specific changes:**
138
- - Replace static IDs with React `useId()` hooks in bookmark and dev-portal components
139
- - Fix `suspicious/noAssignInExpressions` violations in context, legacy-interopt, and observable packages
140
- - Update 11 React components for accessibility compliance
141
-
142
- **Impact:** All packages now use consistent, strict code quality enforcement with zero custom rule overrides.
143
-
144
- resolves: [#3494](https://github.com/equinor/fusion-framework/issues/3494)
145
- resolves: [#3495](https://github.com/equinor/fusion-framework/issues/3495)
146
-
147
- - Updated dependencies [[`6cb288b`](https://github.com/equinor/fusion-framework/commit/6cb288b9e1ec4fae68ae6899735c176837bb4275)]:
148
- - @equinor/fusion-observable@8.5.5
149
-
150
- ## 1.1.0
151
-
152
- ### Minor Changes
153
-
154
- - [#3363](https://github.com/equinor/fusion-framework/pull/3363) [`adb5176`](https://github.com/equinor/fusion-framework/commit/adb5176d2e4d14fb4c055ecd43d4c21c751a9a1d) Thanks [@dependabot](https://github.com/apps/dependabot)! - Updated @equinor/eds-utils from 0.8.5 to 0.9.0
155
-
156
- ### Changes
157
- - Updated @equinor/eds-utils dependency to latest version
158
- - Added Firefox detection utility support
159
-
160
- ### Links
161
- - [GitHub releases](https://github.com/equinor/design-system/releases)
162
- - [Changelog](https://github.com/equinor/design-system/blob/develop/packages/eds-utils/CHANGELOG.md)
163
-
164
- ### Patch Changes
165
-
166
- - [#3400](https://github.com/equinor/fusion-framework/pull/3400) [`aed6c53`](https://github.com/equinor/fusion-framework/commit/aed6c5385df496a86d06dc0af9dacafc255ea605) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/eds-core-react from 0.45.1 to 0.49.0
167
-
168
- ### New Features
169
- - ✨ Always show "add new option" in Autocomplete when onAddNewOption is provided
170
- - ✨ Tabs call onChange with provided value if present
171
- - ✨ Add disabled prop to Tooltip
172
- - ✨ Autocomplete allow option-label prop to be used without type of object
173
- - ✨ Add support for adding new options in Autocomplete
174
-
175
- ### Bug Fixes
176
- - 🐛 Autocomplete - Don't call onOptionsChange when clicking "Add new"
177
- - 🐛 Table - Fix Firefox table header wrapping issue
178
- - 🐛 Tabs documentation type mismatch - update onChange parameter from number to number | string
179
- - 🐛 DatePicker Disable back button in year range based on year, not month
180
- - 🐛 Tabs now allow 'null' value as child element 'Tabs.List' and 'Tabs.Panel'
181
- - 🐛 Autocomplete prevent onAddNewOption from being called twice in Strict Mode
182
- - 🐛 Table export table row with pascal case
183
- - 🐛 Autocomplete: Improvements to placeholder text
184
- - 🐛 Menu: Ensure onClose is called when a MenuItem without onClick is clicked
185
-
186
- ### Links
187
- - [GitHub releases](https://github.com/equinor/design-system/releases/tag/eds-core-react%400.49.0)
188
- - [npm changelog](https://www.npmjs.com/package/@equinor/eds-core-react?activeTab=versions)
189
-
190
- - [#3366](https://github.com/equinor/fusion-framework/pull/3366) [`daa362e`](https://github.com/equinor/fusion-framework/commit/daa362e7d92ad362e46d666c434d0f09687abad5) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update @equinor/eds-core-react from 0.48.0 to 0.49.0
191
-
192
- ### Changes
193
- - Updated @equinor/eds-core-react dependency to latest version across all packages
194
- - Fixed peerDependencies version mismatch in bookmark package
195
- - Includes bug fixes for Autocomplete and Table components
196
- - Adds new Autocomplete features for "add new option" functionality
197
-
198
- ### Affected Packages
199
- - packages/dev-portal
200
- - packages/react/components/bookmark
201
- - cookbooks/app-react-feature-flag
202
- - cookbooks/app-react-people
203
-
204
- ### Links
205
- - [GitHub releases](https://github.com/equinor/design-system/releases)
206
- - [Full Changelog](https://github.com/equinor/design-system/compare/eds-core-react@0.48.0...eds-core-react@0.49.0)
207
-
208
- - Updated dependencies [[`29f6710`](https://github.com/equinor/fusion-framework/commit/29f6710238baf9b29f42394b30cb8b97f25462c3), [`7bb88c6`](https://github.com/equinor/fusion-framework/commit/7bb88c6247f3d93eccf363d610116c519f1ecff4), [`11143fa`](https://github.com/equinor/fusion-framework/commit/11143fa3002fb8a6c095052a04c7e596c56bafa8)]:
209
- - @equinor/fusion-observable@8.5.3
210
-
211
- ## 1.0.31
212
-
213
- ### Patch Changes
214
-
215
- - [#3298](https://github.com/equinor/fusion-framework/pull/3298) [`6480bf1`](https://github.com/equinor/fusion-framework/commit/6480bf197db9428fed80299c235f0608db0ca6a3) Thanks [@dependabot](https://github.com/apps/dependabot)! - bump @equinor/eds-core-react from 0.43.0 to 0.48.0
216
-
217
- ## 1.0.30
218
-
219
- ### Patch Changes
220
-
221
- - Updated dependencies [[`8fffbfb`](https://github.com/equinor/fusion-framework/commit/8fffbfb12daa9748bf5290e5084cd4d409aed253)]:
222
- - @equinor/fusion-framework-react-module-bookmark@5.0.0
223
- - @equinor/fusion-framework-react@7.4.17
224
-
225
- ## 1.0.29
226
-
227
- ### Patch Changes
228
-
229
- - Updated dependencies []:
230
- - @equinor/fusion-framework-react@7.4.16
231
- - @equinor/fusion-framework-react-module-bookmark@4.0.12
232
-
233
- ## 1.0.28
234
-
235
- ### Patch Changes
236
-
237
- - Updated dependencies []:
238
- - @equinor/fusion-framework-react-module-bookmark@4.0.11
239
-
240
- ## 1.0.27
241
-
242
- ### Patch Changes
243
-
244
- - Updated dependencies [[`a506490`](https://github.com/equinor/fusion-framework/commit/a5064902f84d59eec7f64df13057918fcff1aad1)]:
245
- - @equinor/fusion-framework-react-module-bookmark@4.0.10
246
-
247
- ## 1.0.26
248
-
249
- ### Patch Changes
250
-
251
- - Updated dependencies []:
252
- - @equinor/fusion-framework-react-module-bookmark@4.0.9
253
-
254
- ## 1.0.25
255
-
256
- ### Patch Changes
257
-
258
- - Updated dependencies []:
259
- - @equinor/fusion-framework-react-module-bookmark@4.0.8
260
-
261
- ## 1.0.24
262
-
263
- ### Patch Changes
264
-
265
- - Updated dependencies [[`7441b13`](https://github.com/equinor/fusion-framework/commit/7441b13aa50dd7362d1629086a27b6b4e571575d)]:
266
- - @equinor/fusion-framework-react-module-bookmark@4.0.7
267
- - @equinor/fusion-framework-react@7.4.15
268
-
269
- ## 1.0.23
270
-
271
- ### Patch Changes
272
-
273
- - Updated dependencies [[`0d22e3c`](https://github.com/equinor/fusion-framework/commit/0d22e3c486ab11c40f14fb1f11f0b718e7bf1593)]:
274
- - @equinor/fusion-observable@8.5.1
275
- - @equinor/fusion-framework-react@7.4.14
276
- - @equinor/fusion-framework-react-module-bookmark@4.0.6
277
-
278
- ## 1.0.22
279
-
280
- ### Patch Changes
281
-
282
- - Updated dependencies [[`08c3a15`](https://github.com/equinor/fusion-framework/commit/08c3a150a3b6fa2297bc714e91debbb1011009f2)]:
283
- - @equinor/fusion-framework-react-module-bookmark@4.0.5
284
-
285
- ## 1.0.21
286
-
287
- ### Patch Changes
288
-
289
- - [#3097](https://github.com/equinor/fusion-framework/pull/3097) [`a2551fe`](https://github.com/equinor/fusion-framework/commit/a2551fe0267b4098c711b902ac4f53b91dff06df) Thanks [@Noggling](https://github.com/Noggling)! - Added the ability to copy bookmarks to the clipboard in the bookmark component when bookmark is shared with the user. This allows users to easily share bookmarks with others by copying the bookmark link to their clipboard.
290
-
291
- - Updated dependencies [[`d247ec7`](https://github.com/equinor/fusion-framework/commit/d247ec7482a4d5231657875f6c6733ce37df07c9), [`89f80e4`](https://github.com/equinor/fusion-framework/commit/89f80e41dac04e71518c7314cada86ecc835708d)]:
292
- - @equinor/fusion-observable@8.5.0
293
- - @equinor/fusion-framework-react@7.4.13
294
- - @equinor/fusion-framework-react-module-bookmark@4.0.4
295
-
296
- ## 1.0.20
297
-
298
- ### Patch Changes
299
-
300
- - Updated dependencies []:
301
- - @equinor/fusion-framework-react@7.4.12
302
- - @equinor/fusion-framework-react-module-bookmark@4.0.3
303
-
304
- ## 1.0.19
305
-
306
- ### Patch Changes
307
-
308
- - Updated dependencies [[`96bb1fb`](https://github.com/equinor/fusion-framework/commit/96bb1fb744d8dc2410e99fea6ca948d2d5489428)]:
309
- - @equinor/fusion-observable@8.4.9
310
- - @equinor/fusion-framework-react-module-bookmark@4.0.2
311
- - @equinor/fusion-framework-react@7.4.11
312
-
313
- ## 1.0.18
314
-
315
- ### Patch Changes
316
-
317
- - Updated dependencies [[`c6af3a3`](https://github.com/equinor/fusion-framework/commit/c6af3a3c926fb245e9d056b506d47b8bf4f1efde)]:
318
- - @equinor/fusion-framework-react-module-bookmark@4.0.1
319
- - @equinor/fusion-observable@8.4.8
320
- - @equinor/fusion-framework-react@7.4.10
321
-
322
- ## 1.0.17
323
-
324
- ### Patch Changes
325
-
326
- - Updated dependencies []:
327
- - @equinor/fusion-framework-react@7.4.9
328
- - @equinor/fusion-framework-react-module-bookmark@4.0.0
329
-
330
- ## 1.0.16
331
-
332
- ### Patch Changes
333
-
334
- - Updated dependencies [[`f53b60b`](https://github.com/equinor/fusion-framework/commit/f53b60b7805706ce7617e614f0ac0c24317a2e43)]:
335
- - @equinor/fusion-framework-react-module-bookmark@3.0.8
336
- - @equinor/fusion-observable@8.4.7
337
- - @equinor/fusion-framework-react@7.4.8
338
-
339
- ## 1.0.15
340
-
341
- ### Patch Changes
342
-
343
- - Updated dependencies []:
344
- - @equinor/fusion-framework-react@7.4.7
345
- - @equinor/fusion-framework-react-module-bookmark@3.0.7
346
-
347
- ## 1.0.14
348
-
349
- ### Patch Changes
350
-
351
- - [#2969](https://github.com/equinor/fusion-framework/pull/2969) [`cf67e87`](https://github.com/equinor/fusion-framework/commit/cf67e87c0bf83230fa77ff7a66254cd615675c34) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore: bump @equinor/eds-core-react from 0.43.0 to 0.45.0
352
-
353
- - Updated dependencies []:
354
- - @equinor/fusion-framework-react-module-bookmark@3.0.6
355
- - @equinor/fusion-framework-react@7.4.6
356
-
357
- ## 1.0.13
358
-
359
- ### Patch Changes
360
-
361
- - Updated dependencies [[`5139102`](https://github.com/equinor/fusion-framework/commit/5139102838c30f73f3fcbc81fb6e78814f86445c)]:
362
- - @equinor/fusion-framework-react@7.4.5
363
- - @equinor/fusion-framework-react-module-bookmark@3.0.5
364
-
365
- ## 1.0.12
366
-
367
- ### Patch Changes
368
-
369
- - Updated dependencies []:
370
- - @equinor/fusion-framework-react@7.4.4
371
- - @equinor/fusion-framework-react-module-bookmark@3.0.4
372
-
373
- ## 1.0.11
374
-
375
- ### Patch Changes
376
-
377
- - [#2885](https://github.com/equinor/fusion-framework/pull/2885) [`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237) Thanks [@dependabot](https://github.com/apps/dependabot)! - Update he `Typescript` version `^5.7.3` to `^5.8.2`
378
-
379
- - Updated dependencies [[`abb3560`](https://github.com/equinor/fusion-framework/commit/abb3560a22ad8830df19904272035458433f4237), [`8c6c598`](https://github.com/equinor/fusion-framework/commit/8c6c598fce973f9c24426d5e108cc3301d2da139), [`d20db24`](https://github.com/equinor/fusion-framework/commit/d20db24c73690e90a5860fe5160909c77efa41cb), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424), [`e695290`](https://github.com/equinor/fusion-framework/commit/e69529086e90b1d0d8aaf6d4b1de0e1167ce9424)]:
380
- - @equinor/fusion-framework-react-module-bookmark@3.0.3
381
- - @equinor/fusion-observable@8.4.6
382
- - @equinor/fusion-framework-react@7.4.3
383
-
384
- ## 1.0.10
385
-
386
- ### Patch Changes
387
-
388
- - Updated dependencies []:
389
- - @equinor/fusion-framework-react@7.4.2
390
- - @equinor/fusion-framework-react-module-bookmark@3.0.2
391
-
392
- ## 1.0.9
393
-
394
- ### Patch Changes
395
-
396
- - [#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.
397
-
398
- - Updated dependencies [[`811f1a0`](https://github.com/equinor/fusion-framework/commit/811f1a0139ff4d1b0c3fba1ec2b77cc84ba080d1), [`dcd2fb1`](https://github.com/equinor/fusion-framework/commit/dcd2fb1394e175d0cc2a4289ed3ede8e0271d67d)]:
399
- - @equinor/fusion-observable@8.4.5
400
- - @equinor/fusion-framework-react-module-bookmark@3.0.1
401
- - @equinor/fusion-framework-react@7.4.1
402
-
403
- ## 1.0.8
404
-
405
- ### Patch Changes
406
-
407
- - [#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
408
-
409
- - Updated dependencies [[`ea4b522`](https://github.com/equinor/fusion-framework/commit/ea4b5221b30719289fc947b5dbb0acd3ea52ffaa)]:
410
- - @equinor/fusion-framework-react@7.4.0
411
- - @equinor/fusion-framework-react-module-bookmark@3.0.0
412
-
413
- ## 1.0.7
414
-
415
- ### Patch Changes
416
-
417
- - Updated dependencies []:
418
- - @equinor/fusion-framework-react@7.3.8
419
- - @equinor/fusion-framework-react-module-bookmark@2.3.2
420
-
421
- ## 1.0.6
422
-
423
- ### Patch Changes
424
-
425
- - Updated dependencies []:
426
- - @equinor/fusion-framework-react@7.3.7
427
- - @equinor/fusion-framework-react-module-bookmark@2.3.1
428
-
429
- ## 1.0.5
430
-
431
- ### Patch Changes
432
-
433
- - [#2691](https://github.com/equinor/fusion-framework/pull/2691) [`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb) Thanks [@odinr](https://github.com/odinr)! - Minor adjustment to bookmark component
434
-
435
- - [#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
436
-
437
- - Updated dependencies [[`6ead547`](https://github.com/equinor/fusion-framework/commit/6ead547b869cd8a431876e4316c18cb98094a6fb)]:
438
- - @equinor/fusion-framework-react-module-bookmark@2.3.0
439
- - @equinor/fusion-framework-react@7.3.6
440
-
441
- ## 1.0.4
442
-
443
- ### Patch Changes
444
-
445
- - [#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
446
-
447
- - Updated dependencies []:
448
- - @equinor/fusion-framework-react@7.3.5
449
- - @equinor/fusion-framework-react-module-bookmark@2.2.4
450
-
451
- ## 1.0.3
452
-
453
- ### Patch Changes
454
-
455
- - Updated dependencies []:
456
- - @equinor/fusion-framework-react@7.3.4
457
- - @equinor/fusion-framework-react-module-bookmark@2.2.3
458
-
459
- ## 1.0.2
460
-
461
- ### Patch Changes
462
-
463
- - Updated dependencies []:
464
- - @equinor/fusion-framework-react@7.3.3
465
- - @equinor/fusion-framework-react-module-bookmark@2.2.2
466
-
467
- ## 1.0.1
468
-
469
- ### Patch Changes
470
-
471
- - Updated dependencies [[`7e67ae1`](https://github.com/equinor/fusion-framework/commit/7e67ae127a3a5256df925ae6bd472aa32b8d9292)]:
472
- - @equinor/fusion-framework-react-module-bookmark@2.2.1
473
-
474
- ## 1.0.0
475
-
476
- ### Major Changes
477
-
478
- - [#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:**
479
-
480
- Updated the `Bookmark` component to use the `useBookmarkComponentContext` hook for accessing the bookmark provider and state.
481
- - Replaced the `useBookmark` hook with `useBookmarkComponentContext` in the `Bookmark` component.
482
- - Updated the `BookmarkProvider` component to use `createContext` and `useContext` for managing the bookmark provider state.
483
- - Modified the `CreateBookmarkModal` and `EditBookmarkModal` components to use the `useBookmarkComponentContext` hook.
484
- - Enhanced the `BookmarkProvider` component to include the current application context.
485
- - Improved error handling and loading state management in the `Bookmark` component.
486
-
487
- ### Patch Changes
488
-
489
- - Updated dependencies [[`9d1cb90`](https://github.com/equinor/fusion-framework/commit/9d1cb9003fa10e7ccaa95c20ef86f0a618034641)]:
490
- - @equinor/fusion-framework-react-module-bookmark@2.2.0
491
- - @equinor/fusion-framework-react@7.3.2
492
-
493
- ## 0.5.3
494
-
495
- ### Patch Changes
496
-
497
- - Updated dependencies []:
498
- - @equinor/fusion-framework-react@7.3.1
499
- - @equinor/fusion-framework-react-module-bookmark@2.1.19
500
-
501
- ## 0.5.2
502
-
503
- ### Patch Changes
504
-
505
- - [#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.
506
-
507
- > [!WARNING]
508
- > This will introduce breaking changes to the configuration of `AppConfigurator.client`.
509
-
510
- **Added**
511
- - Introduced `AppClient` class to handle application manifest and configuration queries.
512
- - Added `zod` to validate the application manifest.
513
-
514
- **Changed**
515
- - Updated `AppModuleProvider` to use `AppClient` for fetching application manifests and configurations.
516
- - Modified `AppConfigurator` to utilize `AppClient` for client configuration.
517
- - Updated `useApps` hook with new input parameter for `filterByCurrentUser` in `fusion-framework-react`.
518
-
519
- **Migration**
520
-
521
- before:
522
-
523
- ```ts
524
- configurator.setClient({
525
- getAppManifest: {
526
- client: {
527
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}`),
528
- },
529
- key: ({ appKey }) => appKey,
530
- },
531
- getAppManifests: {
532
- client: {
533
- fn: () => httpClient.json$<ApiApp[]>(`/apps`),
534
- },
535
- key: () => `all-apps`,
536
- },
537
- getAppConfig: {
538
- client: {
539
- fn: ({ appKey }) => httpClient.json$<ApiApp>(`/apps/${appKey}/config`),
540
- },
541
- key: ({ appKey }) => appKey,
542
- },
543
- });
544
- ```
545
-
546
- after:
547
-
548
- ```ts
549
- import { AppClient } from `@equinor/fusion-framework-module-app`;
550
- configurator.setClient(new AppClient());
551
- ```
552
-
553
- custom client implementation:
554
-
555
- ```ts
556
- import { AppClient } from `@equinor/fusion-framework-module-app`;
557
- class CustomAppClient implements IAppClient { ... }
558
- configurator.setClient(new CustomAppClient());
559
- ```
560
-
561
- - Updated dependencies [[`e11ad64`](https://github.com/equinor/fusion-framework/commit/e11ad64a42210443bdfd9ab9eb2fb95e7e345251)]:
562
- - @equinor/fusion-framework-react@7.3.0
563
- - @equinor/fusion-framework-react-module-bookmark@2.1.18
564
-
565
- ## 0.5.1
566
-
567
- ### Patch Changes
568
-
569
- - Updated dependencies []:
570
- - @equinor/fusion-framework-react@7.2.3
571
- - @equinor/fusion-framework-react-module-bookmark@2.1.17
572
-
573
- ## 0.5.0
574
-
575
- ### Minor Changes
576
-
577
- - [#2465](https://github.com/equinor/fusion-framework/pull/2465) [`eb11a19`](https://github.com/equinor/fusion-framework/commit/eb11a1952cfa5a1ec8ca40d8f53303ff7c675cbe) Thanks [@dependabot](https://github.com/apps/dependabot)! - updated @equinor/eds-core-react to 0.42.0
578
-
579
- ### Patch Changes
580
-
581
- - Updated dependencies []:
582
- - @equinor/fusion-framework-react@7.2.2
583
- - @equinor/fusion-framework-react-module-bookmark@2.1.16
584
-
585
- ## 0.4.15
586
-
587
- ### Patch Changes
588
-
589
- - Updated dependencies []:
590
- - @equinor/fusion-framework-react-module-bookmark@2.1.15
591
- - @equinor/fusion-framework-react@7.2.1
592
-
593
- ## 0.4.14
594
-
595
- ### Patch Changes
596
-
597
- - [#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
598
-
599
- [see EDS changelog](https://github.com/equinor/design-system/blob/develop/packages/eds-core-react/CHANGELOG.md)
600
-
601
- - Updated dependencies [[`843edd9`](https://github.com/equinor/fusion-framework/commit/843edd96f2a01ebd814766105902977cdc1cdf8e)]:
602
- - @equinor/fusion-framework-react@7.2.0
603
- - @equinor/fusion-framework-react-module-bookmark@2.1.14
604
-
605
- ## 0.4.13
606
-
607
- ### Patch Changes
608
-
609
- - [#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
610
-
611
- - Updated dependencies []:
612
- - @equinor/fusion-framework-react@7.1.4
613
- - @equinor/fusion-framework-react-module-bookmark@2.1.13
614
-
615
- ## 0.4.12
616
-
617
- ### Patch Changes
618
-
619
- - Updated dependencies []:
620
- - @equinor/fusion-framework-react@7.1.3
621
- - @equinor/fusion-framework-react-module-bookmark@2.1.12
622
-
623
- ## 0.4.11
624
-
625
- ### Patch Changes
626
-
627
- - [#2333](https://github.com/equinor/fusion-framework/pull/2333) [`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1) Thanks [@odinr](https://github.com/odinr)! - Updated `TypeScript` to 5.5.3
628
-
629
- - [#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.
630
-
631
- Removing the `removeComments` option allows TypeScript to preserve comments in the compiled JavaScript output. This can be beneficial for several reasons:
632
- 1. Improved debugging: Preserved comments can help developers understand the code better during debugging sessions.
633
- 2. Documentation: JSDoc comments and other important code documentation will be retained in the compiled output.
634
- 3. Source map accuracy: Keeping comments can lead to more accurate source maps, which is crucial for debugging and error tracking.
635
-
636
- 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.
637
-
638
- Before:
639
-
640
- ```json
641
- {
642
- "compilerOptions": {
643
- "module": "ES2022",
644
- "target": "ES6",
645
- "incremental": true,
646
- "removeComments": true,
647
- "preserveConstEnums": true,
648
- "sourceMap": true,
649
- "moduleResolution": "node"
650
- }
651
- }
652
- ```
653
-
654
- After:
655
-
656
- ```json
657
- {
658
- "compilerOptions": {
659
- "module": "ES2022",
660
- "target": "ES6",
661
- "incremental": true,
662
- "preserveConstEnums": true,
663
- "sourceMap": true,
664
- "moduleResolution": "node"
665
- }
666
- }
667
- ```
668
-
669
- This change ensures that comments are preserved in the compiled output, potentially improving the development and debugging experience for users of the Fusion Framework.
670
-
671
- - Updated dependencies [[`86d55b8`](https://github.com/equinor/fusion-framework/commit/86d55b8d27a572f3f62170b1e72aceda54f955e1), [`1dd85f3`](https://github.com/equinor/fusion-framework/commit/1dd85f3a408a73df556d1812a5f280945cc100ee)]:
672
- - @equinor/fusion-framework-react-module-bookmark@2.1.11
673
- - @equinor/fusion-framework-react@7.1.2
674
-
675
- ## 0.4.10
676
-
677
- ### Patch Changes
678
-
679
- - Updated dependencies []:
680
- - @equinor/fusion-framework-react@7.1.1
681
- - @equinor/fusion-framework-react-module-bookmark@2.1.10
682
-
683
- ## 0.4.9
684
-
685
- ### Patch Changes
686
-
687
- - [#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`
688
- Updated `@equinor/eds-utils` dependency to version `^0.8.5`
689
- - Updated dependencies [[`ba2379b`](https://github.com/equinor/fusion-framework/commit/ba2379b177f23ccc023894e36e50d7fc56c929c8)]:
690
- - @equinor/fusion-framework-react@7.1.0
691
- - @equinor/fusion-framework-react-module-bookmark@2.1.9
692
-
693
- ## 0.4.8
694
-
695
- ### Patch Changes
696
-
697
- - Updated dependencies []:
698
- - @equinor/fusion-framework-react@7.0.8
699
- - @equinor/fusion-framework-react-module-bookmark@2.1.8
700
-
701
- ## 0.4.7
702
-
703
- ### Patch Changes
704
-
705
- - Updated dependencies []:
706
- - @equinor/fusion-framework-react-module-bookmark@2.1.7
707
- - @equinor/fusion-framework-react@7.0.7
708
-
709
- ## 0.4.6
710
-
711
- ### Patch Changes
712
-
713
- - Updated dependencies []:
714
- - @equinor/fusion-framework-react-module-bookmark@2.1.6
715
- - @equinor/fusion-framework-react@7.0.6
716
-
717
- ## 0.4.5
718
-
719
- ### Patch Changes
720
-
721
- - [#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
722
-
723
- - Updated dependencies []:
724
- - @equinor/fusion-framework-react-module-bookmark@2.1.5
725
- - @equinor/fusion-framework-react@7.0.5
726
-
727
- ## 0.4.4
728
-
729
- ### Patch Changes
730
-
731
- - Updated dependencies []:
732
- - @equinor/fusion-framework-react@7.0.4
733
- - @equinor/fusion-framework-react-module-bookmark@2.1.4
734
-
735
- ## 0.4.3
736
-
737
- ### Patch Changes
738
-
739
- - Updated dependencies []:
740
- - @equinor/fusion-framework-react@7.0.3
741
- - @equinor/fusion-framework-react-module-bookmark@2.1.3
742
-
743
- ## 0.4.2
744
-
745
- ### Patch Changes
746
-
747
- - Updated dependencies []:
748
- - @equinor/fusion-framework-react@7.0.2
749
- - @equinor/fusion-framework-react-module-bookmark@2.1.2
750
-
751
- ## 0.4.1
752
-
753
- ### Patch Changes
754
-
755
- - [#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.
756
-
757
- - Updated dependencies [[`3d068b5`](https://github.com/equinor/fusion-framework/commit/3d068b5a7b214b62fcae5546f08830ea90f872dc)]:
758
- - @equinor/fusion-framework-react@7.0.1
759
- - @equinor/fusion-framework-react-module-bookmark@2.1.1
760
-
761
- ## 0.4.0
762
-
763
- ### Minor Changes
764
-
765
- - [#1953](https://github.com/equinor/fusion-framework/pull/1953) [`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904) Thanks [@odinr](https://github.com/odinr)! - updated typescript to 5.4.2
766
-
767
- ### Patch Changes
768
-
769
- - Updated dependencies [[`f3ae28d`](https://github.com/equinor/fusion-framework/commit/f3ae28dc6d1d5043605e07e2cd2e83ae799cd904)]:
770
- - @equinor/fusion-framework-react-module-bookmark@2.1.0
771
- - @equinor/fusion-framework-react@7.0.0
772
-
773
- ## 0.3.11
774
-
775
- ### Patch Changes
776
-
777
- - Updated dependencies []:
778
- - @equinor/fusion-framework-react-module-bookmark@2.0.35
779
- - @equinor/fusion-framework-react@6.0.5
780
-
781
- ## 0.3.10
782
-
783
- ### Patch Changes
784
-
785
- - Updated dependencies []:
786
- - @equinor/fusion-framework-react@6.0.4
787
- - @equinor/fusion-framework-react-module-bookmark@2.0.34
788
-
789
- ## 0.3.9
790
-
791
- ### Patch Changes
792
-
793
- - Updated dependencies []:
794
- - @equinor/fusion-framework-react@6.0.3
795
- - @equinor/fusion-framework-react-module-bookmark@2.0.33
796
-
797
- ## 0.3.8
798
-
799
- ### Patch Changes
800
-
801
- - [#1823](https://github.com/equinor/fusion-framework/pull/1823) [`9733563`](https://github.com/equinor/fusion-framework/commit/9733563ad072a6c21d61952d6d71978b88612ac5) Thanks [@dependabot](https://github.com/apps/dependabot)! - chore(deps): bump @equinor/eds-core-react from 0.35.1 to 0.36.0
802
-
803
- ## 0.3.7
804
-
805
- ### Patch Changes
806
-
807
- - Updated dependencies [[`2a813bc`](https://github.com/equinor/fusion-framework/commit/2a813bc0a32f53e7515f16f8b5cba1cf1e5018a3)]:
808
- - @equinor/fusion-framework-react@6.0.2
809
- - @equinor/fusion-framework-react-module-bookmark@2.0.32
810
-
811
- ## 0.3.6
812
-
813
- ### Patch Changes
814
-
815
- - Updated dependencies [[`fdbe12f`](https://github.com/equinor/fusion-framework/commit/fdbe12f258aeb98d91094f16f2d8ce229d7b13ee)]:
816
- - @equinor/fusion-framework-react@6.0.1
817
- - @equinor/fusion-framework-react-module-bookmark@2.0.31
818
-
819
- ## 0.3.5
820
-
821
- ### Patch Changes
822
-
823
- - [#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.
824
-
825
- - Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
826
- - @equinor/fusion-framework-react@6.0.0
827
- - @equinor/fusion-framework-react-module-bookmark@2.0.30
828
-
829
- ## 0.3.4
830
-
831
- ### Patch Changes
832
-
833
- - Updated dependencies []:
834
- - @equinor/fusion-framework-react-module-bookmark@2.0.29
835
-
836
- ## 0.3.3
837
-
838
- ### Patch Changes
839
-
840
- - Updated dependencies []:
841
- - @equinor/fusion-framework-react@5.3.9
842
- - @equinor/fusion-framework-react-module-bookmark@2.0.28
843
-
844
- ## 0.3.2
845
-
846
- ### Patch Changes
847
-
848
- - Updated dependencies []:
849
- - @equinor/fusion-framework-react@5.3.8
850
- - @equinor/fusion-framework-react-module-bookmark@2.0.27
851
-
852
- ## 0.3.1
853
-
854
- ### Patch Changes
855
-
856
- - Updated dependencies []:
857
- - @equinor/fusion-framework-react@5.3.7
858
- - @equinor/fusion-framework-react-module-bookmark@2.0.26
859
-
860
- ## 0.3.0
861
-
862
- ### Minor Changes
863
-
864
- - [#1615](https://github.com/equinor/fusion-framework/pull/1615) [`750a7f5`](https://github.com/equinor/fusion-framework/commit/750a7f5f96104e33d4a436ff858044516e269c68) Thanks [@Noggling](https://github.com/Noggling)! - Implement a "No Content" message and relocate the "Loading" indicator to the bookmarks component. Additionally, incorporate an effect to handle cases where the "onBookmarksChanged" event is not triggered.
865
-
866
- ### Patch Changes
867
-
868
- - Updated dependencies []:
869
- - @equinor/fusion-framework-react@5.3.6
870
- - @equinor/fusion-framework-react-module-bookmark@2.0.25
871
-
872
- ## 0.2.14
873
-
874
- ### Patch Changes
875
-
876
- - Updated dependencies []:
877
- - @equinor/fusion-framework-react@5.3.5
878
- - @equinor/fusion-framework-react-module-bookmark@2.0.24
879
-
880
- ## 0.2.13
881
-
882
- ### Patch Changes
883
-
884
- - Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
885
- - @equinor/fusion-framework-react-module-bookmark@2.0.23
886
- - @equinor/fusion-framework-react@5.3.4
887
-
888
- ## 0.2.12
889
-
890
- ### Patch Changes
891
-
892
- - Updated dependencies []:
893
- - @equinor/fusion-framework-react-module-bookmark@2.0.22
894
-
895
- ## 0.2.11
896
-
897
- ### Patch Changes
898
-
899
- - Updated dependencies []:
900
- - @equinor/fusion-framework-react-module-bookmark@2.0.21
901
- - @equinor/fusion-framework-react@5.3.3
902
-
903
- ## 0.2.10
904
-
905
- ### Patch Changes
906
-
907
- - [#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
908
- - support for [styled-components@6](https://styled-components.com/releases#v6.0.0)
909
-
910
- ## 0.2.9
911
-
912
- ### Patch Changes
913
-
914
- - Updated dependencies []:
915
- - @equinor/fusion-framework-react-module-bookmark@2.0.20
916
- - @equinor/fusion-framework-react@5.3.2
917
-
918
- ## 0.2.8
919
-
920
- ### Patch Changes
921
-
922
- - [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
923
-
924
- - Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
925
- - @equinor/fusion-framework-react@5.3.1
926
- - @equinor/fusion-framework-react-module-bookmark@2.0.19
927
-
928
- ## 0.2.7
929
-
930
- ### Patch Changes
931
-
932
- - Updated dependencies [[`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658)]:
933
- - @equinor/fusion-framework-react@5.3.0
934
- - @equinor/fusion-framework-react-module-bookmark@2.0.18
935
-
936
- ## 0.2.6
937
-
938
- ### Patch Changes
939
-
940
- - Updated dependencies []:
941
- - @equinor/fusion-framework-react@5.2.7
942
- - @equinor/fusion-framework-react-module-bookmark@2.0.17
943
-
944
- ## 0.2.5
945
-
946
- ### Patch Changes
947
-
948
- - Updated dependencies []:
949
- - @equinor/fusion-framework-react@5.2.6
950
- - @equinor/fusion-framework-react-module-bookmark@2.0.16
951
-
952
- ## 0.2.4
953
-
954
- ### Patch Changes
955
-
956
- - [`18b70b98`](https://github.com/equinor/fusion-framework/commit/18b70b98454df296a2a06fa5281ae9b6556d9a67) Thanks [@odinr](https://github.com/odinr)! - test 3
957
-
958
- ## 0.2.3
959
-
960
- ### Patch Changes
961
-
962
- - [`c9b5f360`](https://github.com/equinor/fusion-framework/commit/c9b5f3605ff6ffe355eec9b709a5a6c5784355e5) Thanks [@odinr](https://github.com/odinr)! - test 2
963
-
964
- ## 0.2.2
965
-
966
- ### Patch Changes
967
-
968
- - [`f7db2499`](https://github.com/equinor/fusion-framework/commit/f7db249937212f876beb87d2941036f7e5f793d4) Thanks [@odinr](https://github.com/odinr)! - test release
969
-
970
- ## 0.2.1
971
-
972
- ### Patch Changes
973
-
974
- - [`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594) Thanks [@odinr](https://github.com/odinr)! - fix typo in styled components
975
-
976
- - Updated dependencies []:
977
- - @equinor/fusion-framework-react-module-bookmark@2.0.15
978
- - @equinor/fusion-framework-react@5.2.5
979
-
980
- ## 0.2.0
981
-
982
- ### Minor Changes
983
-
984
- - [#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
985
-
986
- issues whit conflicting package when using 3x jss frameworks (mui, styled-components, emotion)
987
-
988
- _this might break jss class generation front-end, since classnames changes_
989
-
990
- ### Patch Changes
991
-
992
- - [#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
993
-
994
- conflicts of `@types/react` made random outcomes when using `yarn`
995
-
996
- this change should not affect consumer of the packages, but might conflict dependent on local package manager.
997
-
998
- - [#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
999
-
1000
- - [#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)
1001
- - 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)
1002
- - removed `@types/style-components` from `@equinor/fusion-framework-react-components-bookmark`
1003
-
1004
- see style-components [migration guide](https://styled-components.com/docs/faqs#what-do-i-need-to-do-to-migrate-to-v6)
1005
-
1006
- - 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)]:
1007
- - @equinor/fusion-framework-react-module-bookmark@2.0.14
1008
- - @equinor/fusion-framework-react@5.2.4
1009
-
1010
- ## 0.1.16
1011
-
1012
- ### Patch Changes
1013
-
1014
- - [#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
1015
-
1016
- only style semantics updated
1017
-
1018
- - Updated dependencies [[`1a2880d2`](https://github.com/equinor/fusion-framework/commit/1a2880d2e4c80ac5ce08f63ca3699fe77e4b565c), [`1749da29`](https://github.com/equinor/fusion-framework/commit/1749da290c98c0a43b9fdf2253dfb224e4ccdcd0)]:
1019
- - @equinor/fusion-framework-react@5.2.3
1020
- - @equinor/fusion-framework-react-module-bookmark@2.0.13
1021
-
1022
- ## 0.1.15
1023
-
1024
- ### Patch Changes
1025
-
1026
- - [#958](https://github.com/equinor/fusion-framework/pull/958) [`e50acbb2`](https://github.com/equinor/fusion-framework/commit/e50acbb28ef10c83cf6e7913fa9f03ed971f0957) Thanks [@odinr](https://github.com/odinr)! - _refactor: only added missing deps for stand alone compile_
1027
-
1028
- ## 0.1.14
1029
-
1030
- ### Patch Changes
1031
-
1032
- - [#946](https://github.com/equinor/fusion-framework/pull/946) [`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352) Thanks [@odinr](https://github.com/odinr)! - Build/update typescript to 5
1033
-
1034
- ## 0.1.13
1035
-
1036
- ### Patch Changes
1037
-
1038
- - [#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**
1039
- - align all versions of typescript
1040
- - update types to build
1041
- - 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
1042
-
1043
- - Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
1044
- - @equinor/fusion-framework-react-module-bookmark@2.0.12
1045
-
1046
- ## 0.1.12
1047
-
1048
- ### Patch Changes
1049
-
1050
- - 727fb935: fix(react-module-bookmark): module can be undefined
1051
-
1052
- the bookmark module might not been enable, which makes the application crash.
1053
-
1054
- **TODO:**
1055
- - [ ] create a simpler hook for using bookmark
1056
- - [ ] create a hook for exposing the module
1057
- - [ ] create better documentation
1058
-
1059
- - Updated dependencies [727fb935]
1060
- - @equinor/fusion-framework-react-module-bookmark@2.0.11
1061
-
1062
- All notable changes to this project will be documented in this file.
1063
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
1064
-
1065
- ## [0.1.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.10...@equinor/fusion-framework-react-components-bookmark@0.1.11) (2023-05-24)
1066
-
1067
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1068
-
1069
- ## [0.1.10](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.9...@equinor/fusion-framework-react-components-bookmark@0.1.10) (2023-05-23)
1070
-
1071
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1072
-
1073
- ## [0.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.8...@equinor/fusion-framework-react-components-bookmark@0.1.9) (2023-05-22)
1074
-
1075
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1076
-
1077
- ## [0.1.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.7...@equinor/fusion-framework-react-components-bookmark@0.1.8) (2023-05-22)
1078
-
1079
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1080
-
1081
- ## 0.1.7 (2023-05-22)
1082
-
1083
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1084
-
1085
- ## [0.1.6](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.5...@equinor/fusion-framework-react-components-bookmark@0.1.6) (2023-05-12)
1086
-
1087
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1088
-
1089
- ## [0.1.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.4...@equinor/fusion-framework-react-components-bookmark@0.1.5) (2023-05-11)
1090
-
1091
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1092
-
1093
- ## [0.1.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.3...@equinor/fusion-framework-react-components-bookmark@0.1.4) (2023-05-11)
1094
-
1095
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1096
-
1097
- ## 0.1.3 (2023-05-10)
1098
-
1099
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1100
-
1101
- ## [0.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.1...@equinor/fusion-framework-react-components-bookmark@0.1.2) (2023-05-08)
1102
-
1103
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1104
-
1105
- ## [0.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-components-bookmark@0.1.0...@equinor/fusion-framework-react-components-bookmark@0.1.1) (2023-05-05)
1106
-
1107
- **Note:** Version bump only for package @equinor/fusion-framework-react-components-bookmark
1108
-
1109
- ## 0.1.0 (2023-04-24)
1110
-
1111
- ### Features
1112
-
1113
- - **bookmark-component:** new bookmark component for creating and editing bookmarks initial commit ([bd3bfec](https://github.com/equinor/fusion-framework/commit/bd3bfeca877df6076ca711333d0b96a44504c888))
1114
-
1115
- ### Bug Fixes
1116
-
1117
- - **bookmark-component:** add group by context ([20291f3](https://github.com/equinor/fusion-framework/commit/20291f3cd8284ff5b0eb2db30f9e4040a870ba70))
1118
- - **bookmark-component:** removed comment ([72c7147](https://github.com/equinor/fusion-framework/commit/72c7147609b229fb68576068c0f2944e5e3bbae0))
1119
- - **bookmark-component:** styles update, added loading spinner and update with current view' ([d5e1143](https://github.com/equinor/fusion-framework/commit/d5e1143f125410beb46a462e92591e3f9bbb809d))
1120
- - **bookmark:** fix linting ([17b179f](https://github.com/equinor/fusion-framework/commit/17b179fbb25243730dd65cc116c86471074faabc))
1121
- - pull request feedback fixes ([a0d9aa6](https://github.com/equinor/fusion-framework/commit/a0d9aa69a5ffc4e6da5061df61969d860c4be909))