@module-federation/bridge-vue3 0.0.0-fix-lazy-comile-20250925082726
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 +693 -0
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/index.cjs +5 -0
- package/dist/index.d.ts +60 -0
- package/dist/index.js +2528 -0
- package/dist/vite.svg +1 -0
- package/package.json +55 -0
- package/project.json +15 -0
- package/src/assets/vue.svg +1 -0
- package/src/components/HelloWorld.vue +38 -0
- package/src/create.ts +79 -0
- package/src/index.ts +3 -0
- package/src/provider.ts +109 -0
- package/src/remoteApp.tsx +115 -0
- package/src/style.css +79 -0
- package/src/utils.ts +3 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.json +41 -0
- package/tsconfig.node.json +11 -0
- package/vite.config.ts +30 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,693 @@
|
|
|
1
|
+
# @module-federation/bridge-vue3
|
|
2
|
+
|
|
3
|
+
## 0.0.0-fix-lazy-comile-20250925082726
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e89e972]
|
|
8
|
+
- Updated dependencies [37346d4]
|
|
9
|
+
- @module-federation/runtime@0.0.0-fix-lazy-comile-20250925082726
|
|
10
|
+
- @module-federation/sdk@0.0.0-fix-lazy-comile-20250925082726
|
|
11
|
+
- @module-federation/bridge-shared@0.0.0-fix-lazy-comile-20250925082726
|
|
12
|
+
|
|
13
|
+
## 0.19.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @module-federation/sdk@0.19.1
|
|
19
|
+
- @module-federation/runtime@0.19.1
|
|
20
|
+
- @module-federation/bridge-shared@0.19.1
|
|
21
|
+
|
|
22
|
+
## 0.19.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- @module-federation/runtime@0.19.0
|
|
27
|
+
- @module-federation/sdk@0.19.0
|
|
28
|
+
- @module-federation/bridge-shared@0.19.0
|
|
29
|
+
|
|
30
|
+
## 0.18.4
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies [8061f8c]
|
|
35
|
+
- @module-federation/runtime@0.18.4
|
|
36
|
+
- @module-federation/sdk@0.18.4
|
|
37
|
+
- @module-federation/bridge-shared@0.18.4
|
|
38
|
+
|
|
39
|
+
## 0.18.3
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- @module-federation/runtime@0.18.3
|
|
44
|
+
- @module-federation/sdk@0.18.3
|
|
45
|
+
- @module-federation/bridge-shared@0.18.3
|
|
46
|
+
|
|
47
|
+
## 0.18.2
|
|
48
|
+
|
|
49
|
+
### Patch Changes
|
|
50
|
+
|
|
51
|
+
- @module-federation/runtime@0.18.2
|
|
52
|
+
- @module-federation/sdk@0.18.2
|
|
53
|
+
- @module-federation/bridge-shared@0.18.2
|
|
54
|
+
|
|
55
|
+
## 0.18.1
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [0bf3a3a]
|
|
60
|
+
- Updated dependencies [7dbc25d]
|
|
61
|
+
- @module-federation/sdk@0.18.1
|
|
62
|
+
- @module-federation/runtime@0.18.1
|
|
63
|
+
- @module-federation/bridge-shared@0.18.1
|
|
64
|
+
|
|
65
|
+
## 0.18.0
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- Updated dependencies [609d477]
|
|
70
|
+
- Updated dependencies [f6381e6]
|
|
71
|
+
- @module-federation/runtime@0.18.0
|
|
72
|
+
- @module-federation/sdk@0.18.0
|
|
73
|
+
- @module-federation/bridge-shared@0.18.0
|
|
74
|
+
|
|
75
|
+
## 0.17.1
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- a7cf276: chore: upgrade NX to 21.2.3, Storybook to 9.0.9, and TypeScript to 5.8.3
|
|
80
|
+
|
|
81
|
+
- Upgraded NX from 21.0.3 to 21.2.3 with workspace configuration updates
|
|
82
|
+
- Migrated Storybook from 8.3.5 to 9.0.9 with updated configurations and automigrations
|
|
83
|
+
- Upgraded TypeScript from 5.7.3 to 5.8.3 with compatibility fixes
|
|
84
|
+
- Fixed package exports and type declaration paths across all packages
|
|
85
|
+
- Resolved module resolution issues and TypeScript compatibility problems
|
|
86
|
+
- Updated build configurations and dependencies to support latest versions
|
|
87
|
+
|
|
88
|
+
- Updated dependencies [2428be0]
|
|
89
|
+
- Updated dependencies [a7cf276]
|
|
90
|
+
- Updated dependencies [d31a326]
|
|
91
|
+
- @module-federation/runtime@0.17.1
|
|
92
|
+
- @module-federation/sdk@0.17.1
|
|
93
|
+
- @module-federation/bridge-shared@0.17.1
|
|
94
|
+
|
|
95
|
+
## 0.17.0
|
|
96
|
+
|
|
97
|
+
### Minor Changes
|
|
98
|
+
|
|
99
|
+
- e874c64: refactor(vue3-bridge): rename createRemoteComponent as createRemoteAppComponent
|
|
100
|
+
|
|
101
|
+
### Patch Changes
|
|
102
|
+
|
|
103
|
+
- Updated dependencies [3f736b6]
|
|
104
|
+
- Updated dependencies [3f736b6]
|
|
105
|
+
- Updated dependencies [3f736b6]
|
|
106
|
+
- Updated dependencies [3f736b6]
|
|
107
|
+
- @module-federation/runtime@0.17.0
|
|
108
|
+
- @module-federation/sdk@0.17.0
|
|
109
|
+
- @module-federation/bridge-shared@0.17.0
|
|
110
|
+
|
|
111
|
+
## 0.16.0
|
|
112
|
+
|
|
113
|
+
### Patch Changes
|
|
114
|
+
|
|
115
|
+
- Updated dependencies [1485fcf]
|
|
116
|
+
- @module-federation/sdk@0.16.0
|
|
117
|
+
- @module-federation/runtime@0.16.0
|
|
118
|
+
- @module-federation/bridge-shared@0.16.0
|
|
119
|
+
|
|
120
|
+
## 0.15.0
|
|
121
|
+
|
|
122
|
+
### Patch Changes
|
|
123
|
+
|
|
124
|
+
- @module-federation/runtime@0.15.0
|
|
125
|
+
- @module-federation/sdk@0.15.0
|
|
126
|
+
- @module-federation/bridge-shared@0.15.0
|
|
127
|
+
|
|
128
|
+
## 0.14.3
|
|
129
|
+
|
|
130
|
+
### Patch Changes
|
|
131
|
+
|
|
132
|
+
- @module-federation/runtime@0.14.3
|
|
133
|
+
- @module-federation/sdk@0.14.3
|
|
134
|
+
- @module-federation/bridge-shared@0.14.3
|
|
135
|
+
|
|
136
|
+
## 0.14.2
|
|
137
|
+
|
|
138
|
+
### Patch Changes
|
|
139
|
+
|
|
140
|
+
- @module-federation/runtime@0.14.2
|
|
141
|
+
- @module-federation/sdk@0.14.2
|
|
142
|
+
- @module-federation/bridge-shared@0.14.2
|
|
143
|
+
|
|
144
|
+
## 0.14.1
|
|
145
|
+
|
|
146
|
+
### Patch Changes
|
|
147
|
+
|
|
148
|
+
- @module-federation/runtime@0.14.1
|
|
149
|
+
- @module-federation/sdk@0.14.1
|
|
150
|
+
- @module-federation/bridge-shared@0.14.1
|
|
151
|
+
|
|
152
|
+
## 0.14.0
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- 677aac9: vue.js has router option added to the vue3-bridge
|
|
157
|
+
- Updated dependencies [82b8cac]
|
|
158
|
+
- Updated dependencies [677aac9]
|
|
159
|
+
- @module-federation/sdk@0.14.0
|
|
160
|
+
- @module-federation/bridge-shared@0.14.0
|
|
161
|
+
- @module-federation/runtime@0.14.0
|
|
162
|
+
|
|
163
|
+
## 0.13.1
|
|
164
|
+
|
|
165
|
+
### Patch Changes
|
|
166
|
+
|
|
167
|
+
- @module-federation/runtime@0.13.1
|
|
168
|
+
- @module-federation/sdk@0.13.1
|
|
169
|
+
- @module-federation/bridge-shared@0.13.1
|
|
170
|
+
|
|
171
|
+
## 0.13.0
|
|
172
|
+
|
|
173
|
+
### Patch Changes
|
|
174
|
+
|
|
175
|
+
- 38f324f: Disable live bindings on cjs builds of the runtime packages
|
|
176
|
+
- Updated dependencies [38f324f]
|
|
177
|
+
- @module-federation/bridge-shared@0.13.0
|
|
178
|
+
- @module-federation/runtime@0.13.0
|
|
179
|
+
- @module-federation/sdk@0.13.0
|
|
180
|
+
|
|
181
|
+
## 0.12.0
|
|
182
|
+
|
|
183
|
+
### Patch Changes
|
|
184
|
+
|
|
185
|
+
- Updated dependencies [f4fb242]
|
|
186
|
+
- Updated dependencies [c399b9a]
|
|
187
|
+
- Updated dependencies [ef96c4d]
|
|
188
|
+
- Updated dependencies [f4fb242]
|
|
189
|
+
- @module-federation/runtime@0.12.0
|
|
190
|
+
- @module-federation/sdk@0.12.0
|
|
191
|
+
- @module-federation/bridge-shared@0.12.0
|
|
192
|
+
|
|
193
|
+
## 0.11.4
|
|
194
|
+
|
|
195
|
+
### Patch Changes
|
|
196
|
+
|
|
197
|
+
- Updated dependencies [64a2bc1]
|
|
198
|
+
- Updated dependencies [c14842f]
|
|
199
|
+
- @module-federation/sdk@0.11.4
|
|
200
|
+
- @module-federation/runtime@0.11.4
|
|
201
|
+
- @module-federation/bridge-shared@0.11.4
|
|
202
|
+
|
|
203
|
+
## 0.11.3
|
|
204
|
+
|
|
205
|
+
### Patch Changes
|
|
206
|
+
|
|
207
|
+
- @module-federation/runtime@0.11.3
|
|
208
|
+
- @module-federation/sdk@0.11.3
|
|
209
|
+
- @module-federation/bridge-shared@0.11.3
|
|
210
|
+
|
|
211
|
+
## 0.11.2
|
|
212
|
+
|
|
213
|
+
### Patch Changes
|
|
214
|
+
|
|
215
|
+
- Updated dependencies [047857b]
|
|
216
|
+
- @module-federation/sdk@0.11.2
|
|
217
|
+
- @module-federation/runtime@0.11.2
|
|
218
|
+
- @module-federation/bridge-shared@0.11.2
|
|
219
|
+
|
|
220
|
+
## 0.11.1
|
|
221
|
+
|
|
222
|
+
### Patch Changes
|
|
223
|
+
|
|
224
|
+
- @module-federation/runtime@0.11.1
|
|
225
|
+
- @module-federation/sdk@0.11.1
|
|
226
|
+
- @module-federation/bridge-shared@0.11.1
|
|
227
|
+
|
|
228
|
+
## 0.11.0
|
|
229
|
+
|
|
230
|
+
### Patch Changes
|
|
231
|
+
|
|
232
|
+
- Updated dependencies [fce107e]
|
|
233
|
+
- @module-federation/sdk@0.11.0
|
|
234
|
+
- @module-federation/runtime@0.11.0
|
|
235
|
+
- @module-federation/bridge-shared@0.11.0
|
|
236
|
+
|
|
237
|
+
## 0.10.0
|
|
238
|
+
|
|
239
|
+
### Patch Changes
|
|
240
|
+
|
|
241
|
+
- 6bc13cf: Fixed several issues:
|
|
242
|
+
|
|
243
|
+
1. Resolved inconsistencies in naming between `name` and `moduleName` to align with the type defined in `packages/bridge/bridge-shared/src/type.ts`. This also fixed an issue where `name` was being passed to the remote component, and if it was `<router-view>`, it caused rendering issues.
|
|
244
|
+
2. Issue: When passing props from a Vue 3 host application to a Vue 3 remote application created with `createRemoteComponent`, the props were being applied as attributes on the root container instead of being passed to the remote component.
|
|
245
|
+
Fix: Set `inheritAttrs: false` in `remoteApp.tsx` and explicitly pass all attributes to the remote component using `useAttrs()`.
|
|
246
|
+
3. Added a `rootAttrs` parameter to `createRemoteComponent` to allow passing attributes to the root container where the remote application is mounted. This enables setting classes, identifiers, and other attributes for the container element.
|
|
247
|
+
|
|
248
|
+
- Updated dependencies [0f71cbc]
|
|
249
|
+
- Updated dependencies [22fcccd]
|
|
250
|
+
- @module-federation/sdk@0.10.0
|
|
251
|
+
- @module-federation/runtime@0.10.0
|
|
252
|
+
- @module-federation/bridge-shared@0.10.0
|
|
253
|
+
|
|
254
|
+
## 0.9.1
|
|
255
|
+
|
|
256
|
+
### Patch Changes
|
|
257
|
+
|
|
258
|
+
- Updated dependencies [35d925b]
|
|
259
|
+
- Updated dependencies [35d925b]
|
|
260
|
+
- Updated dependencies [8acd217]
|
|
261
|
+
- @module-federation/sdk@0.9.1
|
|
262
|
+
- @module-federation/runtime@0.9.1
|
|
263
|
+
- @module-federation/bridge-shared@0.9.1
|
|
264
|
+
|
|
265
|
+
## 0.9.0
|
|
266
|
+
|
|
267
|
+
### Patch Changes
|
|
268
|
+
|
|
269
|
+
- @module-federation/runtime@0.9.0
|
|
270
|
+
- @module-federation/sdk@0.9.0
|
|
271
|
+
- @module-federation/bridge-shared@0.9.0
|
|
272
|
+
|
|
273
|
+
## 0.8.12
|
|
274
|
+
|
|
275
|
+
### Patch Changes
|
|
276
|
+
|
|
277
|
+
- @module-federation/runtime@0.8.12
|
|
278
|
+
- @module-federation/sdk@0.8.12
|
|
279
|
+
- @module-federation/bridge-shared@0.8.12
|
|
280
|
+
|
|
281
|
+
## 0.8.11
|
|
282
|
+
|
|
283
|
+
### Patch Changes
|
|
284
|
+
|
|
285
|
+
- @module-federation/runtime@0.8.11
|
|
286
|
+
- @module-federation/sdk@0.8.11
|
|
287
|
+
- @module-federation/bridge-shared@0.8.11
|
|
288
|
+
|
|
289
|
+
## 0.8.10
|
|
290
|
+
|
|
291
|
+
### Patch Changes
|
|
292
|
+
|
|
293
|
+
- f141396: fix(vue3-bridge): bridge-vue3 parameter lossing issue
|
|
294
|
+
- @module-federation/runtime@0.8.10
|
|
295
|
+
- @module-federation/sdk@0.8.10
|
|
296
|
+
- @module-federation/bridge-shared@0.8.10
|
|
297
|
+
|
|
298
|
+
## 0.8.9
|
|
299
|
+
|
|
300
|
+
### Patch Changes
|
|
301
|
+
|
|
302
|
+
- @module-federation/runtime@0.8.9
|
|
303
|
+
- @module-federation/sdk@0.8.9
|
|
304
|
+
- @module-federation/bridge-shared@0.8.9
|
|
305
|
+
|
|
306
|
+
## 0.8.8
|
|
307
|
+
|
|
308
|
+
### Patch Changes
|
|
309
|
+
|
|
310
|
+
- @module-federation/runtime@0.8.8
|
|
311
|
+
- @module-federation/sdk@0.8.8
|
|
312
|
+
- @module-federation/bridge-shared@0.8.8
|
|
313
|
+
|
|
314
|
+
## 0.8.7
|
|
315
|
+
|
|
316
|
+
### Patch Changes
|
|
317
|
+
|
|
318
|
+
- Updated dependencies [835b09c]
|
|
319
|
+
- Updated dependencies [f573ad0]
|
|
320
|
+
- Updated dependencies [336f3d8]
|
|
321
|
+
- Updated dependencies [4fd33fb]
|
|
322
|
+
- @module-federation/sdk@0.8.7
|
|
323
|
+
- @module-federation/runtime@0.8.7
|
|
324
|
+
- @module-federation/bridge-shared@0.8.7
|
|
325
|
+
|
|
326
|
+
## 0.8.6
|
|
327
|
+
|
|
328
|
+
### Patch Changes
|
|
329
|
+
|
|
330
|
+
- 85e7482: fix(bridge-react): change all logs from info to debug in all bridge packages
|
|
331
|
+
- @module-federation/runtime@0.8.6
|
|
332
|
+
- @module-federation/sdk@0.8.6
|
|
333
|
+
- @module-federation/bridge-shared@0.8.6
|
|
334
|
+
|
|
335
|
+
## 0.8.5
|
|
336
|
+
|
|
337
|
+
### Patch Changes
|
|
338
|
+
|
|
339
|
+
- d161cbe: 1. Added type annotations for the argument in the `createBridgeComponent` function. 2. Added passing the instance of the created Vue-application to `appOptions` so that necessary plugins can be registered in this callback. 3. Made `router` returned from `appOptions` optional. 4. Fixed issues reported by TypeScript and ESLint, including allowing `beforeBridgeRenderRes` to be a promise. 5. Updated the documentation.
|
|
340
|
+
- @module-federation/runtime@0.8.5
|
|
341
|
+
- @module-federation/sdk@0.8.5
|
|
342
|
+
- @module-federation/bridge-shared@0.8.5
|
|
343
|
+
|
|
344
|
+
## 0.8.4
|
|
345
|
+
|
|
346
|
+
### Patch Changes
|
|
347
|
+
|
|
348
|
+
- @module-federation/runtime@0.8.4
|
|
349
|
+
- @module-federation/sdk@0.8.4
|
|
350
|
+
- @module-federation/bridge-shared@0.8.4
|
|
351
|
+
|
|
352
|
+
## 0.8.3
|
|
353
|
+
|
|
354
|
+
### Patch Changes
|
|
355
|
+
|
|
356
|
+
- Updated dependencies [f817674]
|
|
357
|
+
- Updated dependencies [8e172c8]
|
|
358
|
+
- @module-federation/runtime@0.8.3
|
|
359
|
+
- @module-federation/sdk@0.8.3
|
|
360
|
+
- @module-federation/bridge-shared@0.8.3
|
|
361
|
+
|
|
362
|
+
## 0.8.2
|
|
363
|
+
|
|
364
|
+
### Patch Changes
|
|
365
|
+
|
|
366
|
+
- Updated dependencies [fa7a0bd]
|
|
367
|
+
- @module-federation/runtime@0.8.2
|
|
368
|
+
- @module-federation/sdk@0.8.2
|
|
369
|
+
- @module-federation/bridge-shared@0.8.2
|
|
370
|
+
|
|
371
|
+
## 0.8.1
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- @module-federation/runtime@0.8.1
|
|
376
|
+
- @module-federation/sdk@0.8.1
|
|
377
|
+
- @module-federation/bridge-shared@0.8.1
|
|
378
|
+
|
|
379
|
+
## 0.8.0
|
|
380
|
+
|
|
381
|
+
### Minor Changes
|
|
382
|
+
|
|
383
|
+
- 734df18: Added the ability to pass parameters to `defineAsyncComponent`, which solves the following issues:
|
|
384
|
+
- Enables control over fallback components and their display parameters;
|
|
385
|
+
- Improves compatibility with Nuxt by allowing configuration of the `suspensible` parameter;
|
|
386
|
+
- Eliminates the package requirement to `Configure your bundler to alias "vue" to "vue/dist/vue.esm-bundler.js"`.
|
|
387
|
+
|
|
388
|
+
### Patch Changes
|
|
389
|
+
|
|
390
|
+
- @module-federation/runtime@0.8.0
|
|
391
|
+
- @module-federation/sdk@0.8.0
|
|
392
|
+
- @module-federation/bridge-shared@0.8.0
|
|
393
|
+
|
|
394
|
+
## 0.7.7
|
|
395
|
+
|
|
396
|
+
### Patch Changes
|
|
397
|
+
|
|
398
|
+
- Updated dependencies [a960c88]
|
|
399
|
+
- Updated dependencies [e26d107]
|
|
400
|
+
- @module-federation/runtime@0.7.7
|
|
401
|
+
- @module-federation/sdk@0.7.7
|
|
402
|
+
- @module-federation/bridge-shared@0.7.7
|
|
403
|
+
|
|
404
|
+
## 0.7.6
|
|
405
|
+
|
|
406
|
+
### Patch Changes
|
|
407
|
+
|
|
408
|
+
- @module-federation/runtime@0.7.6
|
|
409
|
+
- @module-federation/sdk@0.7.6
|
|
410
|
+
- @module-federation/bridge-shared@0.7.6
|
|
411
|
+
|
|
412
|
+
## 0.7.5
|
|
413
|
+
|
|
414
|
+
### Patch Changes
|
|
415
|
+
|
|
416
|
+
- @module-federation/runtime@0.7.5
|
|
417
|
+
- @module-federation/sdk@0.7.5
|
|
418
|
+
- @module-federation/bridge-shared@0.7.5
|
|
419
|
+
|
|
420
|
+
## 0.7.4
|
|
421
|
+
|
|
422
|
+
### Patch Changes
|
|
423
|
+
|
|
424
|
+
- ff8ce29: feat: feat: support lifecycyle hooks in module-deferation bridge
|
|
425
|
+
- Updated dependencies [ff8ce29]
|
|
426
|
+
- @module-federation/runtime@0.7.4
|
|
427
|
+
- @module-federation/sdk@0.7.4
|
|
428
|
+
- @module-federation/bridge-shared@0.7.4
|
|
429
|
+
|
|
430
|
+
## 0.7.3
|
|
431
|
+
|
|
432
|
+
### Patch Changes
|
|
433
|
+
|
|
434
|
+
- Updated dependencies [4ab9295]
|
|
435
|
+
- @module-federation/sdk@0.7.3
|
|
436
|
+
- @module-federation/bridge-shared@0.7.3
|
|
437
|
+
|
|
438
|
+
## 0.7.2
|
|
439
|
+
|
|
440
|
+
### Patch Changes
|
|
441
|
+
|
|
442
|
+
- @module-federation/sdk@0.7.2
|
|
443
|
+
- @module-federation/bridge-shared@0.7.2
|
|
444
|
+
|
|
445
|
+
## 0.7.1
|
|
446
|
+
|
|
447
|
+
### Patch Changes
|
|
448
|
+
|
|
449
|
+
- Updated dependencies [6db4c5f]
|
|
450
|
+
- @module-federation/sdk@0.7.1
|
|
451
|
+
- @module-federation/bridge-shared@0.7.1
|
|
452
|
+
|
|
453
|
+
## 0.7.0
|
|
454
|
+
|
|
455
|
+
### Minor Changes
|
|
456
|
+
|
|
457
|
+
- 3942740: add license information
|
|
458
|
+
- Updated dependencies [879ad87]
|
|
459
|
+
- Updated dependencies [4eb09e7]
|
|
460
|
+
- Updated dependencies [3942740]
|
|
461
|
+
- Updated dependencies [206b56d]
|
|
462
|
+
- @module-federation/sdk@0.7.0
|
|
463
|
+
- @module-federation/bridge-shared@0.7.0
|
|
464
|
+
|
|
465
|
+
## 0.6.16
|
|
466
|
+
|
|
467
|
+
### Patch Changes
|
|
468
|
+
|
|
469
|
+
- Updated dependencies [f779188]
|
|
470
|
+
- Updated dependencies [024df60]
|
|
471
|
+
- @module-federation/sdk@0.6.16
|
|
472
|
+
- @module-federation/bridge-shared@0.6.16
|
|
473
|
+
|
|
474
|
+
## 0.6.15
|
|
475
|
+
|
|
476
|
+
### Patch Changes
|
|
477
|
+
|
|
478
|
+
- @module-federation/sdk@0.6.15
|
|
479
|
+
- @module-federation/bridge-shared@0.6.15
|
|
480
|
+
|
|
481
|
+
## 0.6.14
|
|
482
|
+
|
|
483
|
+
### Patch Changes
|
|
484
|
+
|
|
485
|
+
- ad605d2: chore: unified logger
|
|
486
|
+
- Updated dependencies [ad605d2]
|
|
487
|
+
- @module-federation/bridge-shared@0.6.14
|
|
488
|
+
- @module-federation/sdk@0.6.14
|
|
489
|
+
|
|
490
|
+
## 0.6.13
|
|
491
|
+
|
|
492
|
+
### Patch Changes
|
|
493
|
+
|
|
494
|
+
- @module-federation/bridge-shared@0.6.13
|
|
495
|
+
|
|
496
|
+
## 0.6.12
|
|
497
|
+
|
|
498
|
+
### Patch Changes
|
|
499
|
+
|
|
500
|
+
- @module-federation/bridge-shared@0.6.12
|
|
501
|
+
|
|
502
|
+
## 0.6.11
|
|
503
|
+
|
|
504
|
+
### Patch Changes
|
|
505
|
+
|
|
506
|
+
- @module-federation/bridge-shared@0.6.11
|
|
507
|
+
|
|
508
|
+
## 0.6.10
|
|
509
|
+
|
|
510
|
+
### Patch Changes
|
|
511
|
+
|
|
512
|
+
- @module-federation/bridge-shared@0.6.10
|
|
513
|
+
|
|
514
|
+
## 0.6.9
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- @module-federation/bridge-shared@0.6.9
|
|
519
|
+
|
|
520
|
+
## 0.6.8
|
|
521
|
+
|
|
522
|
+
### Patch Changes
|
|
523
|
+
|
|
524
|
+
- @module-federation/bridge-shared@0.6.8
|
|
525
|
+
|
|
526
|
+
## 0.6.7
|
|
527
|
+
|
|
528
|
+
### Patch Changes
|
|
529
|
+
|
|
530
|
+
- @module-federation/bridge-shared@0.6.7
|
|
531
|
+
|
|
532
|
+
## 0.6.6
|
|
533
|
+
|
|
534
|
+
### Patch Changes
|
|
535
|
+
|
|
536
|
+
- @module-federation/bridge-shared@0.6.6
|
|
537
|
+
|
|
538
|
+
## 0.6.5
|
|
539
|
+
|
|
540
|
+
### Patch Changes
|
|
541
|
+
|
|
542
|
+
- @module-federation/bridge-shared@0.6.5
|
|
543
|
+
|
|
544
|
+
## 0.6.4
|
|
545
|
+
|
|
546
|
+
### Patch Changes
|
|
547
|
+
|
|
548
|
+
- @module-federation/bridge-shared@0.6.4
|
|
549
|
+
|
|
550
|
+
## 0.6.3
|
|
551
|
+
|
|
552
|
+
### Patch Changes
|
|
553
|
+
|
|
554
|
+
- @module-federation/bridge-shared@0.6.3
|
|
555
|
+
|
|
556
|
+
## 0.6.2
|
|
557
|
+
|
|
558
|
+
### Patch Changes
|
|
559
|
+
|
|
560
|
+
- @module-federation/bridge-shared@0.6.2
|
|
561
|
+
|
|
562
|
+
## 0.6.1
|
|
563
|
+
|
|
564
|
+
### Patch Changes
|
|
565
|
+
|
|
566
|
+
- @module-federation/bridge-shared@0.6.1
|
|
567
|
+
|
|
568
|
+
## 0.6.0
|
|
569
|
+
|
|
570
|
+
### Patch Changes
|
|
571
|
+
|
|
572
|
+
- @module-federation/bridge-shared@0.6.0
|
|
573
|
+
|
|
574
|
+
## 0.5.2
|
|
575
|
+
|
|
576
|
+
### Patch Changes
|
|
577
|
+
|
|
578
|
+
- @module-federation/bridge-shared@0.5.2
|
|
579
|
+
|
|
580
|
+
## 0.5.1
|
|
581
|
+
|
|
582
|
+
### Patch Changes
|
|
583
|
+
|
|
584
|
+
- @module-federation/bridge-shared@0.5.1
|
|
585
|
+
|
|
586
|
+
## 0.5.0
|
|
587
|
+
|
|
588
|
+
### Patch Changes
|
|
589
|
+
|
|
590
|
+
- 49d6135: feat(@module-federation/bridge): enhance Bridge capabilities and fix some issues
|
|
591
|
+
- Updated dependencies [49d6135]
|
|
592
|
+
- @module-federation/bridge-shared@0.5.0
|
|
593
|
+
|
|
594
|
+
## 0.4.0
|
|
595
|
+
|
|
596
|
+
### Patch Changes
|
|
597
|
+
|
|
598
|
+
- @module-federation/bridge-shared@0.4.0
|
|
599
|
+
|
|
600
|
+
## 0.3.5
|
|
601
|
+
|
|
602
|
+
### Patch Changes
|
|
603
|
+
|
|
604
|
+
- @module-federation/bridge-shared@0.3.5
|
|
605
|
+
|
|
606
|
+
## 0.3.4
|
|
607
|
+
|
|
608
|
+
### Patch Changes
|
|
609
|
+
|
|
610
|
+
- @module-federation/bridge-shared@0.3.4
|
|
611
|
+
|
|
612
|
+
## 0.3.3
|
|
613
|
+
|
|
614
|
+
### Patch Changes
|
|
615
|
+
|
|
616
|
+
- @module-federation/bridge-shared@0.3.3
|
|
617
|
+
|
|
618
|
+
## 0.3.2
|
|
619
|
+
|
|
620
|
+
### Patch Changes
|
|
621
|
+
|
|
622
|
+
- @module-federation/bridge-shared@0.3.2
|
|
623
|
+
|
|
624
|
+
## 0.3.1
|
|
625
|
+
|
|
626
|
+
### Patch Changes
|
|
627
|
+
|
|
628
|
+
- @module-federation/bridge-shared@0.3.1
|
|
629
|
+
|
|
630
|
+
## 0.3.0
|
|
631
|
+
|
|
632
|
+
### Patch Changes
|
|
633
|
+
|
|
634
|
+
- @module-federation/bridge-shared@0.3.0
|
|
635
|
+
|
|
636
|
+
## 0.2.8
|
|
637
|
+
|
|
638
|
+
### Patch Changes
|
|
639
|
+
|
|
640
|
+
- @module-federation/bridge-shared@0.2.8
|
|
641
|
+
|
|
642
|
+
## 0.2.7
|
|
643
|
+
|
|
644
|
+
### Patch Changes
|
|
645
|
+
|
|
646
|
+
- @module-federation/bridge-shared@0.2.7
|
|
647
|
+
|
|
648
|
+
## 0.2.6
|
|
649
|
+
|
|
650
|
+
### Patch Changes
|
|
651
|
+
|
|
652
|
+
- @module-federation/bridge-shared@0.2.6
|
|
653
|
+
|
|
654
|
+
## 0.2.5
|
|
655
|
+
|
|
656
|
+
### Patch Changes
|
|
657
|
+
|
|
658
|
+
- @module-federation/bridge-shared@0.2.5
|
|
659
|
+
|
|
660
|
+
## 0.2.4
|
|
661
|
+
|
|
662
|
+
### Patch Changes
|
|
663
|
+
|
|
664
|
+
- @module-federation/bridge-shared@0.2.4
|
|
665
|
+
|
|
666
|
+
## 0.2.3
|
|
667
|
+
|
|
668
|
+
### Patch Changes
|
|
669
|
+
|
|
670
|
+
- @module-federation/bridge-shared@0.2.3
|
|
671
|
+
|
|
672
|
+
## 0.2.2
|
|
673
|
+
|
|
674
|
+
### Patch Changes
|
|
675
|
+
|
|
676
|
+
- @module-federation/bridge-shared@0.2.2
|
|
677
|
+
|
|
678
|
+
## 0.2.1
|
|
679
|
+
|
|
680
|
+
### Patch Changes
|
|
681
|
+
|
|
682
|
+
- @module-federation/bridge-shared@0.2.1
|
|
683
|
+
|
|
684
|
+
## 0.2.0
|
|
685
|
+
|
|
686
|
+
### Minor Changes
|
|
687
|
+
|
|
688
|
+
- d2ab821: feat(bridge): Supports exporting and loading of application-level modules (with routing), currently supports react and vue3
|
|
689
|
+
|
|
690
|
+
### Patch Changes
|
|
691
|
+
|
|
692
|
+
- Updated dependencies [d2ab821]
|
|
693
|
+
- @module-federation/bridge-shared@0.2.0
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 ScriptedAlchemy LLC (Zack Jackson) Zhou Shaw (zhouxiao)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
## Recommended Setup
|
|
6
|
+
|
|
7
|
+
- [VS Code](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (previously Volar) and disable Vetur
|
|
8
|
+
|
|
9
|
+
- Use [vue-tsc](https://github.com/vuejs/language-tools/tree/master/packages/tsc) for performing the same type checking from the command line, or for generating d.ts files for SFCs.
|