@propbinder/mobile-design 0.2.9 → 0.2.10

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
@@ -1872,7 +1872,7 @@ declare class DsMobileListItemComponent {
1872
1872
  * - 'center' - Align to center
1873
1873
  * - 'bottom' - Align to bottom
1874
1874
  */
1875
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
1875
+ align: _angular_core.InputSignal<"top" | "center" | "bottom">;
1876
1876
  /**
1877
1877
  * Whether the list item is interactive (clickable and long-pressable)
1878
1878
  * When true, adds interactive background, cursor pointer, and touch handlers
@@ -3991,7 +3991,7 @@ declare class DsMobileCardInlineComponent {
3991
3991
  * - 'default' - Column layout with standard padding (gap: 12px, padding: 10px 12px)
3992
3992
  * - 'compact' - Row layout with reduced padding (gap: 8px, padding: 10px)
3993
3993
  */
3994
- variant: _angular_core.InputSignal<"default" | "compact">;
3994
+ variant: _angular_core.InputSignal<"compact" | "default">;
3995
3995
  /**
3996
3996
  * Whether the card is disabled
3997
3997
  * Disables all interactions and reduces opacity
@@ -4054,7 +4054,7 @@ declare class DsMobileCardInlineBannerComponent {
4054
4054
  * - 'default' - Standard padding and column layout
4055
4055
  * - 'compact' - Reduced padding and row layout
4056
4056
  */
4057
- layout: _angular_core.InputSignal<"default" | "compact">;
4057
+ layout: _angular_core.InputSignal<"compact" | "default">;
4058
4058
  /**
4059
4059
  * Emits when the banner is clicked
4060
4060
  */
@@ -4105,7 +4105,7 @@ declare class DsMobileCardInlineContactComponent {
4105
4105
  * - 'default' - Standard padding and column layout
4106
4106
  * - 'compact' - Reduced padding and row layout
4107
4107
  */
4108
- layout: _angular_core.InputSignal<"default" | "compact">;
4108
+ layout: _angular_core.InputSignal<"compact" | "default">;
4109
4109
  /**
4110
4110
  * Whether the contact item is clickable
4111
4111
  */
@@ -4162,7 +4162,7 @@ declare class DsMobileCardInlineFileComponent {
4162
4162
  * - 'default' - Standard padding and column layout
4163
4163
  * - 'compact' - Reduced padding and row layout
4164
4164
  */
4165
- layout: _angular_core.InputSignal<"default" | "compact">;
4165
+ layout: _angular_core.InputSignal<"compact" | "default">;
4166
4166
  /**
4167
4167
  * Optional URL to open when clicked
4168
4168
  * If provided, clicking the card will open this URL in a new tab
@@ -5144,7 +5144,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
5144
5144
  hasError: _angular_core.InputSignal<boolean>;
5145
5145
  errorMessage: _angular_core.InputSignal<string>;
5146
5146
  autocomplete: _angular_core.InputSignal<string>;
5147
- inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "url" | "email" | "tel" | undefined>;
5147
+ inputmode: _angular_core.InputSignal<"search" | "text" | "url" | "numeric" | "email" | "tel" | undefined>;
5148
5148
  autoClearError: _angular_core.InputSignal<boolean>;
5149
5149
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
5150
5150
  valueChange: _angular_core.OutputEmitterRef<string>;
@@ -5215,7 +5215,7 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
5215
5215
  * Note: FAB is always 56px circular, but this affects the icon size
5216
5216
  * @default 'md'
5217
5217
  */
5218
- size: _angular_core.InputSignal<"sm" | "md" | "lg">;
5218
+ size: _angular_core.InputSignal<"md" | "sm" | "lg">;
5219
5219
  /**
5220
5220
  * ARIA label for accessibility
5221
5221
  * @required - Always provide a descriptive label
@@ -5658,7 +5658,7 @@ declare class MobileInquiriesPageComponent {
5658
5658
  private navCtrl;
5659
5659
  private newInquiryModal;
5660
5660
  constructor(userService: UserService, navCtrl: NavController, newInquiryModal: DsMobileNewInquiryModalService);
5661
- filterStatus: _angular_core.WritableSignal<"all" | "open" | "closed">;
5661
+ filterStatus: _angular_core.WritableSignal<"open" | "closed" | "all">;
5662
5662
  tabItems: InlineTabItem[];
5663
5663
  inquiries: _angular_core.WritableSignal<Inquiry[]>;
5664
5664
  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.09",
3
+ "version": "0.2.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"