remote-reload-utils 0.0.14 → 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 +18 -0
- package/dist/index.d.ts +0 -3
- package/dist/main.cjs +785 -988
- package/dist/main.js +169 -334
- package/dist/plugins/register-shared-react.d.ts +6 -0
- package/package.json +28 -2
- 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,20 @@
|
|
|
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
|
+
|
|
10
24
|
## [0.0.14] - 2026-03-17
|
|
11
25
|
|
|
12
26
|
### Release
|
|
@@ -158,6 +172,10 @@
|
|
|
158
172
|
|
|
159
173
|
| 版本 | 日期 | 主要变更 |
|
|
160
174
|
|------|------|----------|
|
|
175
|
+
| 0.0.16 | 2026-03-18 | patch 版本发布 |
|
|
176
|
+
|------|------|----------|
|
|
177
|
+
| 0.0.15 | 2026-03-17 | patch 版本发布 |
|
|
178
|
+
|------|------|----------|
|
|
161
179
|
| 0.0.14 | 2026-03-17 | patch 版本发布 |
|
|
162
180
|
|------|------|----------|
|
|
163
181
|
| 0.0.13 | 2026-03-17 | patch 版本发布 |
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import './styles/index.css';
|
|
2
1
|
export { loadReactVersion } from './version/react';
|
|
3
2
|
export { checkVersionCompatibility, satisfiesVersion, findCompatibleVersion, getCompatibleReactVersions, fetchAvailableVersions, sortVersions, getLatestVersion, getStableVersions, extractMajorVersion, isPrerelease, compareVersions, parseVersion, } from './version';
|
|
4
3
|
export { loadRemoteMultiVersion } from './loader';
|
|
@@ -9,5 +8,3 @@ export { checkRemoteHealth, checkModuleLoadable, getRemoteHealthReport, formatHe
|
|
|
9
8
|
export { eventBus, createEventBus, } from './event-bus';
|
|
10
9
|
export type { LoadRemoteOptions, VersionCache, PreloadOptions, PreloadCacheItem, PreloadStatus, } from './types';
|
|
11
10
|
export { fallbackPlugin } from './plugins/fallback';
|
|
12
|
-
export { ErrorBoundary, RemoteModuleProvider, RemoteModuleRenderer, useRemoteModule, lazyRemote, SuspenseRemote, SuspenseRemoteLoader, withRemote, useRemoteModuleHook, } from './components';
|
|
13
|
-
export type { ErrorBoundaryProps, RemoteModuleCardProps, UseRemoteModuleOptions, LazyRemoteOptions, SuspenseRemoteProps, SuspenseRemoteWithPropsProps, } from './components';
|