@equinor/fusion-framework-react 5.3.9 → 6.0.0
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 +150 -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.map +1 -1
- package/dist/esm/app/useCurrentAppModule.js +11 -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/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 +7 -7
- package/src/app/index.ts +1 -0
- package/src/app/useCurrentAppModule.ts +43 -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,232 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- useCurrentAppFeatures
|
|
10
|
+
- _useFeature (internal)_
|
|
11
|
+
- _useFeatures (internal)_
|
|
12
|
+
- useFrameworkFeature
|
|
13
|
+
- useFrameworkFeatures
|
|
14
|
+
|
|
15
|
+
> [!CAUTION] > `useCurrentAppModules` does no longer return `Observable<AppModulesInstance>`, but current state of `AppModulesInstance | null`
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`8b031c3`](https://github.com/equinor/fusion-framework/commit/8b031c31f314deeffdf395fc847e4279b61aab7e)]:
|
|
20
|
+
- @equinor/fusion-framework-module-feature-flag@1.0.0
|
|
21
|
+
|
|
3
22
|
## 5.3.9
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
6
25
|
|
|
7
|
-
-
|
|
8
|
-
|
|
26
|
+
- Updated dependencies [[`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d), [`1918c82`](https://github.com/equinor/fusion-framework/commit/1918c8228bc7158c4c358aa8f5688342e3b11b1d)]:
|
|
27
|
+
- @equinor/fusion-framework-module-feature-flag@0.0.1
|
|
9
28
|
|
|
10
29
|
## 5.3.8
|
|
11
30
|
|
|
12
31
|
### Patch Changes
|
|
13
32
|
|
|
14
|
-
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
33
|
+
- Updated dependencies []:
|
|
34
|
+
- @equinor/fusion-framework@7.0.28
|
|
35
|
+
- @equinor/fusion-framework-react-module-http@4.0.5
|
|
36
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.16
|
|
18
37
|
|
|
19
38
|
## 5.3.7
|
|
20
39
|
|
|
21
40
|
### Patch Changes
|
|
22
41
|
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
42
|
+
- Updated dependencies []:
|
|
43
|
+
- @equinor/fusion-framework@7.0.27
|
|
44
|
+
- @equinor/fusion-framework-react-module-http@4.0.4
|
|
45
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.15
|
|
27
46
|
|
|
28
47
|
## 5.3.6
|
|
29
48
|
|
|
30
49
|
### Patch Changes
|
|
31
50
|
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
51
|
+
- Updated dependencies [[`cce198d`](https://github.com/equinor/fusion-framework/commit/cce198d6a91fb7912265d4383246dc405cf17a17), [`f85316f`](https://github.com/equinor/fusion-framework/commit/f85316f2344258896a77ef602bd4047dfa553788)]:
|
|
52
|
+
- @equinor/fusion-framework-react-module-http@4.0.3
|
|
53
|
+
- @equinor/fusion-framework@7.0.26
|
|
54
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.14
|
|
36
55
|
|
|
37
56
|
## 5.3.5
|
|
38
57
|
|
|
39
58
|
### Patch Changes
|
|
40
59
|
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
60
|
+
- Updated dependencies [[`6ffaabf`](https://github.com/equinor/fusion-framework/commit/6ffaabf120704f2f4f4074a0fa0a17faf77fe22a)]:
|
|
61
|
+
- @equinor/fusion-observable@8.1.4
|
|
62
|
+
- @equinor/fusion-framework@7.0.25
|
|
63
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.13
|
|
45
64
|
|
|
46
65
|
## 5.3.4
|
|
47
66
|
|
|
48
67
|
### Patch Changes
|
|
49
68
|
|
|
50
|
-
-
|
|
69
|
+
- [#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
70
|
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
71
|
+
- Updated dependencies [[`9c24e84`](https://github.com/equinor/fusion-framework/commit/9c24e847d041dea8384c77439e6b237f5bdb3125)]:
|
|
72
|
+
- @equinor/fusion-observable@8.1.3
|
|
73
|
+
- @equinor/fusion-framework-module@4.2.6
|
|
74
|
+
- @equinor/fusion-framework@7.0.24
|
|
75
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.12
|
|
76
|
+
- @equinor/fusion-framework-react-module@3.0.7
|
|
77
|
+
- @equinor/fusion-framework-react-module-http@4.0.2
|
|
59
78
|
|
|
60
79
|
## 5.3.3
|
|
61
80
|
|
|
62
81
|
### Patch Changes
|
|
63
82
|
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
83
|
+
- Updated dependencies []:
|
|
84
|
+
- @equinor/fusion-framework@7.0.23
|
|
85
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.11
|
|
67
86
|
|
|
68
87
|
## 5.3.2
|
|
69
88
|
|
|
70
89
|
### Patch Changes
|
|
71
90
|
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
91
|
+
- Updated dependencies []:
|
|
92
|
+
- @equinor/fusion-framework@7.0.22
|
|
93
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.10
|
|
75
94
|
|
|
76
95
|
## 5.3.1
|
|
77
96
|
|
|
78
97
|
### Patch Changes
|
|
79
98
|
|
|
80
|
-
-
|
|
99
|
+
- [`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc) Thanks [@odinr](https://github.com/odinr)! - force patch bump, realign missing snapshot
|
|
81
100
|
|
|
82
|
-
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
101
|
+
- Updated dependencies [[`b5dfe5d2`](https://github.com/equinor/fusion-framework/commit/b5dfe5d29a249e0cca6c9589322931dfedd06acc)]:
|
|
102
|
+
- @equinor/fusion-framework@7.0.21
|
|
103
|
+
- @equinor/fusion-framework-module@4.2.5
|
|
104
|
+
- @equinor/fusion-framework-react-module-http@4.0.1
|
|
105
|
+
- @equinor/fusion-framework-react-module@3.0.6
|
|
106
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.9
|
|
107
|
+
- @equinor/fusion-observable@8.1.2
|
|
89
108
|
|
|
90
109
|
## 5.3.0
|
|
91
110
|
|
|
92
111
|
### Minor Changes
|
|
93
112
|
|
|
94
|
-
-
|
|
113
|
+
- [`3896fbec`](https://github.com/equinor/fusion-framework/commit/3896fbec3458dbe2ebd66e772465d5f89cd20658) Thanks [@odinr](https://github.com/odinr)! - Create module provider when creating framework provider
|
|
95
114
|
|
|
96
|
-
|
|
115
|
+
`useModule(...)` did not work previously within framework (portal) context since no context provider was created
|
|
97
116
|
|
|
98
117
|
### Patch Changes
|
|
99
118
|
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
119
|
+
- Updated dependencies []:
|
|
120
|
+
- @equinor/fusion-framework@7.0.20
|
|
121
|
+
- @equinor/fusion-framework-react-module-http@4.0.0
|
|
122
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.8
|
|
104
123
|
|
|
105
124
|
## 5.2.7
|
|
106
125
|
|
|
107
126
|
### Patch Changes
|
|
108
127
|
|
|
109
|
-
-
|
|
110
|
-
|
|
111
|
-
|
|
128
|
+
- Updated dependencies []:
|
|
129
|
+
- @equinor/fusion-framework@7.0.19
|
|
130
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.7
|
|
112
131
|
|
|
113
132
|
## 5.2.6
|
|
114
133
|
|
|
115
134
|
### Patch Changes
|
|
116
135
|
|
|
117
|
-
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
136
|
+
- 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)]:
|
|
137
|
+
- @equinor/fusion-observable@8.1.1
|
|
138
|
+
- @equinor/fusion-framework-module@4.2.4
|
|
139
|
+
- @equinor/fusion-framework@7.0.18
|
|
140
|
+
- @equinor/fusion-framework-react-module-http@3.0.5
|
|
141
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.6
|
|
123
142
|
|
|
124
143
|
## 5.2.5
|
|
125
144
|
|
|
126
145
|
### Patch Changes
|
|
127
146
|
|
|
128
|
-
-
|
|
129
|
-
|
|
130
|
-
|
|
147
|
+
- Updated dependencies []:
|
|
148
|
+
- @equinor/fusion-framework@7.0.17
|
|
149
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.5
|
|
131
150
|
|
|
132
151
|
## 5.2.4
|
|
133
152
|
|
|
134
153
|
### Patch Changes
|
|
135
154
|
|
|
136
|
-
-
|
|
155
|
+
- [#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
156
|
|
|
138
|
-
|
|
157
|
+
conflicts of `@types/react` made random outcomes when using `yarn`
|
|
139
158
|
|
|
140
|
-
|
|
159
|
+
this change should not affect consumer of the packages, but might conflict dependent on local package manager.
|
|
141
160
|
|
|
142
|
-
-
|
|
161
|
+
- [#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
162
|
|
|
144
|
-
|
|
163
|
+
only dev deps updated should not affect any consumers
|
|
145
164
|
|
|
146
|
-
|
|
165
|
+
see [react changelog](https://github.com/facebook/react/releases) for details
|
|
147
166
|
|
|
148
|
-
-
|
|
167
|
+
- [#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
168
|
|
|
150
|
-
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
169
|
+
- 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)]:
|
|
170
|
+
- @equinor/fusion-framework-react-module-signalr@2.0.4
|
|
171
|
+
- @equinor/fusion-framework-react-module-http@3.0.4
|
|
172
|
+
- @equinor/fusion-observable@8.1.0
|
|
173
|
+
- @equinor/fusion-framework-module@4.2.3
|
|
174
|
+
- @equinor/fusion-framework@7.0.16
|
|
156
175
|
|
|
157
176
|
## 5.2.3
|
|
158
177
|
|
|
159
178
|
### Patch Changes
|
|
160
179
|
|
|
161
|
-
-
|
|
180
|
+
- [#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
181
|
|
|
163
|
-
|
|
182
|
+
only style semantics updated
|
|
164
183
|
|
|
165
184
|
## 5.2.2
|
|
166
185
|
|
|
167
186
|
### Patch Changes
|
|
168
187
|
|
|
169
|
-
-
|
|
188
|
+
- [#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
189
|
|
|
171
|
-
-
|
|
172
|
-
|
|
190
|
+
- Updated dependencies [[`5a160d88`](https://github.com/equinor/fusion-framework/commit/5a160d88981ddfe861d391cfefe10f54dda3d352)]:
|
|
191
|
+
- @equinor/fusion-framework@7.0.15
|
|
173
192
|
|
|
174
193
|
## 5.2.1
|
|
175
194
|
|
|
176
195
|
### Patch Changes
|
|
177
196
|
|
|
178
|
-
-
|
|
197
|
+
- [#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
198
|
|
|
180
|
-
|
|
199
|
+
provider from `createFrameworkProvider` was missing typehint of children
|
|
181
200
|
|
|
182
201
|
## 5.2.0
|
|
183
202
|
|
|
184
203
|
### Minor Changes
|
|
185
204
|
|
|
186
|
-
-
|
|
205
|
+
- [#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
206
|
|
|
188
|
-
|
|
207
|
+
- deprecate [AppModuleProvider.createApp](https://github.com/equinor/fusion-framework/blob/cf08d5ae3cef473e5025fd973a2a7a45a3b22dee/packages/modules/app/src/AppModuleProvider.ts#L171)
|
|
189
208
|
|
|
190
|
-
|
|
191
|
-
|
|
209
|
+
this should not create any breaking changes since apps was only created from provider.
|
|
210
|
+
if the class is still needed it can be imported:
|
|
192
211
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
212
|
+
```ts
|
|
213
|
+
import { App } from "@equinor/fusion-framework-module-app/app";
|
|
214
|
+
```
|
|
196
215
|
|
|
197
216
|
## 5.1.4
|
|
198
217
|
|
|
199
218
|
### Patch Changes
|
|
200
219
|
|
|
201
|
-
-
|
|
220
|
+
- [#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
221
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
222
|
+
- align all versions of typescript
|
|
223
|
+
- update types to build
|
|
224
|
+
- 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
225
|
|
|
207
|
-
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
226
|
+
- Updated dependencies [[`a7858a1c`](https://github.com/equinor/fusion-framework/commit/a7858a1c01542e2dc94370709f122b4b99c3219c)]:
|
|
227
|
+
- @equinor/fusion-framework@7.0.14
|
|
228
|
+
- @equinor/fusion-framework-react-module-context@6.0.9
|
|
229
|
+
- @equinor/fusion-framework-react-module-http@3.0.3
|
|
211
230
|
|
|
212
231
|
All notable changes to this project will be documented in this file.
|
|
213
232
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
@@ -224,14 +243,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
224
243
|
|
|
225
244
|
### Bug Fixes
|
|
226
245
|
|
|
227
|
-
-
|
|
246
|
+
- **react-framework:** expose useCurrentAppModules ([785d5eb](https://github.com/equinor/fusion-framework/commit/785d5eb08963d5ba1a007573879908b33e52fb3f))
|
|
228
247
|
|
|
229
248
|
## 5.1.0 (2023-05-22)
|
|
230
249
|
|
|
231
250
|
### Features
|
|
232
251
|
|
|
233
|
-
-
|
|
234
|
-
-
|
|
252
|
+
- **react-framework:** add hook for using current app modules ([2d65464](https://github.com/equinor/fusion-framework/commit/2d654647b84e03d1c6e322509885d8bfa2b9142f))
|
|
253
|
+
- **react-framework:** enhance `useCurrentApp` ([60026c9](https://github.com/equinor/fusion-framework/commit/60026c918c5033137cc359665074ea65c11a34fb))
|
|
235
254
|
|
|
236
255
|
## [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
256
|
|
|
@@ -321,7 +340,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
321
340
|
|
|
322
341
|
### Bug Fixes
|
|
323
342
|
|
|
324
|
-
-
|
|
343
|
+
- **useApps:** hiding hidden apps ([7f1354f](https://github.com/equinor/fusion-framework/commit/7f1354fd72cd7b02715e67b8274b4c8185397012))
|
|
325
344
|
|
|
326
345
|
## [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
346
|
|
|
@@ -335,18 +354,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
335
354
|
|
|
336
355
|
### ⚠ BREAKING CHANGES
|
|
337
356
|
|
|
338
|
-
-
|
|
357
|
+
- **utils/observable:** `useObservableInputState` and `useObservableSelectorState` now return full state, not only value
|
|
339
358
|
|
|
340
359
|
### Bug Fixes
|
|
341
360
|
|
|
342
|
-
-
|
|
343
|
-
-
|
|
361
|
+
- **utils/observable:** rename `next` to `value`from `useObservableState` ([4a08445](https://github.com/equinor/fusion-framework/commit/4a08445645af2488666564c2da716d32aa5e88c0))
|
|
362
|
+
- **utils/observable:** when subject in useObservableState reset state ([9c5c041](https://github.com/equinor/fusion-framework/commit/9c5c041d3d8c0b01bd507ea7f672711d9f5cb653))
|
|
344
363
|
|
|
345
364
|
## [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
365
|
|
|
347
366
|
### Features
|
|
348
367
|
|
|
349
|
-
-
|
|
368
|
+
- (framework): person provider ([d4a3936](https://github.com/equinor/fusion-framework/commit/d4a3936d6a60f093f71eac1dacc05cd60c7bf554))
|
|
350
369
|
|
|
351
370
|
## 3.1.4 (2023-02-02)
|
|
352
371
|
|
|
@@ -356,25 +375,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
356
375
|
|
|
357
376
|
### Bug Fixes
|
|
358
377
|
|
|
359
|
-
-
|
|
378
|
+
- **framework-react:** make params for useApps optional ([9e3fce1](https://github.com/equinor/fusion-framework/commit/9e3fce16cb1abfea8ae77239078efa2b1b0f52c2))
|
|
360
379
|
|
|
361
380
|
## [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
381
|
|
|
363
382
|
### Bug Fixes
|
|
364
383
|
|
|
365
|
-
-
|
|
384
|
+
- **framework-app:** exporting hooks useApps and useAppProvider ([fd62fb3](https://github.com/equinor/fusion-framework/commit/fd62fb35667730d6d1f915bab4fc0c9bd8f6152b))
|
|
366
385
|
|
|
367
386
|
## [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
387
|
|
|
369
388
|
### Bug Fixes
|
|
370
389
|
|
|
371
|
-
-
|
|
390
|
+
- **framework-app:** exporting hooks useApps and useAppProvider ([fd62fb3](https://github.com/equinor/fusion-framework/commit/fd62fb35667730d6d1f915bab4fc0c9bd8f6152b))
|
|
372
391
|
|
|
373
392
|
## 3.1.0 (2023-02-01)
|
|
374
393
|
|
|
375
394
|
### Features
|
|
376
395
|
|
|
377
|
-
-
|
|
396
|
+
- hooks useApps and useAppProvider ([bfa61a2](https://github.com/equinor/fusion-framework/commit/bfa61a2f01e70880f5a90e5184454ca40033ce71))
|
|
378
397
|
|
|
379
398
|
## 3.0.1 (2023-01-30)
|
|
380
399
|
|
|
@@ -392,7 +411,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
392
411
|
|
|
393
412
|
### Features
|
|
394
413
|
|
|
395
|
-
-
|
|
414
|
+
- **framework-react:** expose hook for signalr ([e807202](https://github.com/equinor/fusion-framework/commit/e807202e32e1031c7feb6e8ec1d30b3ed4336f35))
|
|
396
415
|
|
|
397
416
|
## 2.1.7 (2023-01-19)
|
|
398
417
|
|
|
@@ -426,7 +445,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
426
445
|
|
|
427
446
|
### Features
|
|
428
447
|
|
|
429
|
-
-
|
|
448
|
+
- **module-app:** allow clearing current app ([c7f4c14](https://github.com/equinor/fusion-framework/commit/c7f4c144c29c2c40df42eafcdaabfb8214e1e88d))
|
|
430
449
|
|
|
431
450
|
## 2.0.25 (2023-01-04)
|
|
432
451
|
|
|
@@ -460,7 +479,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
460
479
|
|
|
461
480
|
### Bug Fixes
|
|
462
481
|
|
|
463
|
-
-
|
|
482
|
+
- remove deprecated hooks ([af5586f](https://github.com/equinor/fusion-framework/commit/af5586f563e32c1e7e577a3e6837be610a135fc9))
|
|
464
483
|
|
|
465
484
|
## [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
485
|
|
|
@@ -482,7 +501,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
482
501
|
|
|
483
502
|
### Bug Fixes
|
|
484
503
|
|
|
485
|
-
-
|
|
504
|
+
- **framework-react:** update hooks ([cd8b0cd](https://github.com/equinor/fusion-framework/commit/cd8b0cd580cd90a35392ccefb8e306700e903ce1))
|
|
486
505
|
|
|
487
506
|
## [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
507
|
|
|
@@ -644,13 +663,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
644
663
|
|
|
645
664
|
### Bug Fixes
|
|
646
665
|
|
|
647
|
-
-
|
|
666
|
+
- **module-auth:** make http module await auth ([18a0ed9](https://github.com/equinor/fusion-framework/commit/18a0ed947e128bf1cdc86aa45d31e73c1f8c4bbb))
|
|
648
667
|
|
|
649
668
|
## 1.3.6 (2022-11-03)
|
|
650
669
|
|
|
651
670
|
### Bug Fixes
|
|
652
671
|
|
|
653
|
-
-
|
|
672
|
+
- deprecate useFramework from hooks ([d3d9b24](https://github.com/equinor/fusion-framework/commit/d3d9b24fe56937e2c9feba7de4228d8eb1cbbec5))
|
|
654
673
|
|
|
655
674
|
## [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
675
|
|
|
@@ -676,8 +695,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
676
695
|
|
|
677
696
|
### Features
|
|
678
697
|
|
|
679
|
-
-
|
|
680
|
-
-
|
|
698
|
+
- **framework-react:** create hook for current context ([4ee803f](https://github.com/equinor/fusion-framework/commit/4ee803fd0e457c3ec7414b35100e12186327fb6f))
|
|
699
|
+
- **framework-react:** react tooling for context ([b530114](https://github.com/equinor/fusion-framework/commit/b53011475a9c1a25b4e0756b66b57fd9b5711bbd))
|
|
681
700
|
|
|
682
701
|
## [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
702
|
|
|
@@ -687,7 +706,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
687
706
|
|
|
688
707
|
### Features
|
|
689
708
|
|
|
690
|
-
-
|
|
709
|
+
- **framework-react:** expose app hooks ([46c1ea2](https://github.com/equinor/fusion-framework/commit/46c1ea28f88cb3dd0ff350a589850c5cd9a45a88))
|
|
691
710
|
|
|
692
711
|
## 1.1.1 (2022-11-01)
|
|
693
712
|
|
|
@@ -697,7 +716,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
697
716
|
|
|
698
717
|
### Features
|
|
699
718
|
|
|
700
|
-
-
|
|
719
|
+
- :sparkles: expose a single element for setup framework ([154e09f](https://github.com/equinor/fusion-framework/commit/154e09f027b7dea3015eb860fa530ce0f45dfa61))
|
|
701
720
|
|
|
702
721
|
## 1.0.17 (2022-10-27)
|
|
703
722
|
|
|
@@ -759,7 +778,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
759
778
|
|
|
760
779
|
### Bug Fixes
|
|
761
780
|
|
|
762
|
-
-
|
|
781
|
+
- update typings and linting ([7d2056b](https://github.com/equinor/fusion-framework/commit/7d2056b7866850b7efdfd4567385b5dbbcdf8761))
|
|
763
782
|
|
|
764
783
|
## [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
784
|
|
|
@@ -781,21 +800,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
781
800
|
|
|
782
801
|
### ⚠ BREAKING CHANGES
|
|
783
802
|
|
|
784
|
-
-
|
|
803
|
+
- **framework-react:** config is now object
|
|
785
804
|
|
|
786
805
|
### Features
|
|
787
806
|
|
|
788
|
-
-
|
|
807
|
+
- **framework-react:** update init ([f3e6e2b](https://github.com/equinor/fusion-framework/commit/f3e6e2ba7058b4b515ff0838516fe44705bfdf5c))
|
|
789
808
|
|
|
790
809
|
## [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
810
|
|
|
792
811
|
### ⚠ BREAKING CHANGES
|
|
793
812
|
|
|
794
|
-
-
|
|
813
|
+
- **framework-react:** config is now object
|
|
795
814
|
|
|
796
815
|
### Features
|
|
797
816
|
|
|
798
|
-
-
|
|
817
|
+
- **framework-react:** update init ([f3e6e2b](https://github.com/equinor/fusion-framework/commit/f3e6e2ba7058b4b515ff0838516fe44705bfdf5c))
|
|
799
818
|
|
|
800
819
|
## [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
820
|
|
|
@@ -813,7 +832,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
813
832
|
|
|
814
833
|
### Features
|
|
815
834
|
|
|
816
|
-
-
|
|
835
|
+
- **framework-react:** expose rect module http ([f6ab26f](https://github.com/equinor/fusion-framework/commit/f6ab26f2c4463ce9d0996027a48eb5ad9d94779a))
|
|
817
836
|
|
|
818
837
|
## [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
838
|
|
|
@@ -859,7 +878,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
859
878
|
|
|
860
879
|
### Bug Fixes
|
|
861
880
|
|
|
862
|
-
-
|
|
881
|
+
- **framework-react:** remove legacy path ([fa82188](https://github.com/equinor/fusion-framework/commit/fa82188a7471a82fafacf26a1fc50a1703fe3944))
|
|
863
882
|
|
|
864
883
|
## [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
884
|
|
|
@@ -897,7 +916,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
897
916
|
|
|
898
917
|
### Features
|
|
899
918
|
|
|
900
|
-
-
|
|
919
|
+
- **framework:** allow addtional modules ([d8d697b](https://github.com/equinor/fusion-framework/commit/d8d697b6fa8ea5c8130b324195d39f354d2fa768))
|
|
901
920
|
|
|
902
921
|
## [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
922
|
|
|
@@ -975,19 +994,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
975
994
|
|
|
976
995
|
### Bug Fixes
|
|
977
996
|
|
|
978
|
-
-
|
|
997
|
+
- **framework-react:** export Fusion ([94b150f](https://github.com/equinor/fusion-framework/commit/94b150ff9d1b5ad27c12f19160371edb464c88de))
|
|
979
998
|
|
|
980
999
|
# 0.1.0 (2022-02-07)
|
|
981
1000
|
|
|
982
1001
|
### Bug Fixes
|
|
983
1002
|
|
|
984
|
-
-
|
|
985
|
-
-
|
|
986
|
-
-
|
|
987
|
-
-
|
|
988
|
-
-
|
|
1003
|
+
- **framework-react:** typehint ([75d3793](https://github.com/equinor/fusion-framework/commit/75d37936aca967d17d192977337bae99f6aea277))
|
|
1004
|
+
- **framework-react:** update name change ([e2382b7](https://github.com/equinor/fusion-framework/commit/e2382b70a7d7a8cd103cb33c2a839c5a34e315c9))
|
|
1005
|
+
- memo http clients ([f876acb](https://github.com/equinor/fusion-framework/commit/f876acb11e19d7802a28f58ce7d70bc76f777c5e))
|
|
1006
|
+
- **react:** fix typing ([9a2a51d](https://github.com/equinor/fusion-framework/commit/9a2a51dd76ed68ef95ef5c932555ae31165f16c2))
|
|
1007
|
+
- shared context ([f00732e](https://github.com/equinor/fusion-framework/commit/f00732ee3c1016be812204c7cf7b0205b2322075))
|
|
989
1008
|
|
|
990
1009
|
### Features
|
|
991
1010
|
|
|
992
|
-
-
|
|
993
|
-
-
|
|
1011
|
+
- add package for creating framework in react ([3b6858d](https://github.com/equinor/fusion-framework/commit/3b6858dc9f6b8c0efd6aa51275693e068ac72bef))
|
|
1012
|
+
- **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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCurrentApp.js","sourceRoot":"","sources":["../../../src/app/useCurrentApp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAKtE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAU/C,MAAM,CAAC,MAAM,aAAa,GAAG,GAK3B,EAAE;IACA,MAAM,QAAQ,GAAG,YAAY,EAAe,CAAC,OAAO,CAAC,GAAG,CAAC;IACzD,IAAI,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"useCurrentApp.js","sourceRoot":"","sources":["../../../src/app/useCurrentApp.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AAKtE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAU/C,MAAM,CAAC,MAAM,aAAa,GAAG,GAK3B,EAAE;IACA,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;IACD,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,CAAC,CAAC;IACjE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,kBAAkB,CAAC,WAAW,CAAC,CAAC;IACzD,OAAO;QACH,UAAU,EAAE,KAAmC;QAC/C,aAAa,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC;QAC/E,eAAe,EAAE,OAAO,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC;QACnF,KAAK;KACR,CAAC;AACN,CAAC,CAAC;AAEF,eAAe,aAAa,CAAC"}
|