@propbinder/mobile-design 0.2.3 → 0.2.4

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
@@ -1311,7 +1311,7 @@ declare class DsMobileListItemComponent {
1311
1311
  * - 'center' - Align to center
1312
1312
  * - 'bottom' - Align to bottom
1313
1313
  */
1314
- align: _angular_core.InputSignal<"top" | "center" | "bottom">;
1314
+ align: _angular_core.InputSignal<"center" | "top" | "bottom">;
1315
1315
  /**
1316
1316
  * Whether the list item is interactive (clickable and long-pressable)
1317
1317
  * When true, adds interactive background, cursor pointer, and touch handlers
@@ -3255,6 +3255,7 @@ interface ChatModalData {
3255
3255
  */
3256
3256
  declare class DsMobileChatModalComponent implements OnInit, AfterViewInit, OnDestroy {
3257
3257
  private modalController;
3258
+ private lightbox;
3258
3259
  chatData: ChatModalData;
3259
3260
  /**
3260
3261
  * Loading state - when true, shows loading indicator
@@ -3270,7 +3271,7 @@ declare class DsMobileChatModalComponent implements OnInit, AfterViewInit, OnDes
3270
3271
  currentUserAvatarType: _angular_core.WritableSignal<"initials" | "photo" | "icon">;
3271
3272
  currentUserAvatarSrc: _angular_core.WritableSignal<string>;
3272
3273
  autoFocus: _angular_core.WritableSignal<boolean>;
3273
- constructor(modalController: ModalController);
3274
+ constructor(modalController: ModalController, lightbox: DsMobileLightboxService);
3274
3275
  ngOnInit(): void;
3275
3276
  ngAfterViewInit(): void;
3276
3277
  ngOnDestroy(): void;
@@ -3814,7 +3815,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
3814
3815
  hasError: _angular_core.InputSignal<boolean>;
3815
3816
  errorMessage: _angular_core.InputSignal<string>;
3816
3817
  autocomplete: _angular_core.InputSignal<string>;
3817
- inputmode: _angular_core.InputSignal<"search" | "text" | "url" | "numeric" | "email" | "tel" | undefined>;
3818
+ inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "url" | "email" | "tel" | undefined>;
3818
3819
  autoClearError: _angular_core.InputSignal<boolean>;
3819
3820
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
3820
3821
  valueChange: _angular_core.OutputEmitterRef<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.03",
3
+ "version": "0.2.04",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"