@propbinder/mobile-design 0.2.83 → 0.2.85

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
@@ -413,6 +413,16 @@ declare class DsMobileBottomSheetHeaderComponent {
413
413
  * @default false
414
414
  */
415
415
  rightButtonLoading: boolean;
416
+ /**
417
+ * Show left button
418
+ * @default true
419
+ */
420
+ showLeftButton: boolean;
421
+ /**
422
+ * Show right button
423
+ * @default true
424
+ */
425
+ showRightButton: boolean;
416
426
  /**
417
427
  * Emitted when left button is clicked
418
428
  */
@@ -422,7 +432,7 @@ declare class DsMobileBottomSheetHeaderComponent {
422
432
  */
423
433
  rightButtonClick: EventEmitter<void>;
424
434
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileBottomSheetHeaderComponent, never>;
425
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBottomSheetHeaderComponent, "ds-mobile-bottom-sheet-header", never, { "title": { "alias": "title"; "required": false; }; "leftButtonLabel": { "alias": "leftButtonLabel"; "required": false; }; "rightButtonLabel": { "alias": "rightButtonLabel"; "required": false; }; "rightButtonDisabled": { "alias": "rightButtonDisabled"; "required": false; }; "rightButtonLoading": { "alias": "rightButtonLoading"; "required": false; }; }, { "leftButtonClick": "leftButtonClick"; "rightButtonClick": "rightButtonClick"; }, never, never, true, never>;
435
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBottomSheetHeaderComponent, "ds-mobile-bottom-sheet-header", never, { "title": { "alias": "title"; "required": false; }; "leftButtonLabel": { "alias": "leftButtonLabel"; "required": false; }; "rightButtonLabel": { "alias": "rightButtonLabel"; "required": false; }; "rightButtonDisabled": { "alias": "rightButtonDisabled"; "required": false; }; "rightButtonLoading": { "alias": "rightButtonLoading"; "required": false; }; "showLeftButton": { "alias": "showLeftButton"; "required": false; }; "showRightButton": { "alias": "showRightButton"; "required": false; }; }, { "leftButtonClick": "leftButtonClick"; "rightButtonClick": "rightButtonClick"; }, never, never, true, never>;
426
436
  }
427
437
 
428
438
  /**
@@ -846,7 +856,7 @@ declare class DsMobilePageMainComponent extends MobilePageBase implements AfterV
846
856
  headerSubtitle: _angular_core.InputSignal<string>;
847
857
  /** When true, the header logo plays a slide-in-from-top animation on first reveal */
848
858
  firstEntry: _angular_core.InputSignal<boolean>;
849
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
859
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
850
860
  avatarInitials: _angular_core.InputSignal<string>;
851
861
  avatarSrc: _angular_core.InputSignal<string>;
852
862
  avatarIconName: _angular_core.InputSignal<string>;
@@ -1705,7 +1715,7 @@ declare class DsMobileCommentComponent {
1705
1715
  /**
1706
1716
  * Avatar type
1707
1717
  */
1708
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
1718
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
1709
1719
  /**
1710
1720
  * Whether the comment is clickable
1711
1721
  */
@@ -1840,7 +1850,7 @@ declare class DsMobilePostComposerComponent {
1840
1850
  /**
1841
1851
  * Avatar type
1842
1852
  */
1843
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
1853
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
1844
1854
  /**
1845
1855
  * Avatar photo source (for photo type)
1846
1856
  */
@@ -2133,7 +2143,7 @@ declare class DsMobileMessageComposerComponent implements AfterViewInit, OnDestr
2133
2143
  /**
2134
2144
  * Avatar type
2135
2145
  */
2136
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
2146
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
2137
2147
  /**
2138
2148
  * Avatar photo source (for photo type)
2139
2149
  */
@@ -2502,7 +2512,7 @@ declare class DsMobileMessageBubbleComponent {
2502
2512
  /**
2503
2513
  * Avatar type
2504
2514
  */
2505
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
2515
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
2506
2516
  /**
2507
2517
  * Avatar photo source (for photo type)
2508
2518
  */
@@ -3042,7 +3052,7 @@ declare class DsMobileInteractiveListItemPostComponent {
3042
3052
  /**
3043
3053
  * Avatar type
3044
3054
  */
3045
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
3055
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
3046
3056
  /**
3047
3057
  * Avatar photo source (for photo type)
3048
3058
  */
@@ -4171,7 +4181,7 @@ declare class DsMobileChatModalComponent implements OnInit, AfterViewInit {
4171
4181
  participant: _angular_core.WritableSignal<ChatParticipant>;
4172
4182
  messages: _angular_core.WritableSignal<ChatMessage[]>;
4173
4183
  currentUserInitials: _angular_core.WritableSignal<string>;
4174
- currentUserAvatarType: _angular_core.WritableSignal<"photo" | "initials" | "icon">;
4184
+ currentUserAvatarType: _angular_core.WritableSignal<"initials" | "photo" | "icon">;
4175
4185
  currentUserAvatarSrc: _angular_core.WritableSignal<string>;
4176
4186
  autoFocus: _angular_core.WritableSignal<boolean>;
4177
4187
  /** Inquiry shows system takeover copy; peer chat does not. */
@@ -4540,7 +4550,7 @@ declare class DsMobileInteractiveListItemMessageComponent {
4540
4550
  /**
4541
4551
  * Avatar type
4542
4552
  */
4543
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
4553
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
4544
4554
  /**
4545
4555
  * Avatar photo source (for photo type)
4546
4556
  */
@@ -4600,7 +4610,7 @@ declare class DsMobileContactListItemComponent {
4600
4610
  initials: _angular_core.InputSignal<string>;
4601
4611
  /** Optional photo */
4602
4612
  avatarSrc: _angular_core.InputSignal<string>;
4603
- avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
4613
+ avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
4604
4614
  avatarIconName: _angular_core.InputSignal<string>;
4605
4615
  /** Whitelabel corner badge (default off — same as community posts) */
4606
4616
  showBadge: _angular_core.InputSignal<boolean>;
@@ -4833,7 +4843,7 @@ declare class UserService {
4833
4843
  readonly displayName: _angular_core.Signal<string>;
4834
4844
  readonly address: _angular_core.Signal<string>;
4835
4845
  readonly avatarInitials: _angular_core.Signal<string>;
4836
- readonly avatarType: _angular_core.Signal<"photo" | "initials" | "icon">;
4846
+ readonly avatarType: _angular_core.Signal<"initials" | "photo" | "icon">;
4837
4847
  readonly avatarSrc: _angular_core.Signal<string>;
4838
4848
  readonly profileMenuItems: _angular_core.Signal<ActionGroup[] | undefined>;
4839
4849
  private profileActionSelectedSubject;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.83",
3
+ "version": "0.2.85",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"