@propbinder/mobile-design 0.4.41 → 0.4.43

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.
Files changed (23) hide show
  1. package/README.md +63 -63
  2. package/assets/fonts/brockmann-medium-webfont.woff2 +0 -0
  3. package/assets/fonts/brockmann-mediumitalic-webfont.woff2 +0 -0
  4. package/assets/fonts/brockmann-regular-webfont.woff2 +0 -0
  5. package/assets/fonts/brockmann-regularitalic-webfont.woff2 +0 -0
  6. package/assets/fonts/brockmann-semibold-webfont.woff2 +0 -0
  7. package/assets/fonts/brockmann-semibolditalic-webfont.woff2 +0 -0
  8. package/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs → propbinder-mobile-design-ds-mobile-days-sheet-Bf7hxhB6.mjs} +51 -51
  9. package/fesm2022/propbinder-mobile-design-ds-mobile-days-sheet-Bf7hxhB6.mjs.map +1 -0
  10. package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs → propbinder-mobile-design-ds-mobile-duration-sheet-BHTlCfU7.mjs} +173 -173
  11. package/fesm2022/propbinder-mobile-design-ds-mobile-duration-sheet-BHTlCfU7.mjs.map +1 -0
  12. package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-B9Ny4wM7.mjs → propbinder-mobile-design-ds-mobile-time-sheet-CrUB7zl-.mjs} +69 -69
  13. package/fesm2022/propbinder-mobile-design-ds-mobile-time-sheet-CrUB7zl-.mjs.map +1 -0
  14. package/fesm2022/propbinder-mobile-design.mjs +15073 -15061
  15. package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
  16. package/index.d.ts +11 -4
  17. package/package.json +1 -1
  18. package/styles/ionic.css +989 -989
  19. package/styles/mobile-common.css +155 -155
  20. package/styles/mobile-page-base.css +338 -338
  21. package/fesm2022/propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs.map +0 -1
  22. package/fesm2022/propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs.map +0 -1
  23. package/fesm2022/propbinder-mobile-design-ds-mobile-time-sheet-B9Ny4wM7.mjs.map +0 -1
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" | "list" | "card" | "handbook">;
64
+ contentLoadingVariant: _angular_core.InputSignal<"details" | "handbook" | "list" | "card">;
65
65
  /**
66
66
  * Maximum content width (desktop only)
67
67
  *
@@ -992,6 +992,7 @@ declare class DsMobileInlineTabsComponent {
992
992
  interface WhitelabelConfig {
993
993
  logoUrl: string;
994
994
  logoMarkUrl: string;
995
+ headerLogoUrl?: string;
995
996
  logoAlt: string;
996
997
  logoSize: 'sm' | 'md' | 'lg' | 'xl';
997
998
  logoWidth?: number;
@@ -1044,6 +1045,7 @@ declare class WhitelabelService {
1044
1045
  private _config;
1045
1046
  readonly logoUrl: _angular_core.Signal<string>;
1046
1047
  readonly logoMarkUrl: _angular_core.Signal<string>;
1048
+ readonly headerLogoUrl: _angular_core.Signal<string>;
1047
1049
  readonly logoAlt: _angular_core.Signal<string>;
1048
1050
  readonly logoSize: _angular_core.Signal<"sm" | "md" | "lg" | "xl">;
1049
1051
  readonly logoHeight: _angular_core.Signal<number>;
@@ -1540,7 +1542,7 @@ declare class TileValueComponent {
1540
1542
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TileValueComponent, "tile-value", never, {}, {}, never, ["*"], true, never>;
1541
1543
  }
1542
1544
 
1543
- type LogoVariant = 'full' | 'mark';
1545
+ type LogoVariant = 'full' | 'mark' | 'header';
1544
1546
  type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
1545
1547
  /**
1546
1548
  * DsLogoComponent
@@ -1558,6 +1560,11 @@ type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
1558
1560
  * ```html
1559
1561
  * <ds-logo variant="mark" size="sm" />
1560
1562
  * ```
1563
+ *
1564
+ * Header logo (uses optional headerLogoUrl override, else falls back to the full logo):
1565
+ * ```html
1566
+ * <ds-logo variant="header" size="lg" />
1567
+ * ```
1561
1568
  */
1562
1569
  declare class DsLogoComponent {
1563
1570
  whitelabelService: WhitelabelService;
@@ -8715,7 +8722,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
8715
8722
  hasError: _angular_core.InputSignal<boolean>;
8716
8723
  errorMessage: _angular_core.InputSignal<string>;
8717
8724
  autocomplete: _angular_core.InputSignal<string>;
8718
- inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
8725
+ inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "email" | "tel" | "url" | undefined>;
8719
8726
  autoClearError: _angular_core.InputSignal<boolean>;
8720
8727
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
8721
8728
  valueChange: _angular_core.OutputEmitterRef<string>;
@@ -9023,7 +9030,7 @@ declare class DsMobileIllustrationComponent {
9023
9030
  * Predefined illustration variant
9024
9031
  * Available variants: 'post', 'inquiry', 'confirmation', 'family'
9025
9032
  */
9026
- variant: _angular_core.InputSignal<"post" | "inquiry" | "confirmation" | "family" | "cancel-booking" | "delete-warning">;
9033
+ variant: _angular_core.InputSignal<"delete-warning" | "inquiry" | "post" | "confirmation" | "family" | "cancel-booking">;
9027
9034
  /**
9028
9035
  * Illustration size (width and height)
9029
9036
  * @default '120px'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.4.41",
3
+ "version": "0.4.43",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"