@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/index.js CHANGED
@@ -18691,6 +18691,8 @@ var fail = (reason, detail, location) => ({
18691
18691
  return false;
18692
18692
  if (!arraysEqual(a.topLevelImports, b2.topLevelImports))
18693
18693
  return false;
18694
+ if (!arraysEqual(a.propertyFieldNames, b2.propertyFieldNames))
18695
+ return false;
18694
18696
  if (a.encapsulation !== b2.encapsulation)
18695
18697
  return false;
18696
18698
  if (a.changeDetection !== b2.changeDetection)
@@ -19772,6 +19774,19 @@ var fail = (reason, detail, location) => ({
19772
19774
  }
19773
19775
  }
19774
19776
  return sig.sort();
19777
+ }, extractPropertyFieldNames = (cls) => {
19778
+ const names = [];
19779
+ for (const member of cls.members) {
19780
+ if (!ts7.isPropertyDeclaration(member))
19781
+ continue;
19782
+ const name = member.name;
19783
+ if (name === undefined)
19784
+ continue;
19785
+ const text = ts7.isIdentifier(name) ? name.text : ts7.isStringLiteral(name) || ts7.isNoSubstitutionTemplateLiteral(name) ? name.text : name.getText();
19786
+ if (text.length > 0)
19787
+ names.push(text);
19788
+ }
19789
+ return names.sort();
19775
19790
  }, extractTopLevelImports = (sourceFile) => {
19776
19791
  const names = new Set;
19777
19792
  for (const stmt of sourceFile.statements) {
@@ -19814,6 +19829,7 @@ var fail = (reason, detail, location) => ({
19814
19829
  const memberDecoratorSig = extractMemberDecoratorSig(cls);
19815
19830
  const providerImportSig = extractProviderImportSig(decoratorMeta.importsExpr, sourceFile, componentDir);
19816
19831
  const topLevelImports = extractTopLevelImports(sourceFile);
19832
+ const propertyFieldNames = extractPropertyFieldNames(cls);
19817
19833
  return {
19818
19834
  arrowFieldSig,
19819
19835
  changeDetection: decoratorMeta.changeDetection,
@@ -19825,6 +19841,7 @@ var fail = (reason, detail, location) => ({
19825
19841
  inputs: inputNames,
19826
19842
  memberDecoratorSig,
19827
19843
  outputs: outputNames,
19844
+ propertyFieldNames,
19828
19845
  providerImportSig,
19829
19846
  selector: decoratorMeta.selector,
19830
19847
  standalone: decoratorMeta.standalone,
@@ -31553,5 +31570,5 @@ export {
31553
31570
  ANGULAR_INIT_TIMEOUT_MS
31554
31571
  };
31555
31572
 
31556
- //# debugId=FD896F37628C9A1164756E2164756E21
31573
+ //# debugId=E285A7F5DAE8CFFA64756E2164756E21
31557
31574
  //# sourceMappingURL=index.js.map