@propbinder/mobile-design 0.4.43 → 0.4.44

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
@@ -61,7 +61,7 @@ declare abstract class MobilePageBase implements OnDestroy {
61
61
  *
62
62
  * @default 'list'
63
63
  */
64
- contentLoadingVariant: _angular_core.InputSignal<"details" | "handbook" | "list" | "card">;
64
+ contentLoadingVariant: _angular_core.InputSignal<"details" | "list" | "card" | "handbook">;
65
65
  /**
66
66
  * Maximum content width (desktop only)
67
67
  *
@@ -1542,7 +1542,7 @@ declare class TileValueComponent {
1542
1542
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TileValueComponent, "tile-value", never, {}, {}, never, ["*"], true, never>;
1543
1543
  }
1544
1544
 
1545
- type LogoVariant = 'full' | 'mark' | 'header';
1545
+ type LogoVariant = 'full' | 'mark' | 'header' | 'spinner';
1546
1546
  type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
1547
1547
  /**
1548
1548
  * DsLogoComponent
@@ -1565,6 +1565,11 @@ type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
1565
1565
  * ```html
1566
1566
  * <ds-logo variant="header" size="lg" />
1567
1567
  * ```
1568
+ *
1569
+ * Spinner/loading logo on the dark header surface (headerLogoUrl override, else the logomark):
1570
+ * ```html
1571
+ * <ds-logo variant="spinner" size="lg" />
1572
+ * ```
1568
1573
  */
1569
1574
  declare class DsLogoComponent {
1570
1575
  whitelabelService: WhitelabelService;
@@ -2847,7 +2852,7 @@ declare class DsMobileListItemComponent implements AfterViewInit {
2847
2852
  * - 'center' - Align to center
2848
2853
  * - 'bottom' - Align to bottom
2849
2854
  */
2850
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
2855
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
2851
2856
  /**
2852
2857
  * Remove top padding — use on the first item in a section when there is
2853
2858
  * no preceding content, to avoid unnecessary whitespace.
@@ -3135,7 +3140,7 @@ declare class DsMobileInteractiveListItemPostComponent {
3135
3140
  * - 'center' - Align to center
3136
3141
  * - 'bottom' - Align to bottom
3137
3142
  */
3138
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
3143
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
3139
3144
  /**
3140
3145
  * Whether the post card is clickable
3141
3146
  */
@@ -3363,7 +3368,7 @@ declare class DsMobileInteractiveListItemInquiryComponent {
3363
3368
  * - 'center' - Align to center
3364
3369
  * - 'bottom' - Align to bottom
3365
3370
  */
3366
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
3371
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
3367
3372
  /**
3368
3373
  * Whether the inquiry item is clickable
3369
3374
  */
@@ -4802,7 +4807,7 @@ declare class DsMobileInteractiveListItemMessageComponent {
4802
4807
  * - 'center' - Align to center
4803
4808
  * - 'bottom' - Align to bottom
4804
4809
  */
4805
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
4810
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
4806
4811
  /**
4807
4812
  * Whitelabel logomark on the avatar corner (e.g. org branding for staff).
4808
4813
  * Default true — preserves backward compatibility with inquiry assignee rows.
@@ -4864,7 +4869,7 @@ declare class DsMobileContactListItemComponent {
4864
4869
  /** Show a trailing trash-bin icon; emits {@link deleteClick} on tap. */
4865
4870
  showDeleteAction: _angular_core.InputSignal<boolean>;
4866
4871
  variant: _angular_core.InputSignal<"compact" | undefined>;
4867
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
4872
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
4868
4873
  contactClick: _angular_core.OutputEmitterRef<void>;
4869
4874
  selectionToggle: _angular_core.OutputEmitterRef<void>;
4870
4875
  moreClick: _angular_core.OutputEmitterRef<void>;
@@ -5362,7 +5367,7 @@ declare class DsMobileInteractiveListItemBookingComponent {
5362
5367
  * - 'center' - Align to center
5363
5368
  * - 'bottom' - Align to bottom
5364
5369
  */
5365
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
5370
+ align: _angular_core.InputSignal<"top" | "bottom" | "center">;
5366
5371
  /**
5367
5372
  * Whether the booking item is clickable
5368
5373
  */
@@ -8722,7 +8727,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
8722
8727
  hasError: _angular_core.InputSignal<boolean>;
8723
8728
  errorMessage: _angular_core.InputSignal<string>;
8724
8729
  autocomplete: _angular_core.InputSignal<string>;
8725
- inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "email" | "tel" | "url" | undefined>;
8730
+ inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
8726
8731
  autoClearError: _angular_core.InputSignal<boolean>;
8727
8732
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
8728
8733
  valueChange: _angular_core.OutputEmitterRef<string>;
@@ -9030,7 +9035,7 @@ declare class DsMobileIllustrationComponent {
9030
9035
  * Predefined illustration variant
9031
9036
  * Available variants: 'post', 'inquiry', 'confirmation', 'family'
9032
9037
  */
9033
- variant: _angular_core.InputSignal<"delete-warning" | "inquiry" | "post" | "confirmation" | "family" | "cancel-booking">;
9038
+ variant: _angular_core.InputSignal<"post" | "inquiry" | "confirmation" | "family" | "cancel-booking" | "delete-warning">;
9034
9039
  /**
9035
9040
  * Illustration size (width and height)
9036
9041
  * @default '120px'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.4.43",
3
+ "version": "0.4.44",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"