@absolutejs/absolute 0.19.0-beta.1128 → 0.19.0-beta.1129
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/cli/index.js +2 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/vue/index.js +3 -5
- package/dist/vue/index.js.map +3 -3
- package/dist/vue/server.js +3 -5
- package/dist/vue/server.js.map +3 -3
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-Wz7sEi/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-Wz7sEi/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-Wz7sEi/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/cli/index.js
CHANGED
|
@@ -178466,6 +178466,8 @@ const MIME: Record<string, string> = {
|
|
|
178466
178466
|
".css": "text/css; charset=utf-8",
|
|
178467
178467
|
".html": "text/html; charset=utf-8",
|
|
178468
178468
|
".json": "application/json",
|
|
178469
|
+
".xml": "application/xml",
|
|
178470
|
+
".txt": "text/plain; charset=utf-8",
|
|
178469
178471
|
".png": "image/png",
|
|
178470
178472
|
".jpg": "image/jpeg",
|
|
178471
178473
|
".svg": "image/svg+xml",
|
package/dist/index.js
CHANGED
|
@@ -35504,7 +35504,7 @@ var resolveRequestPathname = (request) => {
|
|
|
35504
35504
|
installSimpleDomGlobals();
|
|
35505
35505
|
const bundle = await import(buildRuntimeModuleSpecifier(pagePath));
|
|
35506
35506
|
if (typeof bundle.renderToHTML !== "function") {
|
|
35507
|
-
throw new Error(`Ember page bundle at ${pagePath} does not export renderToHTML().
|
|
35507
|
+
throw new Error(`Ember page bundle at ${pagePath} does not export renderToHTML(). Was it compiled by compileEmber()?`);
|
|
35508
35508
|
}
|
|
35509
35509
|
const innerHtml = bundle.renderToHTML(props ?? {});
|
|
35510
35510
|
const html = buildHtmlShell(resolvedHeadTag, innerHtml.replace(/^<div>|<\/div>$/g, ""), indexPath, props);
|
|
@@ -48040,5 +48040,5 @@ export {
|
|
|
48040
48040
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48041
48041
|
};
|
|
48042
48042
|
|
|
48043
|
-
//# debugId=
|
|
48043
|
+
//# debugId=E12DF3B1C7D1CA0064756E2164756E21
|
|
48044
48044
|
//# sourceMappingURL=index.js.map
|