@absolutejs/absolute 0.19.0-beta.357 → 0.19.0-beta.359
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/ai/index.js +55 -4
- package/dist/ai/index.js.map +5 -4
- package/dist/angular/components/core/streamingSlotRegistry.js +46 -0
- package/dist/angular/components/stream-slot.component.js +1 -0
- package/dist/angular/index.js +2 -1
- package/dist/angular/index.js.map +3 -3
- package/dist/build.js +8 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +8 -2
- package/dist/index.js.map +3 -3
- package/dist/src/ai/rag/adapters/sqlite.d.ts +1 -0
- package/dist/src/ai/rag/resolveAbsoluteSQLiteVec.d.ts +1 -0
- package/dist/src/angular/components/stream-slot.component.d.ts +1 -0
- package/package.json +308 -308
package/dist/index.js
CHANGED
|
@@ -202736,7 +202736,12 @@ ${fields}
|
|
|
202736
202736
|
if (hmr && cachedWrapper && cachedWrapper.serverHash === serverContentHash && existsSync15(clientFile)) {
|
|
202737
202737
|
return { clientPath: clientFile, indexUnchanged: true, serverPath: rawServerFile };
|
|
202738
202738
|
}
|
|
202739
|
-
let rewritten = original
|
|
202739
|
+
let rewritten = original;
|
|
202740
|
+
if (!rewritten.includes(`import '@angular/compiler';`)) {
|
|
202741
|
+
rewritten = `import '@angular/compiler';
|
|
202742
|
+
${rewritten}`;
|
|
202743
|
+
}
|
|
202744
|
+
rewritten = rewritten.replace(new RegExp(`templateUrl:\\s*['"]\\.\\/${fileBase}\\.html['"]`), `templateUrl: '../../pages/${fileBase}.html'`);
|
|
202740
202745
|
if (!rewritten.includes("export default")) {
|
|
202741
202746
|
rewritten += `
|
|
202742
202747
|
export default ${componentClassName};
|
|
@@ -202812,6 +202817,7 @@ bootstrapApplication(${componentClassName}, {
|
|
|
202812
202817
|
window.__ANGULAR_APP__ = appRef;
|
|
202813
202818
|
});
|
|
202814
202819
|
`.trim() : `
|
|
202820
|
+
import '@angular/compiler';
|
|
202815
202821
|
import { bootstrapApplication } from '@angular/platform-browser';
|
|
202816
202822
|
import { provideClientHydration } from '@angular/platform-browser';
|
|
202817
202823
|
import { enableProdMode, provideZonelessChangeDetection } from '@angular/core';
|
|
@@ -216454,5 +216460,5 @@ export {
|
|
|
216454
216460
|
ANGULAR_INIT_TIMEOUT_MS
|
|
216455
216461
|
};
|
|
216456
216462
|
|
|
216457
|
-
//# debugId=
|
|
216463
|
+
//# debugId=8973CCCC0A32254364756E2164756E21
|
|
216458
216464
|
//# sourceMappingURL=index.js.map
|