@propbinder/mobile-design 0.2.23 → 0.2.24

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
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { OnDestroy, AfterViewInit, OnInit, ElementRef, Injector, TemplateRef, EventEmitter, ApplicationRef, EnvironmentInjector, Type, AfterContentInit, ChangeDetectorRef } from '@angular/core';
2
+ import { OnDestroy, AfterViewInit, OnInit, ElementRef, OnChanges, Injector, SimpleChanges, TemplateRef, EventEmitter, ApplicationRef, EnvironmentInjector, Type, AfterContentInit, ChangeDetectorRef } from '@angular/core';
3
3
  import { ModalController, IonContent, NavController, GestureController, ModalOptions as ModalOptions$1 } from '@ionic/angular/standalone';
4
4
  import { Style } from '@capacitor/status-bar';
5
5
  import { ImpactStyle } from '@capacitor/haptics';
@@ -422,7 +422,7 @@ interface Language {
422
422
  * }
423
423
  * ```
424
424
  */
425
- declare class DsMobileProfileActionsSheetComponent {
425
+ declare class DsMobileProfileActionsSheetComponent implements OnInit, OnChanges {
426
426
  private modalController;
427
427
  private injector;
428
428
  /**
@@ -470,6 +470,8 @@ declare class DsMobileProfileActionsSheetComponent {
470
470
  */
471
471
  isAnimating: _angular_core.WritableSignal<boolean>;
472
472
  constructor(modalController: ModalController, injector: Injector);
473
+ ngOnChanges(changes: SimpleChanges): void;
474
+ ngOnInit(): void;
473
475
  /**
474
476
  * Handle action item click
475
477
  */
@@ -2387,7 +2389,7 @@ declare class DsMobileListItemComponent {
2387
2389
  * - 'center' - Align to center
2388
2390
  * - 'bottom' - Align to bottom
2389
2391
  */
2390
- align: _angular_core.InputSignal<"top" | "center" | "bottom">;
2392
+ align: _angular_core.InputSignal<"center" | "top" | "bottom">;
2391
2393
  /**
2392
2394
  * Whether the list item is interactive (clickable and long-pressable)
2393
2395
  * When true, adds interactive background, cursor pointer, and touch handlers
@@ -4741,7 +4743,7 @@ declare class DsMobileCardInlineComponent {
4741
4743
  * - 'default' - Column layout with standard padding (gap: 12px, padding: 10px 12px)
4742
4744
  * - 'compact' - Row layout with reduced padding (gap: 8px, padding: 10px)
4743
4745
  */
4744
- variant: _angular_core.InputSignal<"compact" | "default">;
4746
+ variant: _angular_core.InputSignal<"default" | "compact">;
4745
4747
  /**
4746
4748
  * Whether the card is disabled
4747
4749
  * Disables all interactions and reduces opacity
@@ -4804,7 +4806,7 @@ declare class DsMobileCardInlineBannerComponent {
4804
4806
  * - 'default' - Standard padding and column layout
4805
4807
  * - 'compact' - Reduced padding and row layout
4806
4808
  */
4807
- layout: _angular_core.InputSignal<"compact" | "default">;
4809
+ layout: _angular_core.InputSignal<"default" | "compact">;
4808
4810
  /**
4809
4811
  * Emits when the banner is clicked
4810
4812
  */
@@ -4855,7 +4857,7 @@ declare class DsMobileCardInlineContactComponent {
4855
4857
  * - 'default' - Standard padding and column layout
4856
4858
  * - 'compact' - Reduced padding and row layout
4857
4859
  */
4858
- layout: _angular_core.InputSignal<"compact" | "default">;
4860
+ layout: _angular_core.InputSignal<"default" | "compact">;
4859
4861
  /**
4860
4862
  * Whether the contact item is clickable
4861
4863
  */
@@ -4912,7 +4914,7 @@ declare class DsMobileCardInlineFileComponent {
4912
4914
  * - 'default' - Standard padding and column layout
4913
4915
  * - 'compact' - Reduced padding and row layout
4914
4916
  */
4915
- layout: _angular_core.InputSignal<"compact" | "default">;
4917
+ layout: _angular_core.InputSignal<"default" | "compact">;
4916
4918
  /**
4917
4919
  * Optional URL to open when clicked
4918
4920
  * If provided, clicking the card will open this URL in a new tab
@@ -6502,7 +6504,7 @@ declare class MobileInquiriesPageComponent {
6502
6504
  private newInquiryModal;
6503
6505
  pageComponent: DsMobilePageMainComponent;
6504
6506
  constructor(userService: UserService, navCtrl: NavController, newInquiryModal: DsMobileNewInquiryModalService);
6505
- filterStatus: _angular_core.WritableSignal<"all" | "open" | "closed">;
6507
+ filterStatus: _angular_core.WritableSignal<"open" | "closed" | "all">;
6506
6508
  tabItems: InlineTabItem[];
6507
6509
  inquiries: _angular_core.WritableSignal<Inquiry[]>;
6508
6510
  filteredInquiries: _angular_core.Signal<Inquiry[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.23",
3
+ "version": "0.2.24",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"