@absolutejs/absolute 0.19.0-beta.1127 → 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 -5
- package/dist/index.js.map +4 -4
- package/dist/react/components/browser/index.js +1 -4
- package/dist/react/components/index.js +2 -5
- package/dist/react/components/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
|
@@ -41559,10 +41559,7 @@ var defineRenderNotFoundPage = (renderNotFoundPage) => renderNotFoundPage;
|
|
|
41559
41559
|
var jsonLd2 = (schema) => `<script type="application/ld+json">${serializeJsonLd(schema)}</script>`;
|
|
41560
41560
|
var serializeJsonLd = (schema) => {
|
|
41561
41561
|
const schemaOrgContext = "https://schema.org";
|
|
41562
|
-
const data = Array.isArray(schema) ? schema
|
|
41563
|
-
"@context": schemaOrgContext,
|
|
41564
|
-
...s2
|
|
41565
|
-
})) : { "@context": schemaOrgContext, ...schema };
|
|
41562
|
+
const data = Array.isArray(schema) ? { "@context": schemaOrgContext, "@graph": schema } : { "@context": schemaOrgContext, ...schema };
|
|
41566
41563
|
return JSON.stringify(data);
|
|
41567
41564
|
};
|
|
41568
41565
|
|
|
@@ -48043,5 +48040,5 @@ export {
|
|
|
48043
48040
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48044
48041
|
};
|
|
48045
48042
|
|
|
48046
|
-
//# debugId=
|
|
48043
|
+
//# debugId=E12DF3B1C7D1CA0064756E2164756E21
|
|
48047
48044
|
//# sourceMappingURL=index.js.map
|