@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.
- package/README.md +63 -63
- package/assets/fonts/brockmann-medium-webfont.woff2 +0 -0
- package/assets/fonts/brockmann-mediumitalic-webfont.woff2 +0 -0
- package/assets/fonts/brockmann-regular-webfont.woff2 +0 -0
- package/assets/fonts/brockmann-regularitalic-webfont.woff2 +0 -0
- package/assets/fonts/brockmann-semibold-webfont.woff2 +0 -0
- package/assets/fonts/brockmann-semibolditalic-webfont.woff2 +0 -0
- package/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs → propbinder-mobile-design-ds-mobile-days-sheet-Bf7hxhB6.mjs} +51 -51
- package/fesm2022/propbinder-mobile-design-ds-mobile-days-sheet-Bf7hxhB6.mjs.map +1 -0
- package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs → propbinder-mobile-design-ds-mobile-duration-sheet-BHTlCfU7.mjs} +173 -173
- package/fesm2022/propbinder-mobile-design-ds-mobile-duration-sheet-BHTlCfU7.mjs.map +1 -0
- package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-B9Ny4wM7.mjs → propbinder-mobile-design-ds-mobile-time-sheet-CrUB7zl-.mjs} +69 -69
- package/fesm2022/propbinder-mobile-design-ds-mobile-time-sheet-CrUB7zl-.mjs.map +1 -0
- package/fesm2022/propbinder-mobile-design.mjs +15073 -15061
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +11 -4
- package/package.json +1 -1
- package/styles/ionic.css +989 -989
- package/styles/mobile-common.css +155 -155
- package/styles/mobile-page-base.css +338 -338
- package/fesm2022/propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs.map +0 -1
- package/fesm2022/propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs.map +0 -1
- 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" | "
|
|
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" | "
|
|
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<"
|
|
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'
|