@sinequa/atomic-angular 1.6.0 → 1.6.2

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/index.d.ts CHANGED
@@ -8367,6 +8367,13 @@ declare class SignInComponent {
8367
8367
  state: "initial" | "loading" | "loaded" | "error";
8368
8368
  }>;
8369
8369
  readonly expiresSoonNotified: _angular_core.WritableSignal<boolean>;
8370
+ /**
8371
+ * Forces the credentials form to show even while `externalAuth` is true. Set when a silent
8372
+ * SSO/browser auth attempt fails and no OAuth/SAML provider is configured: in that case
8373
+ * `useSSO` only meant "unknown — try SSO, then credentials", so we fall back to the form
8374
+ * instead of routing to /error.
8375
+ */
8376
+ readonly showCredentialsFallback: _angular_core.WritableSignal<boolean>;
8370
8377
  constructor(destroyRef: DestroyRef);
8371
8378
  private checkPasswordExpiresSoon;
8372
8379
  handleLogout(): Promise<void>;
@@ -8401,7 +8408,7 @@ declare class SignedOutComponent {
8401
8408
  }
8402
8409
 
8403
8410
  declare class BookmarkButtonComponent {
8404
- variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
8411
+ variant: _angular_core.InputSignal<"default" | "link" | "primary" | "secondary" | "outline" | "accent" | "tertiary" | "ghost" | "light-accent" | "destructive" | "icon" | "ai" | "none" | null | undefined>;
8405
8412
  size: _angular_core.InputSignal<"icon" | "xs" | "sm" | "md" | "lg" | null | undefined>;
8406
8413
  readonly article: _angular_core.InputSignal<Partial<Article$1>>;
8407
8414
  private readonly userSettingsStore;
@@ -9947,7 +9954,7 @@ declare class SearchFeedbackComponent {
9947
9954
  onClose: _angular_core.OutputEmitterRef<void>;
9948
9955
  readonly feedbackDialog: _angular_core.Signal<FeedbackDialogComponent | undefined>;
9949
9956
  pages: _angular_core.InputSignal<any>;
9950
- variant: _angular_core.InputSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
9957
+ variant: _angular_core.InputSignal<"default" | "link" | "primary" | "secondary" | "outline" | "accent" | "tertiary" | "ghost" | "light-accent" | "destructive" | "icon" | "ai" | "none" | null | undefined>;
9951
9958
  solid: _angular_core.InputSignal<boolean | null | undefined>;
9952
9959
  readonly auditService: AuditService;
9953
9960
  protected readonly queryParamsStore: {
@@ -11493,7 +11500,7 @@ declare class FilterButtonComponent {
11493
11500
  position: _angular_core.InputSignal<Placement>;
11494
11501
  offset: _angular_core.InputSignal<number>;
11495
11502
  expandedLevel: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
11496
- protected variant: _angular_core.WritableSignal<"default" | "primary" | "secondary" | "destructive" | "ai" | "outline" | "none" | "accent" | "tertiary" | "ghost" | "light-accent" | "link" | "icon" | null | undefined>;
11503
+ protected variant: _angular_core.WritableSignal<"default" | "link" | "primary" | "secondary" | "outline" | "accent" | "tertiary" | "ghost" | "light-accent" | "destructive" | "icon" | "ai" | "none" | null | undefined>;
11497
11504
  protected filter: _angular_core.WritableSignal<CFilterEx>;
11498
11505
  popoverRef: _angular_core.Signal<PopoverComponent | undefined>;
11499
11506
  protected nativeElement: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinequa/atomic-angular",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^20.0.0"
6
6
  },