@propbinder/mobile-design 0.2.52 → 0.2.54
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>;
|
|
@@ -6694,6 +6694,10 @@ interface FacilityDetailData {
|
|
|
6694
6694
|
bookingDate?: string;
|
|
6695
6695
|
/** Booking time range (for active bookings) */
|
|
6696
6696
|
bookingTime?: string;
|
|
6697
|
+
/** Available dates for the calendar */
|
|
6698
|
+
availableDates?: DateOption[];
|
|
6699
|
+
/** Available time slots mapping */
|
|
6700
|
+
availableTimeSlots?: Record<string, TimeSlot[]>;
|
|
6697
6701
|
}
|
|
6698
6702
|
/**
|
|
6699
6703
|
* DsMobileFacilityDetailModalComponent
|
|
@@ -7294,7 +7298,7 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
|
|
|
7294
7298
|
* Note: FAB is always 56px circular, but this affects the icon size
|
|
7295
7299
|
* @default 'md'
|
|
7296
7300
|
*/
|
|
7297
|
-
size: _angular_core.InputSignal<"
|
|
7301
|
+
size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
7298
7302
|
/**
|
|
7299
7303
|
* ARIA label for accessibility
|
|
7300
7304
|
* @required - Always provide a descriptive label
|