remote-reload-utils 0.0.13 → 0.0.16
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 +27 -0
- package/dist/index.d.ts +0 -2
- package/dist/main.cjs +176 -367
- package/dist/main.js +169 -323
- package/dist/plugins/register-shared-react.d.ts +6 -0
- package/dist/types/index.d.ts +1 -1
- package/package.json +39 -5
- package/dist/components/ErrorBoundary.d.ts +0 -34
- package/dist/components/RemoteModuleProvider.d.ts +0 -95
- package/dist/components/SuspenseLoader.d.ts +0 -131
- package/dist/components/index.d.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@
|
|
|
7
7
|
|
|
8
8
|
## [未发布]
|
|
9
9
|
|
|
10
|
+
## [0.0.16] - 2026-03-18
|
|
11
|
+
|
|
12
|
+
### Release
|
|
13
|
+
|
|
14
|
+
- Published version 0.0.16 with patch bump
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [0.0.15] - 2026-03-17
|
|
18
|
+
|
|
19
|
+
### Release
|
|
20
|
+
|
|
21
|
+
- Published version 0.0.15 with patch bump
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## [0.0.14] - 2026-03-17
|
|
25
|
+
|
|
26
|
+
### Release
|
|
27
|
+
|
|
28
|
+
- Published version 0.0.14 with patch bump
|
|
29
|
+
|
|
30
|
+
|
|
10
31
|
## [0.0.13] - 2026-03-17
|
|
11
32
|
|
|
12
33
|
### Release
|
|
@@ -151,6 +172,12 @@
|
|
|
151
172
|
|
|
152
173
|
| 版本 | 日期 | 主要变更 |
|
|
153
174
|
|------|------|----------|
|
|
175
|
+
| 0.0.16 | 2026-03-18 | patch 版本发布 |
|
|
176
|
+
|------|------|----------|
|
|
177
|
+
| 0.0.15 | 2026-03-17 | patch 版本发布 |
|
|
178
|
+
|------|------|----------|
|
|
179
|
+
| 0.0.14 | 2026-03-17 | patch 版本发布 |
|
|
180
|
+
|------|------|----------|
|
|
154
181
|
| 0.0.13 | 2026-03-17 | patch 版本发布 |
|
|
155
182
|
|------|------|----------|
|
|
156
183
|
| 0.0.12 | 2026-03-16 | patch 版本发布 |
|
package/dist/index.d.ts
CHANGED
|
@@ -8,5 +8,3 @@ export { checkRemoteHealth, checkModuleLoadable, getRemoteHealthReport, formatHe
|
|
|
8
8
|
export { eventBus, createEventBus, } from './event-bus';
|
|
9
9
|
export type { LoadRemoteOptions, VersionCache, PreloadOptions, PreloadCacheItem, PreloadStatus, } from './types';
|
|
10
10
|
export { fallbackPlugin } from './plugins/fallback';
|
|
11
|
-
export { ErrorBoundary, RemoteModuleProvider, RemoteModuleRenderer, useRemoteModule, lazyRemote, SuspenseRemote, SuspenseRemoteLoader, withRemote, useRemoteModuleHook, } from './components';
|
|
12
|
-
export type { ErrorBoundaryProps, RemoteModuleCardProps, UseRemoteModuleOptions, LazyRemoteOptions, SuspenseRemoteProps, SuspenseRemoteWithPropsProps, } from './components';
|