@propbinder/mobile-design 0.2.2 → 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
@@ -1397,7 +1397,7 @@ declare class DsMobileListItemComponent {
1397
1397
  /**
1398
1398
  * Handle keyboard events (Enter/Space)
1399
1399
  */
1400
- handleKeyDown(event: KeyboardEvent): void;
1400
+ handleKeyDown(event: Event): void;
1401
1401
  /**
1402
1402
  * Handle long press events from the directive
1403
1403
  * Set the flag to prevent the subsequent click event
@@ -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.02",
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"