@equinor/fusion-framework-react-module-context 6.1.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +115 -108
- package/dist/esm/useCurrentContext.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,179 +1,186 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7424ad3`](https://github.com/equinor/fusion-framework/commit/7424ad37760904b7897bcafc11d85235246e1381)]:
|
|
8
|
+
- @equinor/fusion-framework-module-context@4.1.1
|
|
9
|
+
|
|
3
10
|
## 6.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
6
13
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
14
|
+
- [#1760](https://github.com/equinor/fusion-framework/pull/1760) [`6e6ee6b`](https://github.com/equinor/fusion-framework/commit/6e6ee6b7ce280820111e8b98ac8377efb15808ef) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - - Add FusionContextSearchError.
|
|
15
|
+
|
|
16
|
+
- Potential _BREAKING_:
|
|
17
|
+
- Error in `ContextProvider.ts` are now unwrapped if the thrown error is
|
|
18
|
+
`QueryClientError`.
|
|
19
|
+
|
|
20
|
+
```diff
|
|
21
|
+
index 114f430b1..2640c9a55 100644
|
|
22
|
+
--- a/packages/modules/context/src/ContextProvider.ts
|
|
23
|
+
+++ b/packages/modules/context/src/ContextProvider.ts
|
|
24
|
+
@@ -406,7 +407,15 @@ export class ContextProvider implements IContextProvider {
|
|
25
|
+
/* @ts-ignore */
|
|
26
|
+
this.#contextParameterFn({ search, type: this.#contextType }),
|
|
27
|
+
)
|
|
28
|
+
- .pipe(map((x) => x.value));
|
|
29
|
+
+ .pipe(
|
|
30
|
+
+ catchError((err) => {
|
|
31
|
+
+ if (err.name === 'QueryClientError') {
|
|
32
|
+
+ throw err.cause;
|
|
33
|
+
+ }
|
|
34
|
+
+ throw err;
|
|
35
|
+
+ }),
|
|
36
|
+
+ map((x) => x.value),
|
|
37
|
+
+ );
|
|
38
|
+
|
|
39
|
+
return this.#contextFilter ? query$.pipe(map(this.#contextFilter)) : query$;
|
|
40
|
+
}
|
|
41
|
+
```
|
|
35
42
|
|
|
36
43
|
### Patch Changes
|
|
37
44
|
|
|
38
|
-
-
|
|
39
|
-
|
|
45
|
+
- Updated dependencies [[`6e6ee6b`](https://github.com/equinor/fusion-framework/commit/6e6ee6b7ce280820111e8b98ac8377efb15808ef)]:
|
|
46
|
+
- @equinor/fusion-framework-module-context@4.1.0
|
|
40
47
|
|
|
41
48
|
## 6.0.20
|
|
42
49
|
|
|
43
50
|
### Patch Changes
|
|
44
51
|
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
|
|
52
|
+
- Updated dependencies []:
|
|
53
|
+
- @equinor/fusion-framework-module-context@4.0.21
|
|
54
|
+
- @equinor/fusion-framework-react-module@3.0.8
|
|
48
55
|
|
|
49
56
|
## 6.0.19
|
|
50
57
|
|
|
51
58
|
### Patch Changes
|
|
52
59
|
|
|
53
|
-
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
60
|
+
- Updated dependencies [[`036546f`](https://github.com/equinor/fusion-framework/commit/036546f2e3d9c0d289c7145da84e940673027b5e), [`d0c0c6a`](https://github.com/equinor/fusion-framework/commit/d0c0c6a971a478e3f447663bf50b4e3a7cb1517e)]:
|
|
61
|
+
- @equinor/fusion-observable@8.1.5
|
|
62
|
+
- @equinor/fusion-query@4.0.6
|
|
63
|
+
- @equinor/fusion-framework-module-context@4.0.20
|
|
57
64
|
|
|
58
65
|
## 6.0.18
|
|
59
66
|
|
|
60
67
|
### Patch Changes
|
|
61
68
|
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
69
|
+
- Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
|
|
70
|
+
- @equinor/fusion-observable@8.1.4
|
|
71
|
+
- @equinor/fusion-query@4.0.5
|
|
72
|
+
- @equinor/fusion-framework-module-context@4.0.19
|
|
66
73
|
|
|
67
74
|
## 6.0.17
|
|
68
75
|
|
|
69
76
|
### Patch Changes
|
|
70
77
|
|
|
71
|
-
-
|
|
78
|
+
- [#1595](https://github.com/equinor/fusion-framework/pull/1595) [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125) Thanks [@Gustav-Eikaas](https://github.com/Gustav-Eikaas)! - support for module resolution NodeNext & Bundler
|
|
72
79
|
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
80
|
+
- Updated dependencies [[`4ab2df5`](https://github.com/equinor/fusion-framework/commit/4ab2df5c83439f7fe3fe0846c005427e1793b576), [`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
81
|
+
- @equinor/fusion-framework-module-context@4.0.18
|
|
82
|
+
- @equinor/fusion-observable@8.1.3
|
|
83
|
+
- @equinor/fusion-query@4.0.4
|
|
84
|
+
- @equinor/fusion-framework-react-module@3.0.7
|
|
78
85
|
|
|
79
86
|
## 6.0.16
|
|
80
87
|
|
|
81
88
|
### Patch Changes
|
|
82
89
|
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
90
|
+
- Updated dependencies [[`446b63ce`](https://github.com/equinor/fusion-framework/commit/446b63ce44b59a3aaab4399c0d877d3a1b560a0e)]:
|
|
91
|
+
- @equinor/fusion-query@4.0.3
|
|
92
|
+
- @equinor/fusion-framework-module-context@4.0.17
|
|
86
93
|
|
|
87
94
|
## 6.0.15
|
|
88
95
|
|
|
89
96
|
### Patch Changes
|
|
90
97
|
|
|
91
|
-
-
|
|
92
|
-
|
|
93
|
-
|
|
98
|
+
- Updated dependencies [[`7ad31761`](https://github.com/equinor/fusion-framework/commit/7ad3176102f92da108b67ede6fdf29b76149bed9)]:
|
|
99
|
+
- @equinor/fusion-query@4.0.2
|
|
100
|
+
- @equinor/fusion-framework-module-context@4.0.16
|
|
94
101
|
|
|
95
102
|
## 6.0.14
|
|
96
103
|
|
|
97
104
|
### Patch Changes
|
|
98
105
|
|
|
99
|
-
-
|
|
106
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
100
107
|
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
108
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
109
|
+
- @equinor/fusion-framework-module-context@4.0.15
|
|
110
|
+
- @equinor/fusion-framework-react-module@3.0.6
|
|
111
|
+
- @equinor/fusion-observable@8.1.2
|
|
112
|
+
- @equinor/fusion-query@4.0.1
|
|
106
113
|
|
|
107
114
|
## 6.0.13
|
|
108
115
|
|
|
109
116
|
### Patch Changes
|
|
110
117
|
|
|
111
|
-
-
|
|
112
|
-
|
|
113
|
-
|
|
118
|
+
- Updated dependencies [[`ebcabd0e`](https://github.com/equinor/fusion-framework/commit/ebcabd0e6945e1420a0a9a7d82bd9255da1b8578), [`8739a5a6`](https://github.com/equinor/fusion-framework/commit/8739a5a65d8aaa46ce9ef56cce013efeeb006e8a)]:
|
|
119
|
+
- @equinor/fusion-query@4.0.0
|
|
120
|
+
- @equinor/fusion-framework-module-context@4.0.14
|
|
114
121
|
|
|
115
122
|
## 6.0.12
|
|
116
123
|
|
|
117
124
|
### Patch Changes
|
|
118
125
|
|
|
119
|
-
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
126
|
+
- Updated dependencies [[`6f64d1aa`](https://github.com/equinor/fusion-framework/commit/6f64d1aa5e44af37f0abd76cef36e87761134760), [`758eaaf4`](https://github.com/equinor/fusion-framework/commit/758eaaf436ae28d180e7d91818b41abe0d9624c4)]:
|
|
127
|
+
- @equinor/fusion-observable@8.1.1
|
|
128
|
+
- @equinor/fusion-query@3.0.7
|
|
129
|
+
- @equinor/fusion-framework-module-context@4.0.13
|
|
130
|
+
- @equinor/fusion-framework-react-module@3.0.5
|
|
124
131
|
|
|
125
132
|
## 6.0.11
|
|
126
133
|
|
|
127
134
|
### Patch Changes
|
|
128
135
|
|
|
129
|
-
-
|
|
130
|
-
|
|
131
|
-
|
|
136
|
+
- Updated dependencies [[`066d843c`](https://github.com/equinor/fusion-framework/commit/066d843c88cb974150f23f4fb9e7d0b066c93594)]:
|
|
137
|
+
- @equinor/fusion-query@3.0.6
|
|
138
|
+
- @equinor/fusion-framework-module-context@4.0.12
|
|
132
139
|
|
|
133
140
|
## 6.0.10
|
|
134
141
|
|
|
135
142
|
### Patch Changes
|
|
136
143
|
|
|
137
|
-
-
|
|
144
|
+
- [#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
|
|
138
145
|
|
|
139
|
-
|
|
146
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
140
147
|
|
|
141
|
-
|
|
148
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
142
149
|
|
|
143
|
-
-
|
|
150
|
+
- [#1125](https://github.com/equinor/fusion-framework/pull/1125) [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump react and @types/react to react 18.2
|
|
144
151
|
|
|
145
|
-
|
|
152
|
+
only dev deps updated should not affect any consumers
|
|
146
153
|
|
|
147
|
-
|
|
154
|
+
see [react changelog](https://github.com/facebook/react/releases) for details
|
|
148
155
|
|
|
149
|
-
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
156
|
+
- Updated dependencies [[`7ec195d4`](https://github.com/equinor/fusion-framework/commit/7ec195d42098fec8794db13e83b71ef7753ff862), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`2dccccd1`](https://github.com/equinor/fusion-framework/commit/2dccccd124fbe3cdde2132c29c27d3da9fc6f1f5), [`8e7ae77c`](https://github.com/equinor/fusion-framework/commit/8e7ae77cfcadddc4b59e6bb57e620b84e5e1c647), [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272)]:
|
|
157
|
+
- @equinor/fusion-framework-react-module@3.0.4
|
|
158
|
+
- @equinor/fusion-observable@8.1.0
|
|
159
|
+
- @equinor/fusion-framework-module-context@4.0.11
|
|
160
|
+
- @equinor/fusion-query@3.0.5
|
|
154
161
|
|
|
155
162
|
## 6.0.9
|
|
156
163
|
|
|
157
164
|
### Patch Changes
|
|
158
165
|
|
|
159
|
-
-
|
|
166
|
+
- [#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**
|
|
160
167
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
168
|
+
- align all versions of typescript
|
|
169
|
+
- update types to build
|
|
170
|
+
- 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
|
|
164
171
|
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
|
|
172
|
+
- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
173
|
+
- @equinor/fusion-framework-module-context@4.0.9
|
|
174
|
+
- @equinor/fusion-framework-react-module@3.0.3
|
|
168
175
|
|
|
169
176
|
## 6.0.8
|
|
170
177
|
|
|
171
178
|
### Patch Changes
|
|
172
179
|
|
|
173
|
-
-
|
|
180
|
+
- [#898](https://github.com/equinor/fusion-framework/pull/898) [`4551142e`](https://github.com/equinor/fusion-framework/commit/4551142ededdb2f1bf74eae552da26d28cd23057) Thanks [@odinr](https://github.com/odinr)! - refactor(module-react-context): expose module and configurator interface from context module
|
|
174
181
|
|
|
175
|
-
-
|
|
176
|
-
|
|
182
|
+
- Updated dependencies [[`4551142e`](https://github.com/equinor/fusion-framework/commit/4551142ededdb2f1bf74eae552da26d28cd23057)]:
|
|
183
|
+
- @equinor/fusion-framework-module-context@4.0.8
|
|
177
184
|
|
|
178
185
|
All notable changes to this project will be documented in this file.
|
|
179
186
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -210,11 +217,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
210
217
|
|
|
211
218
|
### ⚠ BREAKING CHANGES
|
|
212
219
|
|
|
213
|
-
-
|
|
220
|
+
- **module-context:** `ContextProvider.setCurrentContext` now returns an `Observable`
|
|
214
221
|
|
|
215
222
|
### Features
|
|
216
223
|
|
|
217
|
-
-
|
|
224
|
+
- **module-context:** make setting context as an observable ([21e1c6b](https://github.com/equinor/fusion-framework/commit/21e1c6b64f541ec63dd6ea830410c7bb5cbdd84a))
|
|
218
225
|
|
|
219
226
|
## 5.0.5 (2023-04-24)
|
|
220
227
|
|
|
@@ -288,12 +295,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
288
295
|
|
|
289
296
|
### ⚠ BREAKING CHANGES
|
|
290
297
|
|
|
291
|
-
-
|
|
298
|
+
- **utils/observable:** `useObservableInputState` and `useObservableSelectorState` now return full state, not only value
|
|
292
299
|
|
|
293
300
|
### Bug Fixes
|
|
294
301
|
|
|
295
|
-
-
|
|
296
|
-
-
|
|
302
|
+
- **utils/observable:** rename `next` to `value`from `useObservableState` ([4a08445](https://github.com/equinor/fusion-framework/commit/4a08445645af2488666564c2da716d32aa5e88c0))
|
|
303
|
+
- **utils/observable:** when subject in useObservableState reset state ([9c5c041](https://github.com/equinor/fusion-framework/commit/9c5c041d3d8c0b01bd507ea7f672711d9f5cb653))
|
|
297
304
|
|
|
298
305
|
## [3.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-module-context@3.0.1...@equinor/fusion-framework-react-module-context@3.0.2) (2023-02-09)
|
|
299
306
|
|
|
@@ -307,11 +314,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
307
314
|
|
|
308
315
|
### ⚠ BREAKING CHANGES
|
|
309
316
|
|
|
310
|
-
-
|
|
317
|
+
- hook has new return type
|
|
311
318
|
|
|
312
319
|
### Bug Fixes
|
|
313
320
|
|
|
314
|
-
-
|
|
321
|
+
- references to useObservableState ([614a569](https://github.com/equinor/fusion-framework/commit/614a5691f856765f07f5d71e39708f80dea49a6e))
|
|
315
322
|
|
|
316
323
|
## 2.0.1 (2023-01-30)
|
|
317
324
|
|
|
@@ -353,7 +360,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
353
360
|
|
|
354
361
|
### Bug Fixes
|
|
355
362
|
|
|
356
|
-
-
|
|
363
|
+
- :bug: context undefined on first render ([790850e](https://github.com/equinor/fusion-framework/commit/790850e8c928e4feb8537a07bd8d5d6afb268bb5))
|
|
357
364
|
|
|
358
365
|
## 1.0.16 (2022-12-16)
|
|
359
366
|
|
|
@@ -403,7 +410,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
403
410
|
|
|
404
411
|
### Bug Fixes
|
|
405
412
|
|
|
406
|
-
-
|
|
413
|
+
- **react-module-context:** memo client query fn ([ebfae82](https://github.com/equinor/fusion-framework/commit/ebfae82fcdd4879cdefee07dcc7a5612b7ac81cd))
|
|
407
414
|
|
|
408
415
|
## [1.0.4](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-module-context@1.0.3...@equinor/fusion-framework-react-module-context@1.0.4) (2022-12-06)
|
|
409
416
|
|
|
@@ -425,13 +432,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
425
432
|
|
|
426
433
|
### Features
|
|
427
434
|
|
|
428
|
-
-
|
|
435
|
+
- update exiting debounce hooks ([27e716c](https://github.com/equinor/fusion-framework/commit/27e716ca253206d532e0f02233beb6f29c10de22))
|
|
429
436
|
|
|
430
437
|
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-module-context@0.4.11...@equinor/fusion-framework-react-module-context@1.0.0-alpha.0) (2022-12-02)
|
|
431
438
|
|
|
432
439
|
### Features
|
|
433
440
|
|
|
434
|
-
-
|
|
441
|
+
- update exiting debounce hooks ([dd3eb5f](https://github.com/equinor/fusion-framework/commit/dd3eb5ff1a05edd6c25fd1ad65c0b68d50f5799a))
|
|
435
442
|
|
|
436
443
|
## [0.4.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-module-context@0.4.10...@equinor/fusion-framework-react-module-context@0.4.11) (2022-12-01)
|
|
437
444
|
|
|
@@ -481,7 +488,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
481
488
|
|
|
482
489
|
### Features
|
|
483
490
|
|
|
484
|
-
-
|
|
491
|
+
- **query:** separate query from observable ([1408609](https://github.com/equinor/fusion-framework/commit/140860976c3ee9430a30deebcc8b08da857e5772))
|
|
485
492
|
|
|
486
493
|
## 0.3.1 (2022-12-01)
|
|
487
494
|
|
|
@@ -491,12 +498,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
491
498
|
|
|
492
499
|
### Features
|
|
493
500
|
|
|
494
|
-
-
|
|
495
|
-
-
|
|
501
|
+
- **react-module-context:** allow setting context by id ([c2acbf0](https://github.com/equinor/fusion-framework/commit/c2acbf0e1cb3fb8fd54f822ee76ff153851f2da7))
|
|
502
|
+
- **react-module-context:** create hook for query context ([67826a5](https://github.com/equinor/fusion-framework/commit/67826a572d43bb36dd58869acf880f87959429d8))
|
|
496
503
|
|
|
497
504
|
### Bug Fixes
|
|
498
505
|
|
|
499
|
-
-
|
|
506
|
+
- **react-module-context:** expose enable context ([59248a5](https://github.com/equinor/fusion-framework/commit/59248a52b1406ed2331b336c02a28a482e2d419f))
|
|
500
507
|
|
|
501
508
|
## 0.2.1 (2022-11-18)
|
|
502
509
|
|
|
@@ -506,7 +513,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
506
513
|
|
|
507
514
|
### Features
|
|
508
515
|
|
|
509
|
-
-
|
|
516
|
+
- update typing of useModule hook ([958dd04](https://github.com/equinor/fusion-framework/commit/958dd0401667e9ebb1a51bced128ae43369cd6c4))
|
|
510
517
|
|
|
511
518
|
## [0.1.9](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react-module-context@0.1.8...@equinor/fusion-framework-react-module-context@0.1.9) (2022-11-16)
|
|
512
519
|
|
|
@@ -548,4 +555,4 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
548
555
|
|
|
549
556
|
### Features
|
|
550
557
|
|
|
551
|
-
-
|
|
558
|
+
- **react-module-context:** create react tooling context module ([0864830](https://github.com/equinor/fusion-framework/commit/086483008671d898b4ac901d8729bf700786ee6a))
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCurrentContext.js","sourceRoot":"","sources":["../../src/useCurrentContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAE7C,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,QAA0B,EAAE,EAAE;IAC5D,MAAM,eAAe,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC5E,MAAM,EAAE,KAAK,EAAE,cAAc,EAAE,GAAG,kBAAkB,CAAC,eAAe,EAAE;QAClE,OAAO,EAAE,QAAQ,CAAC,cAAc;KACnC,CAAC,CAAC;IACH,MAAM,iBAAiB,GAAG,WAAW,CACjC,CAAC,KAAmC,EAAE,EAAE;QACpC,IAAI,CAAC,KAAK,EAAE;
|
|
1
|
+
{"version":3,"file":"useCurrentContext.js","sourceRoot":"","sources":["../../src/useCurrentContext.ts"],"names":[],"mappings":"AACA,OAAO,EAAoB,gBAAgB,EAAE,MAAM,0CAA0C,CAAC;AAC9F,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAC;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAE7C,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,QAA0B,EAAE,EAAE;IAC5D,MAAM,eAAe,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC5E,MAAM,EAAE,KAAK,EAAE,cAAc,EAAE,GAAG,kBAAkB,CAAC,eAAe,EAAE;QAClE,OAAO,EAAE,QAAQ,CAAC,cAAc;KACnC,CAAC,CAAC;IACH,MAAM,iBAAiB,GAAG,WAAW,CACjC,CAAC,KAAmC,EAAE,EAAE;QACpC,IAAI,CAAC,KAAK,EAAE,CAAC;YACT,OAAO,QAAQ,CAAC,mBAAmB,EAAE,CAAC;QAC1C,CAAC;aAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;YACnC,OAAO,QAAQ,CAAC,0BAA0B,CAAC,KAAK,CAAC,CAAC;QACtD,CAAC;QACD,OAAO,QAAQ,CAAC,sBAAsB,CAAC,KAAK,CAAC,CAAC;IAClD,CAAC,EACD,CAAC,QAAQ,CAAC,CACb,CAAC;IACF,OAAO,EAAE,cAAc,EAAE,iBAAiB,EAAE,CAAC;AACjD,CAAC,CAAC;AAKF,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,EAAE;IACxC,MAAM,QAAQ,GAAG,SAAS,CAAgB,gBAAgB,CAAC,CAAC;IAC5D,OAAO,iBAAiB,CAAC,QAAQ,CAAC,CAAC;AACvC,CAAC,CAAC;AAEF,eAAe,uBAAuB,CAAC"}
|
package/dist/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '6.1.
|
|
1
|
+
export const version = '6.1.1';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|