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