@absolutejs/absolute 0.19.0-beta.747 → 0.19.0-beta.749
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/dist/angular/browser.js +35 -1
- package/dist/angular/browser.js.map +5 -4
- package/dist/angular/index.js +46 -1
- package/dist/angular/index.js.map +6 -5
- package/dist/angular/server.js +12 -1
- package/dist/angular/server.js.map +3 -3
- package/dist/build.js +12 -1
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/angular.ts +90 -0
- package/dist/dev/client/handlers/angularRuntime.ts +78 -0
- package/dist/index.js +12 -1
- package/dist/index.js.map +3 -3
- package/dist/src/angular/browser.d.ts +1 -0
- package/dist/src/angular/index.d.ts +1 -0
- package/dist/src/angular/preserveAcrossHmr.d.ts +10 -0
- package/dist/types/globals.d.ts +6 -0
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -44402,6 +44402,17 @@ var absoluteHttpTransferCacheOptions = {
|
|
|
44402
44402
|
// classes without needing a separate build artifact.
|
|
44403
44403
|
export * from '${normalizedImportPath}';
|
|
44404
44404
|
|
|
44405
|
+
// Record this evaluation's \`routes\` and \`providers\` exports for the
|
|
44406
|
+
// HMR fast-patch to compare against on the next reload. If they change
|
|
44407
|
+
// (a new route was added, a provider was edited), fast-patch falls back
|
|
44408
|
+
// to a full re-bootstrap because those values are consumed once at
|
|
44409
|
+
// bootstrap and won't propagate to the running router/injector via an
|
|
44410
|
+
// in-place component patch.
|
|
44411
|
+
if (typeof window !== 'undefined' && window.__ANGULAR_HMR__ && typeof window.__ANGULAR_HMR__.recordPageExports === 'function') {
|
|
44412
|
+
var __abs_hmr_routes = Reflect.get(pageModule, 'routes');
|
|
44413
|
+
window.__ANGULAR_HMR__.recordPageExports('${resolvedEntry}', __abs_hmr_routes, maybePageProviders);
|
|
44414
|
+
}
|
|
44415
|
+
|
|
44405
44416
|
// Re-Bootstrap HMR with View Transitions API.
|
|
44406
44417
|
// Skipped during fast-patch: the HMR client sets
|
|
44407
44418
|
// window.__ANGULAR_HMR_FAST_PATCH__ = true before \`import()\`-ing this
|
|
@@ -50089,5 +50100,5 @@ export {
|
|
|
50089
50100
|
build
|
|
50090
50101
|
};
|
|
50091
50102
|
|
|
50092
|
-
//# debugId=
|
|
50103
|
+
//# debugId=B7727BFCF3CDC2DE64756E2164756E21
|
|
50093
50104
|
//# sourceMappingURL=build.js.map
|