mesauth-angular 1.11.0 → 1.12.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mesauth-angular",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "description": "Angular helper library to connect to a backend API and SignalR hub to surface the current logged-in user and incoming notifications with dark/light theme support",
5
5
  "keywords": [
6
6
  "angular",
@@ -231,6 +231,9 @@ declare class MaAvatarComponent {
231
231
  }
232
232
 
233
233
  declare class UserProfileComponent {
234
+ inputAvatarShape: _angular_core.InputSignal<"circle" | "rounded" | "rectangle">;
235
+ showBell: _angular_core.InputSignal<boolean>;
236
+ showApproval: _angular_core.InputSignal<boolean>;
234
237
  notificationClick: _angular_core.OutputEmitterRef<void>;
235
238
  approvalClick: _angular_core.OutputEmitterRef<void>;
236
239
  get themeClass(): string;
@@ -262,7 +265,7 @@ declare class UserProfileComponent {
262
265
  onLogout(): void;
263
266
  onNotificationClick(): void;
264
267
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<UserProfileComponent, never>;
265
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileComponent, "ma-user-profile", never, {}, { "notificationClick": "notificationClick"; "approvalClick": "approvalClick"; }, never, ["*"], true, never>;
268
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<UserProfileComponent, "ma-user-profile", never, { "inputAvatarShape": { "alias": "inputAvatarShape"; "required": false; "isSignal": true; }; "showBell": { "alias": "showBell"; "required": false; "isSignal": true; }; "showApproval": { "alias": "showApproval"; "required": false; "isSignal": true; }; }, { "notificationClick": "notificationClick"; "approvalClick": "approvalClick"; }, never, ["*"], true, never>;
266
269
  }
267
270
 
268
271
  declare enum ApprovalStepMode {
@@ -491,11 +494,14 @@ declare class MaApprovalPanelComponent {
491
494
  declare class MaUserComponent implements AfterViewInit {
492
495
  userProfile?: UserProfileComponent;
493
496
  approvalPanel: MaApprovalPanelComponent;
497
+ avatarShape: _angular_core.InputSignal<"circle" | "rounded" | "rectangle">;
498
+ showBell: _angular_core.InputSignal<boolean>;
499
+ showApproval: _angular_core.InputSignal<boolean>;
494
500
  ngAfterViewInit(): void;
495
501
  onNotificationRead(): void;
496
502
  onApprovalActioned(): void;
497
503
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaUserComponent, never>;
498
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaUserComponent, "ma-user", never, {}, {}, never, ["*"], true, never>;
504
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaUserComponent, "ma-user", never, { "avatarShape": { "alias": "avatarShape"; "required": false; "isSignal": true; }; "showBell": { "alias": "showBell"; "required": false; "isSignal": true; }; "showApproval": { "alias": "showApproval"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
499
505
  }
500
506
 
501
507
  declare class NotificationBadgeComponent {
@@ -738,7 +744,7 @@ interface MaUiManifest {
738
744
  features?: Record<string, boolean>;
739
745
  }
740
746
  /** Current installed package version — keep in sync with package.json. */
741
- declare const PACKAGE_VERSION = "1.11.0";
747
+ declare const PACKAGE_VERSION = "1.12.0";
742
748
  /**
743
749
  * Provides server-driven UI configuration loaded from the hosted manifest.
744
750
  * Components read `labels()` and `features()` signals instead of hardcoded strings.