@absolutejs/absolute 0.19.0-beta.873 → 0.19.0-beta.875
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 +15 -3
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/angularRemount.ts +41 -17
- package/dist/index.js +15 -3
- package/dist/index.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-gw2PiU/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-gw2PiU/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-gw2PiU/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
|
@@ -19111,8 +19111,20 @@ ${block}
|
|
|
19111
19111
|
if (methodsBlock) {
|
|
19112
19112
|
const tail = `
|
|
19113
19113
|
if (typeof _Fresh !== 'undefined') {
|
|
19114
|
-
|
|
19115
|
-
|
|
19114
|
+
var __abs_liveFac = ${className}.\u0275fac;
|
|
19115
|
+
var __abs_freshFac = typeof __abs_liveFac === 'function'
|
|
19116
|
+
? function(t) { return __abs_liveFac(t || _Fresh); }
|
|
19117
|
+
: function() { return new _Fresh(); };
|
|
19118
|
+
_Fresh.\u0275cmp = Object.assign(
|
|
19119
|
+
Object.create(Object.getPrototypeOf(${className}.\u0275cmp)),
|
|
19120
|
+
${className}.\u0275cmp,
|
|
19121
|
+
{
|
|
19122
|
+
type: _Fresh,
|
|
19123
|
+
factory: __abs_freshFac,
|
|
19124
|
+
tView: null
|
|
19125
|
+
}
|
|
19126
|
+
);
|
|
19127
|
+
_Fresh.\u0275fac = __abs_freshFac;
|
|
19116
19128
|
return _Fresh;
|
|
19117
19129
|
}
|
|
19118
19130
|
`;
|
|
@@ -21777,5 +21789,5 @@ export {
|
|
|
21777
21789
|
build
|
|
21778
21790
|
};
|
|
21779
21791
|
|
|
21780
|
-
//# debugId=
|
|
21792
|
+
//# debugId=8F6BB46E58A34ECA64756E2164756E21
|
|
21781
21793
|
//# sourceMappingURL=build.js.map
|