@propbinder/mobile-design 0.1.19 → 0.1.20

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
@@ -2594,6 +2594,8 @@ declare class DsMobilePostDetailModalComponent implements AfterViewInit, OnDestr
2594
2594
  private lightbox;
2595
2595
  private bottomSheet;
2596
2596
  postData: PostDetailData;
2597
+ currentUserName: string;
2598
+ currentUserInitialsInput: string;
2597
2599
  onSubmitComment?: (payload: {
2598
2600
  postId: string;
2599
2601
  text: string;
@@ -2695,7 +2697,7 @@ declare class DsMobilePostDetailModalComponent implements AfterViewInit, OnDestr
2695
2697
  */
2696
2698
  handleCommentLongPress(authorName: string, content: string, isOwnComment: boolean): Promise<void>;
2697
2699
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePostDetailModalComponent, never>;
2698
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePostDetailModalComponent, "ds-mobile-post-detail-modal", never, { "postData": { "alias": "postData"; "required": false; }; "onSubmitComment": { "alias": "onSubmitComment"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
2700
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePostDetailModalComponent, "ds-mobile-post-detail-modal", never, { "postData": { "alias": "postData"; "required": false; }; "currentUserName": { "alias": "currentUserName"; "required": false; }; "currentUserInitialsInput": { "alias": "currentUserInitialsInput"; "required": false; }; "onSubmitComment": { "alias": "onSubmitComment"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
2699
2701
  }
2700
2702
 
2701
2703
  /**
@@ -2758,6 +2760,8 @@ declare class DsMobilePostDetailModalService {
2758
2760
  postId: string;
2759
2761
  text: string;
2760
2762
  }) => void;
2763
+ currentUserName?: string;
2764
+ currentUserInitials?: string;
2761
2765
  }): Promise<void>;
2762
2766
  /**
2763
2767
  * Close the currently open post detail modal
@@ -3193,7 +3197,7 @@ declare class DsMobileHandbookFolderMiniComponent {
3193
3197
  * ```
3194
3198
  */
3195
3199
  declare class DsTextInputComponent implements ControlValueAccessor {
3196
- type: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "password" | "url">;
3200
+ type: _angular_core.InputSignal<"search" | "email" | "tel" | "url" | "password" | "text">;
3197
3201
  placeholder: _angular_core.InputSignal<string>;
3198
3202
  disabled: _angular_core.InputSignal<boolean>;
3199
3203
  readonly: _angular_core.InputSignal<boolean>;
@@ -3201,7 +3205,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
3201
3205
  hasError: _angular_core.InputSignal<boolean>;
3202
3206
  errorMessage: _angular_core.InputSignal<string>;
3203
3207
  autocomplete: _angular_core.InputSignal<string>;
3204
- inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
3208
+ inputmode: _angular_core.InputSignal<"search" | "email" | "tel" | "url" | "text" | "numeric" | undefined>;
3205
3209
  autoClearError: _angular_core.InputSignal<boolean>;
3206
3210
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
3207
3211
  valueChange: _angular_core.OutputEmitterRef<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"