@propbinder/mobile-design 0.2.56 → 0.2.57
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
|
@@ -918,7 +918,7 @@ declare class WhitelabelService {
|
|
|
918
918
|
readonly logoUrl: _angular_core.Signal<string>;
|
|
919
919
|
readonly logoMarkUrl: _angular_core.Signal<string>;
|
|
920
920
|
readonly logoAlt: _angular_core.Signal<string>;
|
|
921
|
-
readonly logoSize: _angular_core.Signal<"
|
|
921
|
+
readonly logoSize: _angular_core.Signal<"sm" | "md" | "lg" | "xl">;
|
|
922
922
|
readonly logoHeight: _angular_core.Signal<number>;
|
|
923
923
|
readonly appIconSurface: _angular_core.Signal<string>;
|
|
924
924
|
readonly appIconContent: _angular_core.Signal<string>;
|
|
@@ -6705,6 +6705,8 @@ interface FacilityDetailData {
|
|
|
6705
6705
|
availableTimeSlots?: Record<string, TimeSlot[]>;
|
|
6706
6706
|
/** Fallback to mock data for testing */
|
|
6707
6707
|
useMockData?: boolean;
|
|
6708
|
+
/** Callback executed when booking is confirmed */
|
|
6709
|
+
onSubmit?: (result: BookingResult) => Promise<void>;
|
|
6708
6710
|
}
|
|
6709
6711
|
/**
|
|
6710
6712
|
* DsMobileFacilityDetailModalComponent
|
|
@@ -7305,7 +7307,7 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
|
|
|
7305
7307
|
* Note: FAB is always 56px circular, but this affects the icon size
|
|
7306
7308
|
* @default 'md'
|
|
7307
7309
|
*/
|
|
7308
|
-
size: _angular_core.InputSignal<"
|
|
7310
|
+
size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
7309
7311
|
/**
|
|
7310
7312
|
* ARIA label for accessibility
|
|
7311
7313
|
* @required - Always provide a descriptive label
|