@absolutejs/absolute 0.19.0-beta.933 → 0.19.0-beta.935
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +4 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/dist/vue/index.js +4 -10
- package/dist/vue/index.js.map +3 -3
- package/dist/vue/server.js +4 -10
- package/dist/vue/server.js.map +3 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-inoK3m/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-inoK3m/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-inoK3m/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|
package/dist/build.js
CHANGED
|
@@ -15269,6 +15269,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
15269
15269
|
...vueVendorPaths2 ?? {},
|
|
15270
15270
|
...svelteVendorPaths2 ?? {}
|
|
15271
15271
|
};
|
|
15272
|
+
const angularPartialDeclSpecs = Object.keys(angularVendorPaths2 ?? {}).filter((spec) => !spec.startsWith("@angular/")).flatMap((spec) => [spec, `${spec}/*`]);
|
|
15272
15273
|
const serverBuildExternals = [
|
|
15273
15274
|
"react",
|
|
15274
15275
|
"react/*",
|
|
@@ -15278,7 +15279,9 @@ ${content.slice(firstUseIdx)}`;
|
|
|
15278
15279
|
"svelte/*",
|
|
15279
15280
|
"vue",
|
|
15280
15281
|
"vue/*",
|
|
15282
|
+
"@vue/*",
|
|
15281
15283
|
"@angular/*",
|
|
15284
|
+
...angularPartialDeclSpecs,
|
|
15282
15285
|
"typescript"
|
|
15283
15286
|
];
|
|
15284
15287
|
const svelteResolveConditions = svelteDir ? ["svelte", "main"] : undefined;
|
|
@@ -23424,5 +23427,5 @@ export {
|
|
|
23424
23427
|
build
|
|
23425
23428
|
};
|
|
23426
23429
|
|
|
23427
|
-
//# debugId=
|
|
23430
|
+
//# debugId=0885858C18159AC264756E2164756E21
|
|
23428
23431
|
//# sourceMappingURL=build.js.map
|