@absolutejs/absolute 0.19.0-beta.922 → 0.19.0-beta.923
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 +18 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +18 -1
- package/dist/index.js.map +3 -3
- package/dist/src/dev/angular/fastHmrCompiler.d.ts +1 -0
- 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-1StGYU/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-1StGYU/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-1StGYU/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
|
@@ -18594,6 +18594,8 @@ var fail = (reason, detail, location) => ({
|
|
|
18594
18594
|
return false;
|
|
18595
18595
|
if (!arraysEqual(a.topLevelImports, b2.topLevelImports))
|
|
18596
18596
|
return false;
|
|
18597
|
+
if (!arraysEqual(a.propertyFieldNames, b2.propertyFieldNames))
|
|
18598
|
+
return false;
|
|
18597
18599
|
if (a.encapsulation !== b2.encapsulation)
|
|
18598
18600
|
return false;
|
|
18599
18601
|
if (a.changeDetection !== b2.changeDetection)
|
|
@@ -19675,6 +19677,19 @@ var fail = (reason, detail, location) => ({
|
|
|
19675
19677
|
}
|
|
19676
19678
|
}
|
|
19677
19679
|
return sig.sort();
|
|
19680
|
+
}, extractPropertyFieldNames = (cls) => {
|
|
19681
|
+
const names = [];
|
|
19682
|
+
for (const member of cls.members) {
|
|
19683
|
+
if (!ts7.isPropertyDeclaration(member))
|
|
19684
|
+
continue;
|
|
19685
|
+
const name = member.name;
|
|
19686
|
+
if (name === undefined)
|
|
19687
|
+
continue;
|
|
19688
|
+
const text = ts7.isIdentifier(name) ? name.text : ts7.isStringLiteral(name) || ts7.isNoSubstitutionTemplateLiteral(name) ? name.text : name.getText();
|
|
19689
|
+
if (text.length > 0)
|
|
19690
|
+
names.push(text);
|
|
19691
|
+
}
|
|
19692
|
+
return names.sort();
|
|
19678
19693
|
}, extractTopLevelImports = (sourceFile) => {
|
|
19679
19694
|
const names = new Set;
|
|
19680
19695
|
for (const stmt of sourceFile.statements) {
|
|
@@ -19717,6 +19732,7 @@ var fail = (reason, detail, location) => ({
|
|
|
19717
19732
|
const memberDecoratorSig = extractMemberDecoratorSig(cls);
|
|
19718
19733
|
const providerImportSig = extractProviderImportSig(decoratorMeta.importsExpr, sourceFile, componentDir);
|
|
19719
19734
|
const topLevelImports = extractTopLevelImports(sourceFile);
|
|
19735
|
+
const propertyFieldNames = extractPropertyFieldNames(cls);
|
|
19720
19736
|
return {
|
|
19721
19737
|
arrowFieldSig,
|
|
19722
19738
|
changeDetection: decoratorMeta.changeDetection,
|
|
@@ -19728,6 +19744,7 @@ var fail = (reason, detail, location) => ({
|
|
|
19728
19744
|
inputs: inputNames,
|
|
19729
19745
|
memberDecoratorSig,
|
|
19730
19746
|
outputs: outputNames,
|
|
19747
|
+
propertyFieldNames,
|
|
19731
19748
|
providerImportSig,
|
|
19732
19749
|
selector: decoratorMeta.selector,
|
|
19733
19750
|
standalone: decoratorMeta.standalone,
|
|
@@ -22895,5 +22912,5 @@ export {
|
|
|
22895
22912
|
build
|
|
22896
22913
|
};
|
|
22897
22914
|
|
|
22898
|
-
//# debugId=
|
|
22915
|
+
//# debugId=E7526B27E09085A964756E2164756E21
|
|
22899
22916
|
//# sourceMappingURL=build.js.map
|