@absolutejs/absolute 0.19.0-beta.1090 → 0.19.0-beta.1092
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 +17 -2
- package/dist/build.js.map +4 -4
- package/dist/cli/index.js +9 -2
- package/dist/index.js +17 -2
- package/dist/index.js.map +4 -4
- package/dist/react/components/index.js.map +2 -2
- package/dist/src/utils/iconVersion.d.ts +1 -1
- package/dist/svelte/components/Head.svelte +5 -1
- 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-aKGPNe/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-aKGPNe/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-aKGPNe/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
|
@@ -23393,14 +23393,29 @@ var mimeTypes, getMimeType = (filePath) => {
|
|
|
23393
23393
|
};
|
|
23394
23394
|
var init_assetStore = __esm(() => {
|
|
23395
23395
|
mimeTypes = {
|
|
23396
|
+
".avif": "image/avif",
|
|
23397
|
+
".bmp": "image/bmp",
|
|
23396
23398
|
".css": "text/css",
|
|
23399
|
+
".eot": "application/vnd.ms-fontobject",
|
|
23400
|
+
".gif": "image/gif",
|
|
23397
23401
|
".html": "text/html",
|
|
23402
|
+
".ico": "image/x-icon",
|
|
23403
|
+
".jpeg": "image/jpeg",
|
|
23404
|
+
".jpg": "image/jpeg",
|
|
23398
23405
|
".js": "application/javascript",
|
|
23399
23406
|
".json": "application/json",
|
|
23407
|
+
".map": "application/json",
|
|
23400
23408
|
".mjs": "application/javascript",
|
|
23409
|
+
".otf": "font/otf",
|
|
23410
|
+
".png": "image/png",
|
|
23401
23411
|
".svg": "image/svg+xml",
|
|
23412
|
+
".ttf": "font/ttf",
|
|
23413
|
+
".txt": "text/plain",
|
|
23414
|
+
".wasm": "application/wasm",
|
|
23415
|
+
".webp": "image/webp",
|
|
23402
23416
|
".woff": "font/woff",
|
|
23403
|
-
".woff2": "font/woff2"
|
|
23417
|
+
".woff2": "font/woff2",
|
|
23418
|
+
".xml": "application/xml"
|
|
23404
23419
|
};
|
|
23405
23420
|
HASHED_FILE_RE = /\.[a-z0-9]{8}\.(js|css|mjs)$/;
|
|
23406
23421
|
});
|
|
@@ -28634,5 +28649,5 @@ export {
|
|
|
28634
28649
|
build
|
|
28635
28650
|
};
|
|
28636
28651
|
|
|
28637
|
-
//# debugId=
|
|
28652
|
+
//# debugId=859150DBEA0DAF0064756E2164756E21
|
|
28638
28653
|
//# sourceMappingURL=build.js.map
|