@equinor/fusion-framework-react 5.3.9 → 6.0.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 +167 -131
- package/dist/esm/app/index.js +1 -0
- package/dist/esm/app/index.js.map +1 -1
- package/dist/esm/app/useAppProvider.js.map +1 -1
- package/dist/esm/app/useApps.js.map +1 -1
- package/dist/esm/app/useCurrentApp.js +1 -1
- package/dist/esm/app/useCurrentApp.js.map +1 -1
- package/dist/esm/app/useCurrentAppModule.js +13 -0
- package/dist/esm/app/useCurrentAppModule.js.map +1 -0
- package/dist/esm/app/useCurrentAppModules.js +9 -3
- package/dist/esm/app/useCurrentAppModules.js.map +1 -1
- package/dist/esm/feature-flag/index.js +5 -1
- package/dist/esm/feature-flag/index.js.map +1 -1
- package/dist/esm/feature-flag/useCurrentAppFeatures.js +12 -0
- package/dist/esm/feature-flag/useCurrentAppFeatures.js.map +1 -0
- package/dist/esm/feature-flag/useFeature.js +16 -0
- package/dist/esm/feature-flag/useFeature.js.map +1 -0
- package/dist/esm/feature-flag/useFeatures.js +27 -0
- package/dist/esm/feature-flag/useFeatures.js.map +1 -0
- package/dist/esm/feature-flag/useFrameworkFeature.js +11 -0
- package/dist/esm/feature-flag/useFrameworkFeature.js.map +1 -0
- package/dist/esm/feature-flag/useFrameworkFeatures.js +11 -0
- package/dist/esm/feature-flag/useFrameworkFeatures.js.map +1 -0
- package/dist/esm/hooks/use-http-client.js.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/signalr/index.js.map +1 -1
- package/dist/esm/useFramework.js.map +1 -1
- package/dist/esm/useFrameworkModule.js +10 -0
- package/dist/esm/useFrameworkModule.js.map +1 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/app/index.d.ts +1 -0
- package/dist/types/app/useCurrentApp.d.ts +1 -1
- package/dist/types/app/useCurrentAppModule.d.ts +8 -0
- package/dist/types/app/useCurrentAppModules.d.ts +2 -2
- package/dist/types/feature-flag/index.d.ts +6 -1
- package/dist/types/feature-flag/useCurrentAppFeatures.d.ts +2 -0
- package/dist/types/feature-flag/useFeature.d.ts +8 -0
- package/dist/types/feature-flag/useFeatures.d.ts +9 -0
- package/dist/types/feature-flag/useFrameworkFeature.d.ts +3 -0
- package/dist/types/feature-flag/useFrameworkFeatures.d.ts +3 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/useFrameworkModule.d.ts +3 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +9 -9
- package/src/app/index.ts +1 -0
- package/src/app/useCurrentApp.ts +2 -2
- package/src/app/useCurrentAppModule.ts +45 -0
- package/src/app/useCurrentAppModules.ts +14 -4
- package/src/feature-flag/README.md +44 -0
- package/src/feature-flag/index.ts +7 -6
- package/src/feature-flag/useCurrentAppFeatures.ts +19 -0
- package/src/feature-flag/useFeature.ts +47 -0
- package/src/feature-flag/useFeatures.ts +77 -0
- package/src/feature-flag/useFrameworkFeature.ts +22 -0
- package/src/feature-flag/useFrameworkFeatures.ts +20 -0
- package/src/index.tsx +1 -0
- package/src/useFrameworkModule.ts +31 -0
- package/src/version.ts +1 -1
- package/tsconfig.json +4 -1
- package/dist/esm/feature-flag/useFeatureFlags.js +0 -50
- package/dist/esm/feature-flag/useFeatureFlags.js.map +0 -1
- package/dist/types/feature-flag/useFeatureFlags.d.ts +0 -21
- package/src/feature-flag/useFeatureFlags.ts +0 -113
package/CHANGELOG.md
CHANGED
|
@@ -1,213 +1,249 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1766](https://github.com/equinor/fusion-framework/pull/1766) [`fdbe12f`](https://github.com/equinor/fusion-framework/commit/fdbe12f258aeb98d91094f16f2d8ce229d7b13ee) Thanks [@odinr](https://github.com/odinr)! - - The return type of the `useCurrentApp` function has been changed. The `currentApp` property can now be `undefined` or `null`, in addition to `CurrentApp<TModules, TEnv>`.
|
|
8
|
+
|
|
9
|
+
- The initial value for `useObservableState` has been set to `provider.current`.
|
|
10
|
+
- The assignment of `module` has been updated to handle the case where `modules` is `undefined`.
|
|
11
|
+
- The return type of the `useCurrentAppModules` function has been changed. The `modules` property can now be `undefined` or `null`, in addition to `AppModulesInstance<TModules>`.
|
|
12
|
+
- The initial value for `useObservableState` has been updated to handle the case where `currentApp` is `undefined`.
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`036546f`](https://github.com/equinor/fusion-framework/commit/036546f2e3d9c0d289c7145da84e940673027b5e), [`d0c0c6a`](https://github.com/equinor/fusion-framework/commit/d0c0c6a971a478e3f447663bf50b4e3a7cb1517e)]:
|
|
15
|
+
- @equinor/fusion-observable@8.1.5
|
|
16
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.1
|
|
17
|
+
- @equinor/fusion-framework@7.0.29
|
|
18
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.17
|
|
19
|
+
|
|
20
|
+
## 6.0.0
|
|
21
|
+
|
|
22
|
+
### Major Changes
|
|
23
|
+
|
|
24
|
+
- [#1747](https://github.com/equinor/fusion-framework/pull/1747) [`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e) Thanks [@odinr](https://github.com/odinr)! - refactor framework feature flag hooks
|
|
25
|
+
|
|
26
|
+
- useCurrentAppFeatures
|
|
27
|
+
- _useFeature (internal)_
|
|
28
|
+
- _useFeatures (internal)_
|
|
29
|
+
- useFrameworkFeature
|
|
30
|
+
- useFrameworkFeatures
|
|
31
|
+
|
|
32
|
+
> [!CAUTION] > `useCurrentAppModules` does no longer return `Observable<AppModulesInstance>`, but current state of `AppModulesInstance | null`
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
|
|
37
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.0
|
|
38
|
+
|
|
3
39
|
## 5.3.9
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
6
42
|
|
|
7
|
-
-
|
|
8
|
-
|
|
43
|
+
- Updated dependencies [[`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d), [`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d)]:
|
|
44
|
+
- @equinor/fusion-framework-module-feature-flag@0.0.1
|
|
9
45
|
|
|
10
46
|
## 5.3.8
|
|
11
47
|
|
|
12
48
|
### Patch Changes
|
|
13
49
|
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
50
|
+
- Updated dependencies []:
|
|
51
|
+
- @equinor/fusion-framework@7.0.28
|
|
52
|
+
- @equinor/fusion-framework-react-module-http@4.0.5
|
|
53
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.16
|
|
18
54
|
|
|
19
55
|
## 5.3.7
|
|
20
56
|
|
|
21
57
|
### Patch Changes
|
|
22
58
|
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
59
|
+
- Updated dependencies []:
|
|
60
|
+
- @equinor/fusion-framework@7.0.27
|
|
61
|
+
- @equinor/fusion-framework-react-module-http@4.0.4
|
|
62
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.15
|
|
27
63
|
|
|
28
64
|
## 5.3.6
|
|
29
65
|
|
|
30
66
|
### Patch Changes
|
|
31
67
|
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
68
|
+
- Updated dependencies [[`cce198d`](https://github.com/equinor/fusion-framework/commit/cce198d6a91fb7912265d4383246dc405cf17a17), [`f85316f`](https://github.com/equinor/fusion-framework/commit/f85316f2344258896a77ef602bd4047dfa553788)]:
|
|
69
|
+
- @equinor/fusion-framework-react-module-http@4.0.3
|
|
70
|
+
- @equinor/fusion-framework@7.0.26
|
|
71
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.14
|
|
36
72
|
|
|
37
73
|
## 5.3.5
|
|
38
74
|
|
|
39
75
|
### Patch Changes
|
|
40
76
|
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
77
|
+
- Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
|
|
78
|
+
- @equinor/fusion-observable@8.1.4
|
|
79
|
+
- @equinor/fusion-framework@7.0.25
|
|
80
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.13
|
|
45
81
|
|
|
46
82
|
## 5.3.4
|
|
47
83
|
|
|
48
84
|
### Patch Changes
|
|
49
85
|
|
|
50
|
-
-
|
|
86
|
+
- [#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
|
|
51
87
|
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
88
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
89
|
+
- @equinor/fusion-observable@8.1.3
|
|
90
|
+
- @equinor/fusion-framework-module@4.2.6
|
|
91
|
+
- @equinor/fusion-framework@7.0.24
|
|
92
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.12
|
|
93
|
+
- @equinor/fusion-framework-react-module@3.0.7
|
|
94
|
+
- @equinor/fusion-framework-react-module-http@4.0.2
|
|
59
95
|
|
|
60
96
|
## 5.3.3
|
|
61
97
|
|
|
62
98
|
### Patch Changes
|
|
63
99
|
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
100
|
+
- Updated dependencies []:
|
|
101
|
+
- @equinor/fusion-framework@7.0.23
|
|
102
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.11
|
|
67
103
|
|
|
68
104
|
## 5.3.2
|
|
69
105
|
|
|
70
106
|
### Patch Changes
|
|
71
107
|
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
108
|
+
- Updated dependencies []:
|
|
109
|
+
- @equinor/fusion-framework@7.0.22
|
|
110
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.10
|
|
75
111
|
|
|
76
112
|
## 5.3.1
|
|
77
113
|
|
|
78
114
|
### Patch Changes
|
|
79
115
|
|
|
80
|
-
-
|
|
116
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
81
117
|
|
|
82
|
-
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
118
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
119
|
+
- @equinor/fusion-framework@7.0.21
|
|
120
|
+
- @equinor/fusion-framework-module@4.2.5
|
|
121
|
+
- @equinor/fusion-framework-react-module-http@4.0.1
|
|
122
|
+
- @equinor/fusion-framework-react-module@3.0.6
|
|
123
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.9
|
|
124
|
+
- @equinor/fusion-observable@8.1.2
|
|
89
125
|
|
|
90
126
|
## 5.3.0
|
|
91
127
|
|
|
92
128
|
### Minor Changes
|
|
93
129
|
|
|
94
|
-
-
|
|
130
|
+
- [`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658) Thanks [@odinr](https://github.com/odinr)! - Create module provider when creating framework provider
|
|
95
131
|
|
|
96
|
-
|
|
132
|
+
`useModule(...)` did not work previously within framework (portal) context since no context provider was created
|
|
97
133
|
|
|
98
134
|
### Patch Changes
|
|
99
135
|
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
136
|
+
- Updated dependencies []:
|
|
137
|
+
- @equinor/fusion-framework@7.0.20
|
|
138
|
+
- @equinor/fusion-framework-react-module-http@4.0.0
|
|
139
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.8
|
|
104
140
|
|
|
105
141
|
## 5.2.7
|
|
106
142
|
|
|
107
143
|
### Patch Changes
|
|
108
144
|
|
|
109
|
-
-
|
|
110
|
-
|
|
111
|
-
|
|
145
|
+
- Updated dependencies []:
|
|
146
|
+
- @equinor/fusion-framework@7.0.19
|
|
147
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.7
|
|
112
148
|
|
|
113
149
|
## 5.2.6
|
|
114
150
|
|
|
115
151
|
### Patch Changes
|
|
116
152
|
|
|
117
|
-
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
153
|
+
- Updated dependencies [[`6f64d1aa`](https://github.com/equinor/fusion-framework/commit/6f64d1aa5e44af37f0abd76cef36e87761134760), [`758eaaf4`](https://github.com/equinor/fusion-framework/commit/758eaaf436ae28d180e7d91818b41abe0d9624c4), [`9076a498`](https://github.com/equinor/fusion-framework/commit/9076a49876e7a414a27557b7fb9095a67fe3a57f)]:
|
|
154
|
+
- @equinor/fusion-observable@8.1.1
|
|
155
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
156
|
+
- @equinor/fusion-framework@7.0.18
|
|
157
|
+
- @equinor/fusion-framework-react-module-http@3.0.5
|
|
158
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.6
|
|
123
159
|
|
|
124
160
|
## 5.2.5
|
|
125
161
|
|
|
126
162
|
### Patch Changes
|
|
127
163
|
|
|
128
|
-
-
|
|
129
|
-
|
|
130
|
-
|
|
164
|
+
- Updated dependencies []:
|
|
165
|
+
- @equinor/fusion-framework@7.0.17
|
|
166
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.5
|
|
131
167
|
|
|
132
168
|
## 5.2.4
|
|
133
169
|
|
|
134
170
|
### Patch Changes
|
|
135
171
|
|
|
136
|
-
-
|
|
172
|
+
- [#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
|
|
137
173
|
|
|
138
|
-
|
|
174
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
139
175
|
|
|
140
|
-
|
|
176
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
141
177
|
|
|
142
|
-
-
|
|
178
|
+
- [#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
|
|
143
179
|
|
|
144
|
-
|
|
180
|
+
only dev deps updated should not affect any consumers
|
|
145
181
|
|
|
146
|
-
|
|
182
|
+
see [react changelog](https://github.com/facebook/react/releases) for details
|
|
147
183
|
|
|
148
|
-
-
|
|
184
|
+
- [#1145](https://github.com/equinor/fusion-framework/pull/1145) [`d276fc5d`](https://github.com/equinor/fusion-framework/commit/d276fc5d514566d05c64705076a1cb91c6a44272) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump rxjs from 7.5.7 to [7.8.1](https://github.com/ReactiveX/rxjs/blob/7.8.1/CHANGELOG.md)
|
|
149
185
|
|
|
150
|
-
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
186
|
+
- 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)]:
|
|
187
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.4
|
|
188
|
+
- @equinor/fusion-framework-react-module-http@3.0.4
|
|
189
|
+
- @equinor/fusion-observable@8.1.0
|
|
190
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
191
|
+
- @equinor/fusion-framework@7.0.16
|
|
156
192
|
|
|
157
193
|
## 5.2.3
|
|
158
194
|
|
|
159
195
|
### Patch Changes
|
|
160
196
|
|
|
161
|
-
-
|
|
197
|
+
- [#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
|
|
162
198
|
|
|
163
|
-
|
|
199
|
+
only style semantics updated
|
|
164
200
|
|
|
165
201
|
## 5.2.2
|
|
166
202
|
|
|
167
203
|
### Patch Changes
|
|
168
204
|
|
|
169
|
-
-
|
|
205
|
+
- [#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
|
|
170
206
|
|
|
171
|
-
-
|
|
172
|
-
|
|
207
|
+
- Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
|
|
208
|
+
- @equinor/fusion-framework@7.0.15
|
|
173
209
|
|
|
174
210
|
## 5.2.1
|
|
175
211
|
|
|
176
212
|
### Patch Changes
|
|
177
213
|
|
|
178
|
-
-
|
|
214
|
+
- [#943](https://github.com/equinor/fusion-framework/pull/943) [`6fb3fb86`](https://github.com/equinor/fusion-framework/commit/6fb3fb8610f5ed5777d13bde71d8d92b0da31d8a) Thanks [@odinr](https://github.com/odinr)! - update typing to typescript 5
|
|
179
215
|
|
|
180
|
-
|
|
216
|
+
provider from `createFrameworkProvider` was missing typehint of children
|
|
181
217
|
|
|
182
218
|
## 5.2.0
|
|
183
219
|
|
|
184
220
|
### Minor Changes
|
|
185
221
|
|
|
186
|
-
-
|
|
222
|
+
- [#927](https://github.com/equinor/fusion-framework/pull/927) [`8bc4c5d6`](https://github.com/equinor/fusion-framework/commit/8bc4c5d6ed900e424efcab5572047c106d7ec04a) Thanks [@odinr](https://github.com/odinr)! - Create and expose interface for App
|
|
187
223
|
|
|
188
|
-
|
|
224
|
+
- deprecate [AppModuleProvider.createApp](https://github.com/equinor/fusion-framework/blob/cf08d5ae3cef473e5025fd973a2a7a45a3b22dee/packages/modules/app/src/AppModuleProvider.ts#L171)
|
|
189
225
|
|
|
190
|
-
|
|
191
|
-
|
|
226
|
+
this should not create any breaking changes since apps was only created from provider.
|
|
227
|
+
if the class is still needed it can be imported:
|
|
192
228
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
229
|
+
```ts
|
|
230
|
+
import { App } from "@equinor/fusion-framework-module-app/app";
|
|
231
|
+
```
|
|
196
232
|
|
|
197
233
|
## 5.1.4
|
|
198
234
|
|
|
199
235
|
### Patch Changes
|
|
200
236
|
|
|
201
|
-
-
|
|
237
|
+
- [#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**
|
|
202
238
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
239
|
+
- align all versions of typescript
|
|
240
|
+
- update types to build
|
|
241
|
+
- 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
|
|
206
242
|
|
|
207
|
-
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
243
|
+
- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
244
|
+
- @equinor/fusion-framework@7.0.14
|
|
245
|
+
- @equinor/fusion-framework-react-module-context@6.0.9
|
|
246
|
+
- @equinor/fusion-framework-react-module-http@3.0.3
|
|
211
247
|
|
|
212
248
|
All notable changes to this project will be documented in this file.
|
|
213
249
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -224,14 +260,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
224
260
|
|
|
225
261
|
### Bug Fixes
|
|
226
262
|
|
|
227
|
-
-
|
|
263
|
+
- **react-framework:** expose useCurrentAppModules ([785d5eb](https://github.com/equinor/fusion-framework/commit/785d5eb08963d5ba1a007573879908b33e52fb3f))
|
|
228
264
|
|
|
229
265
|
## 5.1.0 (2023-05-22)
|
|
230
266
|
|
|
231
267
|
### Features
|
|
232
268
|
|
|
233
|
-
-
|
|
234
|
-
-
|
|
269
|
+
- **react-framework:** add hook for using current app modules ([2d65464](https://github.com/equinor/fusion-framework/commit/2d654647b84e03d1c6e322509885d8bfa2b9142f))
|
|
270
|
+
- **react-framework:** enhance `useCurrentApp` ([60026c9](https://github.com/equinor/fusion-framework/commit/60026c918c5033137cc359665074ea65c11a34fb))
|
|
235
271
|
|
|
236
272
|
## [5.0.11](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@5.0.10...@equinor/fusion-framework-react@5.0.11) (2023-05-12)
|
|
237
273
|
|
|
@@ -321,7 +357,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
321
357
|
|
|
322
358
|
### Bug Fixes
|
|
323
359
|
|
|
324
|
-
-
|
|
360
|
+
- **useApps:** hiding hidden apps ([7f1354f](https://github.com/equinor/fusion-framework/commit/7f1354fd72cd7b02715e67b8274b4c8185397012))
|
|
325
361
|
|
|
326
362
|
## [4.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@4.0.1...@equinor/fusion-framework-react@4.0.2) (2023-02-22)
|
|
327
363
|
|
|
@@ -335,18 +371,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
335
371
|
|
|
336
372
|
### ⚠ BREAKING CHANGES
|
|
337
373
|
|
|
338
|
-
-
|
|
374
|
+
- **utils/observable:** `useObservableInputState` and `useObservableSelectorState` now return full state, not only value
|
|
339
375
|
|
|
340
376
|
### Bug Fixes
|
|
341
377
|
|
|
342
|
-
-
|
|
343
|
-
-
|
|
378
|
+
- **utils/observable:** rename `next` to `value`from `useObservableState` ([4a08445](https://github.com/equinor/fusion-framework/commit/4a08445645af2488666564c2da716d32aa5e88c0))
|
|
379
|
+
- **utils/observable:** when subject in useObservableState reset state ([9c5c041](https://github.com/equinor/fusion-framework/commit/9c5c041d3d8c0b01bd507ea7f672711d9f5cb653))
|
|
344
380
|
|
|
345
381
|
## [3.2.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@3.1.4...@equinor/fusion-framework-react@3.2.0) (2023-02-09)
|
|
346
382
|
|
|
347
383
|
### Features
|
|
348
384
|
|
|
349
|
-
-
|
|
385
|
+
- (framework): person provider ([d4a3936](https://github.com/equinor/fusion-framework/commit/d4a3936d6a60f093f71eac1dacc05cd60c7bf554))
|
|
350
386
|
|
|
351
387
|
## 3.1.4 (2023-02-02)
|
|
352
388
|
|
|
@@ -356,25 +392,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
356
392
|
|
|
357
393
|
### Bug Fixes
|
|
358
394
|
|
|
359
|
-
-
|
|
395
|
+
- **framework-react:** make params for useApps optional ([9e3fce1](https://github.com/equinor/fusion-framework/commit/9e3fce16cb1abfea8ae77239078efa2b1b0f52c2))
|
|
360
396
|
|
|
361
397
|
## [3.1.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@3.1.0...@equinor/fusion-framework-react@3.1.2) (2023-02-01)
|
|
362
398
|
|
|
363
399
|
### Bug Fixes
|
|
364
400
|
|
|
365
|
-
-
|
|
401
|
+
- **framework-app:** exporting hooks useApps and useAppProvider ([fd62fb3](https://github.com/equinor/fusion-framework/commit/fd62fb35667730d6d1f915bab4fc0c9bd8f6152b))
|
|
366
402
|
|
|
367
403
|
## [3.1.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@3.1.0...@equinor/fusion-framework-react@3.1.1) (2023-02-01)
|
|
368
404
|
|
|
369
405
|
### Bug Fixes
|
|
370
406
|
|
|
371
|
-
-
|
|
407
|
+
- **framework-app:** exporting hooks useApps and useAppProvider ([fd62fb3](https://github.com/equinor/fusion-framework/commit/fd62fb35667730d6d1f915bab4fc0c9bd8f6152b))
|
|
372
408
|
|
|
373
409
|
## 3.1.0 (2023-02-01)
|
|
374
410
|
|
|
375
411
|
### Features
|
|
376
412
|
|
|
377
|
-
-
|
|
413
|
+
- hooks useApps and useAppProvider ([bfa61a2](https://github.com/equinor/fusion-framework/commit/bfa61a2f01e70880f5a90e5184454ca40033ce71))
|
|
378
414
|
|
|
379
415
|
## 3.0.1 (2023-01-30)
|
|
380
416
|
|
|
@@ -392,7 +428,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
392
428
|
|
|
393
429
|
### Features
|
|
394
430
|
|
|
395
|
-
-
|
|
431
|
+
- **framework-react:** expose hook for signalr ([e807202](https://github.com/equinor/fusion-framework/commit/e807202e32e1031c7feb6e8ec1d30b3ed4336f35))
|
|
396
432
|
|
|
397
433
|
## 2.1.7 (2023-01-19)
|
|
398
434
|
|
|
@@ -426,7 +462,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
426
462
|
|
|
427
463
|
### Features
|
|
428
464
|
|
|
429
|
-
-
|
|
465
|
+
- **module-app:** allow clearing current app ([c7f4c14](https://github.com/equinor/fusion-framework/commit/c7f4c144c29c2c40df42eafcdaabfb8214e1e88d))
|
|
430
466
|
|
|
431
467
|
## 2.0.25 (2023-01-04)
|
|
432
468
|
|
|
@@ -460,7 +496,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
460
496
|
|
|
461
497
|
### Bug Fixes
|
|
462
498
|
|
|
463
|
-
-
|
|
499
|
+
- remove deprecated hooks ([af5586f](https://github.com/equinor/fusion-framework/commit/af5586f563e32c1e7e577a3e6837be610a135fc9))
|
|
464
500
|
|
|
465
501
|
## [2.0.17](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@2.0.16...@equinor/fusion-framework-react@2.0.17) (2022-12-13)
|
|
466
502
|
|
|
@@ -482,7 +518,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
482
518
|
|
|
483
519
|
### Bug Fixes
|
|
484
520
|
|
|
485
|
-
-
|
|
521
|
+
- **framework-react:** update hooks ([cd8b0cd](https://github.com/equinor/fusion-framework/commit/cd8b0cd580cd90a35392ccefb8e306700e903ce1))
|
|
486
522
|
|
|
487
523
|
## [2.0.12](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@2.0.11...@equinor/fusion-framework-react@2.0.12) (2022-12-08)
|
|
488
524
|
|
|
@@ -644,13 +680,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
644
680
|
|
|
645
681
|
### Bug Fixes
|
|
646
682
|
|
|
647
|
-
-
|
|
683
|
+
- **module-auth:** make http module await auth ([18a0ed9](https://github.com/equinor/fusion-framework/commit/18a0ed947e128bf1cdc86aa45d31e73c1f8c4bbb))
|
|
648
684
|
|
|
649
685
|
## 1.3.6 (2022-11-03)
|
|
650
686
|
|
|
651
687
|
### Bug Fixes
|
|
652
688
|
|
|
653
|
-
-
|
|
689
|
+
- deprecate useFramework from hooks ([d3d9b24](https://github.com/equinor/fusion-framework/commit/d3d9b24fe56937e2c9feba7de4228d8eb1cbbec5))
|
|
654
690
|
|
|
655
691
|
## [1.3.5](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@1.3.4...@equinor/fusion-framework-react@1.3.5) (2022-11-03)
|
|
656
692
|
|
|
@@ -676,8 +712,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
676
712
|
|
|
677
713
|
### Features
|
|
678
714
|
|
|
679
|
-
-
|
|
680
|
-
-
|
|
715
|
+
- **framework-react:** create hook for current context ([4ee803f](https://github.com/equinor/fusion-framework/commit/4ee803fd0e457c3ec7414b35100e12186327fb6f))
|
|
716
|
+
- **framework-react:** react tooling for context ([b530114](https://github.com/equinor/fusion-framework/commit/b53011475a9c1a25b4e0756b66b57fd9b5711bbd))
|
|
681
717
|
|
|
682
718
|
## [1.2.1](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@1.2.0...@equinor/fusion-framework-react@1.2.1) (2022-11-02)
|
|
683
719
|
|
|
@@ -687,7 +723,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
687
723
|
|
|
688
724
|
### Features
|
|
689
725
|
|
|
690
|
-
-
|
|
726
|
+
- **framework-react:** expose app hooks ([46c1ea2](https://github.com/equinor/fusion-framework/commit/46c1ea28f88cb3dd0ff350a589850c5cd9a45a88))
|
|
691
727
|
|
|
692
728
|
## 1.1.1 (2022-11-01)
|
|
693
729
|
|
|
@@ -697,7 +733,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
697
733
|
|
|
698
734
|
### Features
|
|
699
735
|
|
|
700
|
-
-
|
|
736
|
+
- :sparkles: expose a single element for setup framework ([154e09f](https://github.com/equinor/fusion-framework/commit/154e09f027b7dea3015eb860fa530ce0f45dfa61))
|
|
701
737
|
|
|
702
738
|
## 1.0.17 (2022-10-27)
|
|
703
739
|
|
|
@@ -759,7 +795,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
759
795
|
|
|
760
796
|
### Bug Fixes
|
|
761
797
|
|
|
762
|
-
-
|
|
798
|
+
- update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
|
|
763
799
|
|
|
764
800
|
## [1.0.2](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@1.0.1...@equinor/fusion-framework-react@1.0.2) (2022-09-13)
|
|
765
801
|
|
|
@@ -781,21 +817,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
781
817
|
|
|
782
818
|
### ⚠ BREAKING CHANGES
|
|
783
819
|
|
|
784
|
-
-
|
|
820
|
+
- **framework-react:** config is now object
|
|
785
821
|
|
|
786
822
|
### Features
|
|
787
823
|
|
|
788
|
-
-
|
|
824
|
+
- **framework-react:** update init ([f3e6e2b](https://github.com/equinor/fusion-framework/commit/f3e6e2ba7058b4b515ff0838516fe44705bfdf5c))
|
|
789
825
|
|
|
790
826
|
## [1.0.0-alpha.0](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@0.3.3...@equinor/fusion-framework-react@1.0.0-alpha.0) (2022-09-12)
|
|
791
827
|
|
|
792
828
|
### ⚠ BREAKING CHANGES
|
|
793
829
|
|
|
794
|
-
-
|
|
830
|
+
- **framework-react:** config is now object
|
|
795
831
|
|
|
796
832
|
### Features
|
|
797
833
|
|
|
798
|
-
-
|
|
834
|
+
- **framework-react:** update init ([f3e6e2b](https://github.com/equinor/fusion-framework/commit/f3e6e2ba7058b4b515ff0838516fe44705bfdf5c))
|
|
799
835
|
|
|
800
836
|
## [0.3.3](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@0.3.2...@equinor/fusion-framework-react@0.3.3) (2022-09-05)
|
|
801
837
|
|
|
@@ -813,7 +849,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
813
849
|
|
|
814
850
|
### Features
|
|
815
851
|
|
|
816
|
-
-
|
|
852
|
+
- **framework-react:** expose rect module http ([f6ab26f](https://github.com/equinor/fusion-framework/commit/f6ab26f2c4463ce9d0996027a48eb5ad9d94779a))
|
|
817
853
|
|
|
818
854
|
## [0.2.19](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@0.2.18...@equinor/fusion-framework-react@0.2.19) (2022-08-29)
|
|
819
855
|
|
|
@@ -859,7 +895,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
859
895
|
|
|
860
896
|
### Bug Fixes
|
|
861
897
|
|
|
862
|
-
-
|
|
898
|
+
- **framework-react:** remove legacy path ([fa82188](https://github.com/equinor/fusion-framework/commit/fa82188a7471a82fafacf26a1fc50a1703fe3944))
|
|
863
899
|
|
|
864
900
|
## [0.2.8](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@0.2.7...@equinor/fusion-framework-react@0.2.8) (2022-07-01)
|
|
865
901
|
|
|
@@ -897,7 +933,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
897
933
|
|
|
898
934
|
### Features
|
|
899
935
|
|
|
900
|
-
-
|
|
936
|
+
- **framework:** allow addtional modules ([d8d697b](https://github.com/equinor/fusion-framework/commit/d8d697b6fa8ea5c8130b324195d39f354d2fa768))
|
|
901
937
|
|
|
902
938
|
## [0.1.19](https://github.com/equinor/fusion-framework/compare/@equinor/fusion-framework-react@0.1.18...@equinor/fusion-framework-react@0.1.19) (2022-06-14)
|
|
903
939
|
|
|
@@ -975,19 +1011,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
975
1011
|
|
|
976
1012
|
### Bug Fixes
|
|
977
1013
|
|
|
978
|
-
-
|
|
1014
|
+
- **framework-react:** export Fusion ([94b150f](https://github.com/equinor/fusion-framework/commit/94b150ff9d1b5ad27c12f19160371edb464c88de))
|
|
979
1015
|
|
|
980
1016
|
# 0.1.0 (2022-02-07)
|
|
981
1017
|
|
|
982
1018
|
### Bug Fixes
|
|
983
1019
|
|
|
984
|
-
-
|
|
985
|
-
-
|
|
986
|
-
-
|
|
987
|
-
-
|
|
988
|
-
-
|
|
1020
|
+
- **framework-react:** typehint ([75d3793](https://github.com/equinor/fusion-framework/commit/75d37936aca967d17d192977337bae99f6aea277))
|
|
1021
|
+
- **framework-react:** update name change ([e2382b7](https://github.com/equinor/fusion-framework/commit/e2382b70a7d7a8cd103cb33c2a839c5a34e315c9))
|
|
1022
|
+
- memo http clients ([f876acb](https://github.com/equinor/fusion-framework/commit/f876acb11e19d7802a28f58ce7d70bc76f777c5e))
|
|
1023
|
+
- **react:** fix typing ([9a2a51d](https://github.com/equinor/fusion-framework/commit/9a2a51dd76ed68ef95ef5c932555ae31165f16c2))
|
|
1024
|
+
- shared context ([f00732e](https://github.com/equinor/fusion-framework/commit/f00732ee3c1016be812204c7cf7b0205b2322075))
|
|
989
1025
|
|
|
990
1026
|
### Features
|
|
991
1027
|
|
|
992
|
-
-
|
|
993
|
-
-
|
|
1028
|
+
- add package for creating framework in react ([3b6858d](https://github.com/equinor/fusion-framework/commit/3b6858dc9f6b8c0efd6aa51275693e068ac72bef))
|
|
1029
|
+
- **react-app:** add hooks ([9bfcc5e](https://github.com/equinor/fusion-framework/commit/9bfcc5ebd721b19232e7896cee037637c716f09a))
|
package/dist/esm/app/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/app/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAppProvider.js","sourceRoot":"","sources":["../../../src/app/useAppProvider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAM/C,MAAM,CAAC,MAAM,cAAc,GAAG,GAA8C,EAAE;IAC1E,MAAM,QAAQ,GAAG,YAAY,EAAe,CAAC,OAAO,CAAC,GAAG,CAAC;IACzD,IAAI,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"useAppProvider.js","sourceRoot":"","sources":["../../../src/app/useAppProvider.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAM/C,MAAM,CAAC,MAAM,cAAc,GAAG,GAA8C,EAAE;IAC1E,MAAM,QAAQ,GAAG,YAAY,EAAe,CAAC,OAAO,CAAC,GAAG,CAAC;IACzD,IAAI,CAAC,QAAQ,EAAE,CAAC;QACZ,MAAM,KAAK,CAAC,sDAAsD,CAAC,CAAC;IACxE,CAAC;IAED,OAAO,QAAQ,CAAC;AACpB,CAAC,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useApps.js","sourceRoot":"","sources":["../../../src/app/useApps.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAOlD,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,IAEvB,EAA2D,EAAE;IAC1D,MAAM,QAAQ,GAAG,cAAc,EAAE,CAAC;IAClC,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,kBAAkB,CACrD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,kBAAkB,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,CAC3D,CAAC;IAEF,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,EAAE;QACtB,IAAI,SAAS,IAAI,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,aAAa,CAAA,EAAE;
|
|
1
|
+
{"version":3,"file":"useApps.js","sourceRoot":"","sources":["../../../src/app/useApps.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAOlD,MAAM,CAAC,MAAM,OAAO,GAAG,CAAC,IAEvB,EAA2D,EAAE;IAC1D,MAAM,QAAQ,GAAG,cAAc,EAAE,CAAC;IAClC,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,GAAG,kBAAkB,CACrD,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,kBAAkB,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,CAC3D,CAAC;IAEF,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,EAAE;QACtB,IAAI,SAAS,IAAI,CAAC,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,aAAa,CAAA,EAAE,CAAC;YACpC,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;QAChD,CAAC;QACD,OAAO,SAAS,CAAC;IACrB,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC;IAEtB,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC;AAC1C,CAAC,CAAC;AAEF,eAAe,OAAO,CAAC"}
|