@propbinder/mobile-design 0.4.41 → 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/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 +15058 -15034
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +19 -7
- 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
|
@@ -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' | 'spinner';
|
|
1544
1546
|
type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
1545
1547
|
/**
|
|
1546
1548
|
* DsLogoComponent
|
|
@@ -1558,6 +1560,16 @@ 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
|
+
* ```
|
|
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
|
+
* ```
|
|
1561
1573
|
*/
|
|
1562
1574
|
declare class DsLogoComponent {
|
|
1563
1575
|
whitelabelService: WhitelabelService;
|
|
@@ -2840,7 +2852,7 @@ declare class DsMobileListItemComponent implements AfterViewInit {
|
|
|
2840
2852
|
* - 'center' - Align to center
|
|
2841
2853
|
* - 'bottom' - Align to bottom
|
|
2842
2854
|
*/
|
|
2843
|
-
align: _angular_core.InputSignal<"
|
|
2855
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
2844
2856
|
/**
|
|
2845
2857
|
* Remove top padding — use on the first item in a section when there is
|
|
2846
2858
|
* no preceding content, to avoid unnecessary whitespace.
|
|
@@ -3128,7 +3140,7 @@ declare class DsMobileInteractiveListItemPostComponent {
|
|
|
3128
3140
|
* - 'center' - Align to center
|
|
3129
3141
|
* - 'bottom' - Align to bottom
|
|
3130
3142
|
*/
|
|
3131
|
-
align: _angular_core.InputSignal<"
|
|
3143
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
3132
3144
|
/**
|
|
3133
3145
|
* Whether the post card is clickable
|
|
3134
3146
|
*/
|
|
@@ -3356,7 +3368,7 @@ declare class DsMobileInteractiveListItemInquiryComponent {
|
|
|
3356
3368
|
* - 'center' - Align to center
|
|
3357
3369
|
* - 'bottom' - Align to bottom
|
|
3358
3370
|
*/
|
|
3359
|
-
align: _angular_core.InputSignal<"
|
|
3371
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
3360
3372
|
/**
|
|
3361
3373
|
* Whether the inquiry item is clickable
|
|
3362
3374
|
*/
|
|
@@ -4795,7 +4807,7 @@ declare class DsMobileInteractiveListItemMessageComponent {
|
|
|
4795
4807
|
* - 'center' - Align to center
|
|
4796
4808
|
* - 'bottom' - Align to bottom
|
|
4797
4809
|
*/
|
|
4798
|
-
align: _angular_core.InputSignal<"
|
|
4810
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
4799
4811
|
/**
|
|
4800
4812
|
* Whitelabel logomark on the avatar corner (e.g. org branding for staff).
|
|
4801
4813
|
* Default true — preserves backward compatibility with inquiry assignee rows.
|
|
@@ -4857,7 +4869,7 @@ declare class DsMobileContactListItemComponent {
|
|
|
4857
4869
|
/** Show a trailing trash-bin icon; emits {@link deleteClick} on tap. */
|
|
4858
4870
|
showDeleteAction: _angular_core.InputSignal<boolean>;
|
|
4859
4871
|
variant: _angular_core.InputSignal<"compact" | undefined>;
|
|
4860
|
-
align: _angular_core.InputSignal<"
|
|
4872
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
4861
4873
|
contactClick: _angular_core.OutputEmitterRef<void>;
|
|
4862
4874
|
selectionToggle: _angular_core.OutputEmitterRef<void>;
|
|
4863
4875
|
moreClick: _angular_core.OutputEmitterRef<void>;
|
|
@@ -5355,7 +5367,7 @@ declare class DsMobileInteractiveListItemBookingComponent {
|
|
|
5355
5367
|
* - 'center' - Align to center
|
|
5356
5368
|
* - 'bottom' - Align to bottom
|
|
5357
5369
|
*/
|
|
5358
|
-
align: _angular_core.InputSignal<"
|
|
5370
|
+
align: _angular_core.InputSignal<"top" | "bottom" | "center">;
|
|
5359
5371
|
/**
|
|
5360
5372
|
* Whether the booking item is clickable
|
|
5361
5373
|
*/
|