@propbinder/mobile-design 0.3.42 → 0.4.0
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/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-CExYUoSe.mjs → propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs} +4 -4
- package/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-CExYUoSe.mjs.map → propbinder-mobile-design-ds-mobile-days-sheet-BsahIVaB.mjs.map} +1 -1
- package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-CjoEvphw.mjs → propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs} +4 -4
- package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-CjoEvphw.mjs.map → propbinder-mobile-design-ds-mobile-duration-sheet-Dun-o-dR.mjs.map} +1 -1
- package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-BEO6vuN0.mjs → propbinder-mobile-design-ds-mobile-time-sheet-B9Ny4wM7.mjs} +4 -4
- package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-BEO6vuN0.mjs.map → propbinder-mobile-design-ds-mobile-time-sheet-B9Ny4wM7.mjs.map} +1 -1
- package/fesm2022/propbinder-mobile-design.mjs +1413 -1171
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +142 -35
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { Router, ActivatedRoute } from '@angular/router';
|
|
|
12
12
|
import * as _propbinder_mobile_design from '@propbinder/mobile-design';
|
|
13
13
|
import { AppTrackingStatus } from 'capacitor-plugin-app-tracking-transparency';
|
|
14
14
|
import { Animation } from '@ionic/angular';
|
|
15
|
+
import { PushNotificationSchema } from '@capacitor/push-notifications';
|
|
15
16
|
|
|
16
17
|
/**
|
|
17
18
|
* Content width preset values
|
|
@@ -5130,7 +5131,9 @@ interface PeerGroupConversation {
|
|
|
5130
5131
|
createdAt: number;
|
|
5131
5132
|
}
|
|
5132
5133
|
type PeerConversation = PeerDirectConversation | PeerGroupConversation;
|
|
5134
|
+
declare function isPeerDirectConversation(c: PeerConversation): c is PeerDirectConversation;
|
|
5133
5135
|
declare function isPeerGroupConversation(c: PeerConversation): c is PeerGroupConversation;
|
|
5136
|
+
declare function peerTenantToParticipant(t: PeerTenantContact): ChatParticipant;
|
|
5134
5137
|
|
|
5135
5138
|
declare class PeerMessagingService {
|
|
5136
5139
|
readonly tenants: _angular_core.WritableSignal<PeerTenantContact[]>;
|
|
@@ -9067,15 +9070,20 @@ declare class DsMobilePropertyBannerComponent {
|
|
|
9067
9070
|
declare class DsMobileNotificationPromptComponent {
|
|
9068
9071
|
protected readonly whitelabel: WhitelabelService;
|
|
9069
9072
|
protected readonly dismissing: _angular_core.WritableSignal<boolean>;
|
|
9073
|
+
protected readonly awaitingNativePermission: _angular_core.WritableSignal<boolean>;
|
|
9070
9074
|
heading: _angular_core.InputSignal<string>;
|
|
9071
9075
|
subtitle: _angular_core.InputSignal<string>;
|
|
9072
9076
|
allowLabel: _angular_core.InputSignal<string>;
|
|
9073
9077
|
dismissLabel: _angular_core.InputSignal<string>;
|
|
9078
|
+
/** Fired when the user taps Allow — parent should request native permission, then call `dismissWithAnimation()`. */
|
|
9074
9079
|
allow: _angular_core.OutputEmitterRef<void>;
|
|
9075
9080
|
dismiss: _angular_core.OutputEmitterRef<void>;
|
|
9076
9081
|
private static readonly EXIT_DURATION;
|
|
9077
9082
|
handleAllow(): void;
|
|
9078
9083
|
handleDismiss(): void;
|
|
9084
|
+
/** Play exit animation — call after native permission dialog resolves. */
|
|
9085
|
+
dismissWithAnimation(): Promise<void>;
|
|
9086
|
+
private startDismissAnimation;
|
|
9079
9087
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileNotificationPromptComponent, never>;
|
|
9080
9088
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileNotificationPromptComponent, "ds-mobile-notification-prompt", never, { "heading": { "alias": "heading"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "allowLabel": { "alias": "allowLabel"; "required": false; "isSignal": true; }; "dismissLabel": { "alias": "dismissLabel"; "required": false; "isSignal": true; }; }, { "allow": "allow"; "dismiss": "dismiss"; }, never, never, true, never>;
|
|
9081
9089
|
}
|
|
@@ -9198,6 +9206,58 @@ declare class DsMobileToggleComponent {
|
|
|
9198
9206
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileToggleComponent, "ds-mobile-toggle", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
9199
9207
|
}
|
|
9200
9208
|
|
|
9209
|
+
type NotificationCategory = 'messages' | 'bookings' | 'community' | 'inquiries' | 'services' | 'handbook' | 'system';
|
|
9210
|
+
declare class NotificationService {
|
|
9211
|
+
readonly notifications: _angular_core.WritableSignal<NotificationItem[]>;
|
|
9212
|
+
readonly unreadCount: _angular_core.Signal<number>;
|
|
9213
|
+
/**
|
|
9214
|
+
* Push notification delivery preferences per category.
|
|
9215
|
+
* Controls which types of push notifications the device receives —
|
|
9216
|
+
* does NOT filter the in-app notification list.
|
|
9217
|
+
*/
|
|
9218
|
+
readonly disabledPushCategories: _angular_core.WritableSignal<Set<NotificationCategory>>;
|
|
9219
|
+
isPushEnabled(category: NotificationCategory): boolean;
|
|
9220
|
+
setPushEnabled(category: NotificationCategory, enabled: boolean): void;
|
|
9221
|
+
categoryForType(type: NotificationType): NotificationCategory;
|
|
9222
|
+
isPushEnabledForType(type: NotificationType): boolean;
|
|
9223
|
+
enabledCategories(): NotificationCategory[];
|
|
9224
|
+
/**
|
|
9225
|
+
* Add a new notification to the top of the list.
|
|
9226
|
+
* Intended for downstream push integration — call this when a
|
|
9227
|
+
* real push payload arrives via Capacitor's `pushNotificationReceived` listener.
|
|
9228
|
+
*/
|
|
9229
|
+
addNotification(item: NotificationItem): void;
|
|
9230
|
+
markAsRead(id: string): void;
|
|
9231
|
+
markAllAsRead(): void;
|
|
9232
|
+
/**
|
|
9233
|
+
* Remove a single notification from the list permanently.
|
|
9234
|
+
*/
|
|
9235
|
+
removeNotification(id: string): void;
|
|
9236
|
+
/**
|
|
9237
|
+
* Remove all notifications from the list permanently.
|
|
9238
|
+
*/
|
|
9239
|
+
clearAll(): void;
|
|
9240
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
9241
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NotificationService>;
|
|
9242
|
+
}
|
|
9243
|
+
|
|
9244
|
+
interface NotificationPref {
|
|
9245
|
+
key: NotificationCategory;
|
|
9246
|
+
label: string;
|
|
9247
|
+
description: string;
|
|
9248
|
+
}
|
|
9249
|
+
declare const DEFAULT_NOTIFICATION_PREFS: NotificationPref[];
|
|
9250
|
+
declare class SettingsModalComponent {
|
|
9251
|
+
private notificationService;
|
|
9252
|
+
private pushBackend;
|
|
9253
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
9254
|
+
readonly prefs: _angular_core.InputSignal<NotificationPref[]>;
|
|
9255
|
+
isPushEnabled(key: NotificationCategory): boolean;
|
|
9256
|
+
toggle(key: NotificationCategory): void;
|
|
9257
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsModalComponent, never>;
|
|
9258
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsModalComponent, "app-settings-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "prefs": { "alias": "prefs"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9259
|
+
}
|
|
9260
|
+
|
|
9201
9261
|
/**
|
|
9202
9262
|
* Post and Comment Models
|
|
9203
9263
|
* Unified data structures for community posts
|
|
@@ -9298,38 +9358,6 @@ declare class PostsService {
|
|
|
9298
9358
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PostsService>;
|
|
9299
9359
|
}
|
|
9300
9360
|
|
|
9301
|
-
type NotificationCategory = 'messages' | 'bookings' | 'community' | 'inquiries' | 'services' | 'handbook' | 'system';
|
|
9302
|
-
declare class NotificationService {
|
|
9303
|
-
readonly notifications: _angular_core.WritableSignal<NotificationItem[]>;
|
|
9304
|
-
readonly unreadCount: _angular_core.Signal<number>;
|
|
9305
|
-
/**
|
|
9306
|
-
* Push notification delivery preferences per category.
|
|
9307
|
-
* Controls which types of push notifications the device receives —
|
|
9308
|
-
* does NOT filter the in-app notification list.
|
|
9309
|
-
*/
|
|
9310
|
-
readonly disabledPushCategories: _angular_core.WritableSignal<Set<NotificationCategory>>;
|
|
9311
|
-
isPushEnabled(category: NotificationCategory): boolean;
|
|
9312
|
-
setPushEnabled(category: NotificationCategory, enabled: boolean): void;
|
|
9313
|
-
/**
|
|
9314
|
-
* Add a new notification to the top of the list.
|
|
9315
|
-
* Intended for downstream push integration — call this when a
|
|
9316
|
-
* real push payload arrives via Capacitor's `pushNotificationReceived` listener.
|
|
9317
|
-
*/
|
|
9318
|
-
addNotification(item: NotificationItem): void;
|
|
9319
|
-
markAsRead(id: string): void;
|
|
9320
|
-
markAllAsRead(): void;
|
|
9321
|
-
/**
|
|
9322
|
-
* Remove a single notification from the list permanently.
|
|
9323
|
-
*/
|
|
9324
|
-
removeNotification(id: string): void;
|
|
9325
|
-
/**
|
|
9326
|
-
* Remove all notifications from the list permanently.
|
|
9327
|
-
*/
|
|
9328
|
-
clearAll(): void;
|
|
9329
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
9330
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NotificationService>;
|
|
9331
|
-
}
|
|
9332
|
-
|
|
9333
9361
|
declare class MobileCommunityPageComponent {
|
|
9334
9362
|
private router;
|
|
9335
9363
|
private route;
|
|
@@ -9347,6 +9375,7 @@ declare class MobileCommunityPageComponent {
|
|
|
9347
9375
|
hasAnyPosts: _angular_core.Signal<boolean>;
|
|
9348
9376
|
hasMorePosts: _angular_core.Signal<boolean>;
|
|
9349
9377
|
constructor(router: Router, route: ActivatedRoute, bottomSheet: DsMobileBottomSheetService, lightbox: DsMobileLightboxService, postModal: DsMobilePostDetailModalService, userService: UserService, postsService: PostsService);
|
|
9378
|
+
isLoading: _angular_core.WritableSignal<boolean>;
|
|
9350
9379
|
/**
|
|
9351
9380
|
* Handle infinite scroll event
|
|
9352
9381
|
* Loads more posts when user scrolls to bottom
|
|
@@ -9400,6 +9429,7 @@ declare class MobileHandbookPageComponent {
|
|
|
9400
9429
|
serviceContractsItems: HandbookItem[];
|
|
9401
9430
|
equipmentItems: HandbookItem[];
|
|
9402
9431
|
constructor(userService: UserService);
|
|
9432
|
+
isLoading: _angular_core.WritableSignal<boolean>;
|
|
9403
9433
|
handleNotificationClick(): Promise<void>;
|
|
9404
9434
|
handleRefresh(event: any): void;
|
|
9405
9435
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobileHandbookPageComponent, never>;
|
|
@@ -9600,6 +9630,7 @@ declare class MobileInquiriesPageComponent {
|
|
|
9600
9630
|
private notificationModal;
|
|
9601
9631
|
readonly notificationService: NotificationService;
|
|
9602
9632
|
constructor(userService: UserService, navCtrl: NavController, newInquiryModal: DsMobileNewInquiryModalService);
|
|
9633
|
+
isLoading: _angular_core.WritableSignal<boolean>;
|
|
9603
9634
|
filterStatus: _angular_core.WritableSignal<"open" | "closed" | "all">;
|
|
9604
9635
|
tabItems: InlineTabItem[];
|
|
9605
9636
|
filteredInquiries: _angular_core.Signal<Inquiry[]>;
|
|
@@ -9673,11 +9704,13 @@ declare class MobileTabsExampleComponent implements OnInit {
|
|
|
9673
9704
|
userService: UserService;
|
|
9674
9705
|
private router;
|
|
9675
9706
|
private navCtrl;
|
|
9707
|
+
private notificationPromptComponent?;
|
|
9676
9708
|
private whitelabelDemoModal;
|
|
9677
9709
|
private trackingPermissionService;
|
|
9678
9710
|
private notificationModal;
|
|
9679
9711
|
readonly notificationService: NotificationService;
|
|
9680
9712
|
private notificationPrompt;
|
|
9713
|
+
private pushNotificationService;
|
|
9681
9714
|
readonly pageLoading: PageLoadingService;
|
|
9682
9715
|
readonly showNotificationPrompt: _angular_core.WritableSignal<boolean>;
|
|
9683
9716
|
private trackedProfileMenuItems;
|
|
@@ -10199,14 +10232,88 @@ declare class NotificationPromptService {
|
|
|
10199
10232
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NotificationPromptService>;
|
|
10200
10233
|
}
|
|
10201
10234
|
|
|
10235
|
+
interface SettingsModalOptions {
|
|
10236
|
+
title?: string;
|
|
10237
|
+
prefs?: NotificationPref[];
|
|
10238
|
+
}
|
|
10202
10239
|
declare class SettingsModalService {
|
|
10203
10240
|
private modalController;
|
|
10204
10241
|
constructor(modalController: ModalController);
|
|
10205
|
-
open(): Promise<void>;
|
|
10242
|
+
open(options?: SettingsModalOptions): Promise<void>;
|
|
10206
10243
|
close(data?: any): Promise<boolean>;
|
|
10207
10244
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsModalService, never>;
|
|
10208
10245
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<SettingsModalService>;
|
|
10209
10246
|
}
|
|
10210
10247
|
|
|
10211
|
-
|
|
10212
|
-
|
|
10248
|
+
type PushTokenType = 'fcm' | 'apns';
|
|
10249
|
+
type PushPlatform = 'ios' | 'android';
|
|
10250
|
+
type PushPermissionStatus = 'granted' | 'denied' | 'prompt' | 'unknown';
|
|
10251
|
+
interface DeviceRegistration {
|
|
10252
|
+
token: string;
|
|
10253
|
+
tokenType: PushTokenType;
|
|
10254
|
+
platform: PushPlatform;
|
|
10255
|
+
bundleId?: string;
|
|
10256
|
+
appVersion?: string;
|
|
10257
|
+
locale?: string;
|
|
10258
|
+
}
|
|
10259
|
+
/** Normalized push payload — matches the contract the backend will send later. */
|
|
10260
|
+
interface PushPayload {
|
|
10261
|
+
type: NotificationType;
|
|
10262
|
+
title: string;
|
|
10263
|
+
message: string;
|
|
10264
|
+
notificationId: string;
|
|
10265
|
+
targetId?: string;
|
|
10266
|
+
createdAt?: string;
|
|
10267
|
+
}
|
|
10268
|
+
interface PushBackendAdapter {
|
|
10269
|
+
registerDevice(device: DeviceRegistration): Promise<void>;
|
|
10270
|
+
unregisterDevice(token: string): Promise<void>;
|
|
10271
|
+
syncPushPreferences(enabledCategories: NotificationCategory[]): Promise<void>;
|
|
10272
|
+
}
|
|
10273
|
+
declare const PUSH_BACKEND_ADAPTER: InjectionToken<PushBackendAdapter>;
|
|
10274
|
+
|
|
10275
|
+
/** Parse a Capacitor push notification into a normalized PushPayload. */
|
|
10276
|
+
declare function extractPushPayload(notification: PushNotificationSchema): PushPayload | null;
|
|
10277
|
+
declare function pushPayloadToNotificationItem(payload: PushPayload): NotificationItem;
|
|
10278
|
+
declare function notificationItemFromPush(notification: PushNotificationSchema): NotificationItem | null;
|
|
10279
|
+
|
|
10280
|
+
declare class PushNotificationService {
|
|
10281
|
+
private readonly backend;
|
|
10282
|
+
private readonly notificationService;
|
|
10283
|
+
private readonly notificationModal;
|
|
10284
|
+
private readonly notificationPrompt;
|
|
10285
|
+
/** FCM registration token for backend registration. */
|
|
10286
|
+
readonly token: _angular_core.WritableSignal<string | null>;
|
|
10287
|
+
readonly permissionStatus: _angular_core.WritableSignal<PushPermissionStatus>;
|
|
10288
|
+
private initialized;
|
|
10289
|
+
private listenerHandles;
|
|
10290
|
+
/** Call once on app bootstrap. No-ops on web. */
|
|
10291
|
+
initialize(): Promise<void>;
|
|
10292
|
+
/** Called from the permission prompt "Allow" button. */
|
|
10293
|
+
requestPermissionAndRegister(): Promise<boolean>;
|
|
10294
|
+
/**
|
|
10295
|
+
* Whether the backend should send OS push notifications for this type.
|
|
10296
|
+
* Category toggles do not filter the in-app notification bell — see NotificationService.
|
|
10297
|
+
*/
|
|
10298
|
+
shouldDeliverPush(type: NotificationType): boolean;
|
|
10299
|
+
unregister(): Promise<void>;
|
|
10300
|
+
private attachListeners;
|
|
10301
|
+
private handleRegistration;
|
|
10302
|
+
private applyFcmToken;
|
|
10303
|
+
private registerDeviceWithBackend;
|
|
10304
|
+
private handleReceived;
|
|
10305
|
+
private handleActionPerformed;
|
|
10306
|
+
private registerNativePush;
|
|
10307
|
+
private refreshPermissionStatus;
|
|
10308
|
+
/**
|
|
10309
|
+
* FCM token via @capacitor-community/fcm. On iOS, call only after Capacitor
|
|
10310
|
+
* `registration` (APNs token must be set first).
|
|
10311
|
+
*/
|
|
10312
|
+
private resolveFcmToken;
|
|
10313
|
+
private readBundleId;
|
|
10314
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PushNotificationService, never>;
|
|
10315
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PushNotificationService>;
|
|
10316
|
+
}
|
|
10317
|
+
|
|
10318
|
+
export { AcceptInvitePageComponent, ActionCommentComponent, ActionLikeComponent, AvatarUploadPageComponent, BaseModalService, ContentRowComponent, CreateAccountPageComponent, DEFAULT_NOTIFICATION_PREFS, DEFAULT_SERVICE_PAGE_LABELS, DsAppIconComponent, DsAvatarWithBadgeComponent, DsLogoComponent, DsMobileAccessSheetComponent, DsMobileActionListItemComponent, DsMobileActionsBottomSheetComponent, DsMobileAddGroupTenantsModalComponent, DsMobileAppLoadingComponent, DsMobileAttachmentPreviewComponent, DsMobileBookingCancelConfirmationComponent, DsMobileBookingConfirmationWrapperComponent, DsMobileBookingDetailSheetComponent, DsMobileBookingDetailSheetService, DsMobileBookingModalComponent, DsMobileBookingModalService, DsMobileBookingSummaryComponent, DsMobileBottomSheetHeaderComponent, DsMobileBottomSheetService, DsMobileBottomSheetWrapperComponent, DsMobileCapacitySheetComponent, DsMobileCardInlineBannerComponent, DsMobileCardInlineComponent, DsMobileCardInlineContactComponent, DsMobileCardInlineFileComponent, DsMobileChatModalComponent, DsMobileChatModalService, DsMobileActionsBottomSheetComponent as DsMobileCommentActionsBottomSheetComponent, DsMobileCommentComponent, DsMobileCommunityAdminPickerComponent, DsMobileCommunityAdminsModalComponent, DsMobileConfirmationSheetComponent, DsMobileContactListItemComponent, DsMobileContentComponent, DsMobileCountBadgeComponent, DsMobileCreateGroupModalComponent, DsMobileDropdownComponent, DsMobileEditGroupModalComponent, DsMobileEmptyStateComponent, DsMobileFabComponent, DsMobileFacilityArchiveConfirmationComponent, DsMobileFacilityCreationConfirmationWrapperComponent, DsMobileFacilityCreationModalComponent, DsMobileFacilityCreationModalService, DsMobileFacilityDeleteConfirmationComponent, DsMobileFacilityDetailModalComponent, DsMobileFacilityDetailModalService, DsMobileFileAttachmentComponent, DsMobileGlassSpinnerComponent, DsMobileGroupAvatarStackComponent, DsMobileGroupMembersModalComponent, DsMobileHandbookDetailModalComponent, DsMobileHandbookDetailModalService, DsMobileHandbookFolderComponent, DsMobileHandbookFolderMiniComponent, DsMobileHeaderContentComponent, DsMobileHeaderContentTileComponent, DsMobileIllustrationComponent, DsMobileImagePlaceholderComponent, DsMobileInlinePhotoComponent, DsMobileInlineTabsComponent, DsMobileInteractiveListItemBookingComponent, DsMobileInteractiveListItemInquiryComponent, DsMobileInteractiveListItemMessageComponent, DsMobileInteractiveListItemPostComponent, DsMobileLightboxImageComponent as DsMobileLightboxComponent, DsMobileLightboxFooterComponent, DsMobileLightboxHeaderComponent, DsMobileLightboxImageComponent, DsMobileLightboxImageWithDescriptionComponent, DsMobileLightboxPdfComponent, DsMobileLightboxService, DsMobileListItemComponent, DsMobileListItemStaticComponent, DsMobileListSearchComponent, DsMobileLoaderOverlayComponent, DsMobileLongPressDirective, DsMobileMediaActionsPanelComponent, DsMobileMessageBubbleComponent, DsMobileMessageComposerComponent, DsMobileModalBaseComponent, DsMobileModalService, DsMobileNewInquiryModalComponent, DsMobileNewInquiryModalService, DsMobileNotificationButtonComponent, DsMobileNotificationModalComponent, DsMobileNotificationModalService, DsMobileNotificationPromptComponent, DsMobileOfflineBannerComponent, DsMobilePageDetailsComponent, DsMobilePageMainComponent, DsMobilePillComponent, DsMobileActionsBottomSheetComponent as DsMobilePostActionsBottomSheetComponent, DsMobilePostComposerComponent, DsMobilePostCreateBottomSheetComponent, DsMobilePostDetailModalComponent, DsMobilePostDetailModalService, DsMobilePriceSheetComponent, DsMobileProfileActionsSheetComponent, DsMobilePromptBottomSheetComponent, DsMobilePropertyBannerComponent, DsMobileRichTextEditorComponent, DsMobileSectionComponent, DsMobileServiceVendorModalService, DsMobileServiceVendorSheetComponent, DsMobileSwiperComponent, DsMobileSwiperWithNavComponent, DsMobileSystemMessageBannerComponent, DsMobileTabBarComponent, DsMobileTabsComponent, DsMobileTenantPickerModalComponent, DsMobileToggleComponent, DsMobileWhenCanBookSheetComponent, DsMobileWhoCanBookSheetComponent, DsTextInputComponent, FamilyAccessPageComponent, FamilyAccessService, InquiriesService, InviteSuccessPageComponent, MediaPickerService, MobileBookingPageComponent, MobileCommunityPageComponent, MobileHandbookPageComponent, MobileHomePageComponent, MobileInquiriesPageComponent, MobileInquiryDetailPageComponent, MobileModalBase, MobilePageBase, MobilePostDetailPageComponent, MobileTabsExampleComponent, NOTIFICATION_ICON_MAP, NotificationPromptService, NotificationService, PUSH_BACKEND_ADAPTER, PageLoadingService, PeerChatLauncherService, PeerMessagingService, PostActionsComponent, PostAttachmentsComponent, PostContentComponent, PostCreatePageComponent, PostMediaComponent, PostPdfAttachmentComponent, PostTextComponent, PostsService, PushNotificationService, RelativeTimePipe, SAMPLE_NOTIFICATIONS, SectionHeaderComponent, ServicesPageComponent, SettingsModalComponent, SettingsModalService, SignInPageComponent, SignInToAcceptPageComponent, TenantChatPageComponent, TileContentComponent, TileIconComponent, TileLabelComponent, TileValueComponent, TrackingPermissionService, UserService, VENDOR_MODAL_SERVICE, WhitelabelDemoModalComponent, WhitelabelDemoModalService, WhitelabelService, customBackTransition, customPageTransition, dateBucket, extractPushPayload, isPeerDirectConversation, isPeerGroupConversation, notificationItemFromPush, peerTenantToParticipant, pushPayloadToNotificationItem };
|
|
10319
|
+
export type { ActionGroup, ActionItem, ActionResult, AddGroupTenantPickerRow, AppIconSize, AttachmentData, AttachmentFileType, AttachmentItem, AvatarSize, AvatarType, BadgePosition, BookingDetailData, BookingModalExtras, BookingResult, BottomSheetOptions, ChatAttachment, ChatGroupPanelLabels, ChatMessage, ChatModalData, ChatModalGroupData, ChatModalLabels, ChatParticipant, Comment, ActionResult as CommentActionResult, CommentData, CommunityAdminRow, ContactItem, ContactType, ContentWidth, CreateGroupMember, CreateGroupResult, DateOption, DeviceRegistration, DropdownAlign, DropdownPosition, DsMobileDropdownItem, EditGroupMember, EditGroupResult, FacilityCreationModalOptions, FacilityDetailData, FacilityDetailDisplayData, FacilityDetailEditContext, FamilyInvite, FamilyMember, FamilyMemberStatus, GroupMemberRow, HandbookDetailData, HandbookItem, InlineTabItem, Inquiry, InquiryPhoto, Language, LightboxAuthor, LightboxImage, LightboxImageOptions, LightboxImageWithDescription, LightboxImageWithDescriptionOptions, LightboxMediaFile, LightboxMediaType, LightboxOptions, LightboxPdf, LightboxPdfOptions, LoadingPhase, LogoSize, LogoVariant, MediaPickerResult, ModalOptions, MoreMenuItem, NetworkStatus, NewFacilityData, NewInquiryData, NewInquiryModalOptions, NotificationCategory, NotificationItem, NotificationLeading, NotificationPref, NotificationType, PeerConversation, PeerDirectConversation, PeerGroupConversation, PeerTenantContact, Post, ActionResult as PostActionResult, PostDetailData, PromptBottomSheetResult, PromptGroupPreviewMember, PushBackendAdapter, PushPayload, PushPermissionStatus, PushPlatform, PushTokenType, ServicePageLabels, ServiceVendor, SettingsModalOptions, TabConfig, TimeSlot, VendorModalOpener, WhitelabelConfig };
|