@arsedizioni/ars-utils 20.0.27 → 20.0.29

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.
@@ -1031,7 +1031,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1031
1031
  private changeDetector;
1032
1032
  private clipperService;
1033
1033
  readonly useSelections: _angular_core.InputSignal<boolean>;
1034
- readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
1034
+ readonly selectionSource: _angular_core.InputSignal<"selection" | "none" | "bag">;
1035
1035
  protected selection: () => ClipperDocumentInfo[];
1036
1036
  readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
1037
1037
  readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
package/core/index.d.ts CHANGED
@@ -112,7 +112,7 @@ declare enum DateFormat {
112
112
  ShortISO8601 = 12
113
113
  }
114
114
  interface PasswordStrength {
115
- score?: number;
115
+ score: number;
116
116
  label?: string;
117
117
  color?: string;
118
118
  suggestions?: string[];
@@ -753,6 +753,7 @@ class SystemUtils {
753
753
  }
754
754
  else
755
755
  return {
756
+ score: 0,
756
757
  isValid: false,
757
758
  suggestions: []
758
759
  };