@propbinder/mobile-design 0.2.15 → 0.2.16
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.mjs +1483 -1374
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +219 -76
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3014,6 +3014,132 @@ declare class DsMobileTabsComponent implements OnInit {
|
|
|
3014
3014
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileTabsComponent, "ds-mobile-tabs", never, { "tabs": { "alias": "tabs"; "required": false; }; "avatarType": { "alias": "avatarType"; "required": false; }; "avatarInitials": { "alias": "avatarInitials"; "required": false; }; "avatarSrc": { "alias": "avatarSrc"; "required": false; }; "avatarIconName": { "alias": "avatarIconName"; "required": false; }; }, { "avatarClick": "avatarClick"; }, never, never, true, never>;
|
|
3015
3015
|
}
|
|
3016
3016
|
|
|
3017
|
+
/**
|
|
3018
|
+
* DsMobileSwiperComponent
|
|
3019
|
+
*
|
|
3020
|
+
* A reusable swiper/carousel component with configurable child width and spacing.
|
|
3021
|
+
*
|
|
3022
|
+
* Features:
|
|
3023
|
+
* - First slide is left-aligned
|
|
3024
|
+
* - Middle slides are centered when active
|
|
3025
|
+
* - Last slide is right-aligned
|
|
3026
|
+
* - Configurable slide width and gap
|
|
3027
|
+
* - Content projection via ng-content
|
|
3028
|
+
*
|
|
3029
|
+
* Usage:
|
|
3030
|
+
* ```html
|
|
3031
|
+
* <ds-mobile-swiper [slideWidth]="'75vw'" [gap]="16">
|
|
3032
|
+
* <div class="swiper-slide">Slide 1</div>
|
|
3033
|
+
* <div class="swiper-slide">Slide 2</div>
|
|
3034
|
+
* <div class="swiper-slide">Slide 3</div>
|
|
3035
|
+
* </ds-mobile-swiper>
|
|
3036
|
+
* ```
|
|
3037
|
+
*/
|
|
3038
|
+
declare class DsMobileSwiperComponent implements AfterViewInit, OnDestroy {
|
|
3039
|
+
private elementRef;
|
|
3040
|
+
/**
|
|
3041
|
+
* Width of each slide (e.g., '75vw', '300px', '80%')
|
|
3042
|
+
*/
|
|
3043
|
+
slideWidth: _angular_core.InputSignal<string>;
|
|
3044
|
+
/**
|
|
3045
|
+
* Gap between slides in pixels
|
|
3046
|
+
*/
|
|
3047
|
+
gap: _angular_core.InputSignal<number>;
|
|
3048
|
+
/**
|
|
3049
|
+
* Enable pagination dots
|
|
3050
|
+
*/
|
|
3051
|
+
pagination: _angular_core.InputSignal<boolean>;
|
|
3052
|
+
/**
|
|
3053
|
+
* Enable auto height - container adapts to active slide's height
|
|
3054
|
+
*/
|
|
3055
|
+
autoHeight: _angular_core.InputSignal<boolean>;
|
|
3056
|
+
/**
|
|
3057
|
+
* Enable progressive opacity based on slide position
|
|
3058
|
+
* Slides fade in/out smoothly as they move toward/away from center
|
|
3059
|
+
*/
|
|
3060
|
+
progressiveOpacity: _angular_core.InputSignal<boolean>;
|
|
3061
|
+
/**
|
|
3062
|
+
* Enable progressive scale based on slide position
|
|
3063
|
+
* Slides scale down smoothly as they move away from center
|
|
3064
|
+
*/
|
|
3065
|
+
progressiveScale: _angular_core.InputSignal<boolean>;
|
|
3066
|
+
swiperContainer: ElementRef;
|
|
3067
|
+
private swiperInstance;
|
|
3068
|
+
constructor(elementRef: ElementRef);
|
|
3069
|
+
ngAfterViewInit(): void;
|
|
3070
|
+
private initializeSwiper;
|
|
3071
|
+
/**
|
|
3072
|
+
* Navigate to previous slide
|
|
3073
|
+
*/
|
|
3074
|
+
slidePrev(): void;
|
|
3075
|
+
/**
|
|
3076
|
+
* Navigate to next slide
|
|
3077
|
+
*/
|
|
3078
|
+
slideNext(): void;
|
|
3079
|
+
/**
|
|
3080
|
+
* Check if at the beginning
|
|
3081
|
+
*/
|
|
3082
|
+
isBeginning(): boolean;
|
|
3083
|
+
/**
|
|
3084
|
+
* Check if at the end
|
|
3085
|
+
*/
|
|
3086
|
+
isEnd(): boolean;
|
|
3087
|
+
ngOnDestroy(): void;
|
|
3088
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileSwiperComponent, never>;
|
|
3089
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileSwiperComponent, "ds-mobile-swiper", never, { "slideWidth": { "alias": "slideWidth"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "autoHeight": { "alias": "autoHeight"; "required": false; "isSignal": true; }; "progressiveOpacity": { "alias": "progressiveOpacity"; "required": false; "isSignal": true; }; "progressiveScale": { "alias": "progressiveScale"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
/**
|
|
3093
|
+
* DsMobileSystemMessageBannerComponent
|
|
3094
|
+
*
|
|
3095
|
+
* Full-width centered banner component for displaying system messages in chat conversations.
|
|
3096
|
+
* Uses the same text styling as message bubbles for consistency.
|
|
3097
|
+
*
|
|
3098
|
+
* Features:
|
|
3099
|
+
* - Full-width centered layout
|
|
3100
|
+
* - Subtle background with theming support
|
|
3101
|
+
* - Same typography as message bubbles
|
|
3102
|
+
* - Optional icon support
|
|
3103
|
+
*
|
|
3104
|
+
* Common use cases:
|
|
3105
|
+
* - Inquiry status updates ("Your inquiry has been assigned to...")
|
|
3106
|
+
* - System notifications ("This inquiry is marked as resolved")
|
|
3107
|
+
* - Auto-replies ("We aim to respond within 24 hours...")
|
|
3108
|
+
* - Time/date separators
|
|
3109
|
+
*
|
|
3110
|
+
* @example
|
|
3111
|
+
* ```html
|
|
3112
|
+
* <!-- Simple system message -->
|
|
3113
|
+
* <ds-mobile-system-message-banner
|
|
3114
|
+
* [message]="'Ricki Meihlen har overtaget din henvendelse og vil kontakte dig snart.'">
|
|
3115
|
+
* </ds-mobile-system-message-banner>
|
|
3116
|
+
*
|
|
3117
|
+
* <!-- With icon -->
|
|
3118
|
+
* <ds-mobile-system-message-banner
|
|
3119
|
+
* [message]="'Vi bestræber os på at svare inden for 24 timer på hverdage.'"
|
|
3120
|
+
* [iconName]="'remixInformationLine'">
|
|
3121
|
+
* </ds-mobile-system-message-banner>
|
|
3122
|
+
* ```
|
|
3123
|
+
*/
|
|
3124
|
+
declare class DsMobileSystemMessageBannerComponent {
|
|
3125
|
+
/**
|
|
3126
|
+
* System message text to display
|
|
3127
|
+
*/
|
|
3128
|
+
message: _angular_core.InputSignal<string>;
|
|
3129
|
+
/**
|
|
3130
|
+
* Optional icon name (currently using inline SVG for info icon)
|
|
3131
|
+
* Can be extended to support full icon library integration
|
|
3132
|
+
*/
|
|
3133
|
+
iconName: _angular_core.InputSignal<string>;
|
|
3134
|
+
/**
|
|
3135
|
+
* Whether this system message appears directly after a timestamp
|
|
3136
|
+
* When true, removes top padding to reduce spacing
|
|
3137
|
+
*/
|
|
3138
|
+
afterTimestamp: _angular_core.InputSignal<boolean>;
|
|
3139
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileSystemMessageBannerComponent, never>;
|
|
3140
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileSystemMessageBannerComponent, "ds-mobile-system-message-banner", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; "iconName": { "alias": "iconName"; "required": false; "isSignal": true; }; "afterTimestamp": { "alias": "afterTimestamp"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3017
3143
|
/**
|
|
3018
3144
|
* Media file types supported by the lightbox
|
|
3019
3145
|
*/
|
|
@@ -5685,6 +5811,56 @@ declare class DsTextInputComponent implements ControlValueAccessor {
|
|
|
5685
5811
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsTextInputComponent, "ds-text-input", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "inputmode": { "alias": "inputmode"; "required": false; "isSignal": true; }; "autoClearError": { "alias": "autoClearError"; "required": false; "isSignal": true; }; "validator": { "alias": "validator"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "blur": "blur"; "focus": "focus"; "errorCleared": "errorCleared"; }, never, never, true, never>;
|
|
5686
5812
|
}
|
|
5687
5813
|
|
|
5814
|
+
/**
|
|
5815
|
+
* DsMobileFileAttachmentComponent
|
|
5816
|
+
*
|
|
5817
|
+
* File attachment display for various document types.
|
|
5818
|
+
* Shows file info card with icon, filename, and file size.
|
|
5819
|
+
* Supports PDF and generic document formats.
|
|
5820
|
+
* Emits click event to open file in viewer.
|
|
5821
|
+
*
|
|
5822
|
+
* @example
|
|
5823
|
+
* ```html
|
|
5824
|
+
* <ds-mobile-file-attachment
|
|
5825
|
+
* [fileName]="'Document.pdf'"
|
|
5826
|
+
* [fileSize]="'1.2 MB'"
|
|
5827
|
+
* [variant]="'pdf'"
|
|
5828
|
+
* (fileClick)="openFile()">
|
|
5829
|
+
* </ds-mobile-file-attachment>
|
|
5830
|
+
* ```
|
|
5831
|
+
*/
|
|
5832
|
+
declare class DsMobileFileAttachmentComponent {
|
|
5833
|
+
/**
|
|
5834
|
+
* File name
|
|
5835
|
+
*/
|
|
5836
|
+
fileName: _angular_core.InputSignal<string>;
|
|
5837
|
+
/**
|
|
5838
|
+
* File size display (e.g., "1.2 MB")
|
|
5839
|
+
*/
|
|
5840
|
+
fileSize: _angular_core.InputSignal<string>;
|
|
5841
|
+
/**
|
|
5842
|
+
* File type variant
|
|
5843
|
+
* - 'pdf' - PDF document (red icon)
|
|
5844
|
+
* - 'doc' - Generic document (blue icon)
|
|
5845
|
+
*/
|
|
5846
|
+
variant: _angular_core.InputSignal<"pdf" | "doc">;
|
|
5847
|
+
/**
|
|
5848
|
+
* Emits when the file attachment is clicked
|
|
5849
|
+
*/
|
|
5850
|
+
fileClick: _angular_core.OutputEmitterRef<void>;
|
|
5851
|
+
/**
|
|
5852
|
+
* Get the appropriate icon name based on variant
|
|
5853
|
+
*/
|
|
5854
|
+
getIconName(): string;
|
|
5855
|
+
/**
|
|
5856
|
+
* Get the file type label based on variant
|
|
5857
|
+
*/
|
|
5858
|
+
getFileTypeLabel(): string;
|
|
5859
|
+
handleClick(event: Event): void;
|
|
5860
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileFileAttachmentComponent, never>;
|
|
5861
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileFileAttachmentComponent, "ds-mobile-file-attachment", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "fileClick": "fileClick"; }, never, never, true, never>;
|
|
5862
|
+
}
|
|
5863
|
+
|
|
5688
5864
|
/**
|
|
5689
5865
|
* DsMobileFabComponent
|
|
5690
5866
|
*
|
|
@@ -5840,6 +6016,48 @@ declare class DsAvatarWithBadgeComponent {
|
|
|
5840
6016
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsAvatarWithBadgeComponent, "ds-avatar-with-badge", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "src": { "alias": "src"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "showBadge": { "alias": "showBadge"; "required": false; }; "badgePosition": { "alias": "badgePosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
5841
6017
|
}
|
|
5842
6018
|
|
|
6019
|
+
/**
|
|
6020
|
+
* DsMobileActionListItemComponent
|
|
6021
|
+
*
|
|
6022
|
+
* Specialized list item for action sheets and menus.
|
|
6023
|
+
* Wraps ds-mobile-list-item with action-specific styling:
|
|
6024
|
+
* - Vertically centered content
|
|
6025
|
+
* - Interactive by default
|
|
6026
|
+
* - No dividers (controlled per-item)
|
|
6027
|
+
*
|
|
6028
|
+
* @example
|
|
6029
|
+
* ```html
|
|
6030
|
+
* <ds-mobile-action-list-item
|
|
6031
|
+
* title="Edit"
|
|
6032
|
+
* [showDivider]="true"
|
|
6033
|
+
* (itemClick)="handleEdit()">
|
|
6034
|
+
* <ds-icon content-leading name="remixEditLine" size="20px" />
|
|
6035
|
+
* </ds-mobile-action-list-item>
|
|
6036
|
+
* ```
|
|
6037
|
+
*/
|
|
6038
|
+
declare class DsMobileActionListItemComponent {
|
|
6039
|
+
/**
|
|
6040
|
+
* Action title text
|
|
6041
|
+
*/
|
|
6042
|
+
title: _angular_core.InputSignal<string>;
|
|
6043
|
+
/**
|
|
6044
|
+
* Whether to show divider below item
|
|
6045
|
+
* @default false
|
|
6046
|
+
*/
|
|
6047
|
+
showDivider: _angular_core.InputSignal<boolean>;
|
|
6048
|
+
/**
|
|
6049
|
+
* Whether the action is disabled
|
|
6050
|
+
* @default false
|
|
6051
|
+
*/
|
|
6052
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
6053
|
+
/**
|
|
6054
|
+
* Emits when the action item is clicked
|
|
6055
|
+
*/
|
|
6056
|
+
itemClick: _angular_core.OutputEmitterRef<void>;
|
|
6057
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileActionListItemComponent, never>;
|
|
6058
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileActionListItemComponent, "ds-mobile-action-list-item", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, ["[action-icon]", "[content-trailing]"], true, never>;
|
|
6059
|
+
}
|
|
6060
|
+
|
|
5843
6061
|
type LogoVariant = 'full' | 'mark';
|
|
5844
6062
|
type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
5845
6063
|
/**
|
|
@@ -6045,81 +6263,6 @@ declare class DsMobilePropertyBannerComponent {
|
|
|
6045
6263
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePropertyBannerComponent, "ds-mobile-property-banner", never, { "address": { "alias": "address"; "required": true; "isSignal": true; }; "photoUrl": { "alias": "photoUrl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6046
6264
|
}
|
|
6047
6265
|
|
|
6048
|
-
/**
|
|
6049
|
-
* DsMobileSwiperComponent
|
|
6050
|
-
*
|
|
6051
|
-
* A reusable swiper/carousel component with configurable child width and spacing.
|
|
6052
|
-
*
|
|
6053
|
-
* Features:
|
|
6054
|
-
* - First slide is left-aligned
|
|
6055
|
-
* - Middle slides are centered when active
|
|
6056
|
-
* - Last slide is right-aligned
|
|
6057
|
-
* - Configurable slide width and gap
|
|
6058
|
-
* - Content projection via ng-content
|
|
6059
|
-
*
|
|
6060
|
-
* Usage:
|
|
6061
|
-
* ```html
|
|
6062
|
-
* <ds-mobile-swiper [slideWidth]="'75vw'" [gap]="16">
|
|
6063
|
-
* <div class="swiper-slide">Slide 1</div>
|
|
6064
|
-
* <div class="swiper-slide">Slide 2</div>
|
|
6065
|
-
* <div class="swiper-slide">Slide 3</div>
|
|
6066
|
-
* </ds-mobile-swiper>
|
|
6067
|
-
* ```
|
|
6068
|
-
*/
|
|
6069
|
-
declare class DsMobileSwiperComponent implements AfterViewInit, OnDestroy {
|
|
6070
|
-
private elementRef;
|
|
6071
|
-
/**
|
|
6072
|
-
* Width of each slide (e.g., '75vw', '300px', '80%')
|
|
6073
|
-
*/
|
|
6074
|
-
slideWidth: _angular_core.InputSignal<string>;
|
|
6075
|
-
/**
|
|
6076
|
-
* Gap between slides in pixels
|
|
6077
|
-
*/
|
|
6078
|
-
gap: _angular_core.InputSignal<number>;
|
|
6079
|
-
/**
|
|
6080
|
-
* Enable pagination dots
|
|
6081
|
-
*/
|
|
6082
|
-
pagination: _angular_core.InputSignal<boolean>;
|
|
6083
|
-
/**
|
|
6084
|
-
* Enable auto height - container adapts to active slide's height
|
|
6085
|
-
*/
|
|
6086
|
-
autoHeight: _angular_core.InputSignal<boolean>;
|
|
6087
|
-
/**
|
|
6088
|
-
* Enable progressive opacity based on slide position
|
|
6089
|
-
* Slides fade in/out smoothly as they move toward/away from center
|
|
6090
|
-
*/
|
|
6091
|
-
progressiveOpacity: _angular_core.InputSignal<boolean>;
|
|
6092
|
-
/**
|
|
6093
|
-
* Enable progressive scale based on slide position
|
|
6094
|
-
* Slides scale down smoothly as they move away from center
|
|
6095
|
-
*/
|
|
6096
|
-
progressiveScale: _angular_core.InputSignal<boolean>;
|
|
6097
|
-
swiperContainer: ElementRef;
|
|
6098
|
-
private swiperInstance;
|
|
6099
|
-
constructor(elementRef: ElementRef);
|
|
6100
|
-
ngAfterViewInit(): void;
|
|
6101
|
-
private initializeSwiper;
|
|
6102
|
-
/**
|
|
6103
|
-
* Navigate to previous slide
|
|
6104
|
-
*/
|
|
6105
|
-
slidePrev(): void;
|
|
6106
|
-
/**
|
|
6107
|
-
* Navigate to next slide
|
|
6108
|
-
*/
|
|
6109
|
-
slideNext(): void;
|
|
6110
|
-
/**
|
|
6111
|
-
* Check if at the beginning
|
|
6112
|
-
*/
|
|
6113
|
-
isBeginning(): boolean;
|
|
6114
|
-
/**
|
|
6115
|
-
* Check if at the end
|
|
6116
|
-
*/
|
|
6117
|
-
isEnd(): boolean;
|
|
6118
|
-
ngOnDestroy(): void;
|
|
6119
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileSwiperComponent, never>;
|
|
6120
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileSwiperComponent, "ds-mobile-swiper", never, { "slideWidth": { "alias": "slideWidth"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "autoHeight": { "alias": "autoHeight"; "required": false; "isSignal": true; }; "progressiveOpacity": { "alias": "progressiveOpacity"; "required": false; "isSignal": true; }; "progressiveScale": { "alias": "progressiveScale"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
6121
|
-
}
|
|
6122
|
-
|
|
6123
6266
|
/**
|
|
6124
6267
|
* User service for managing current user data globally
|
|
6125
6268
|
*/
|
|
@@ -6652,5 +6795,5 @@ declare const customPageTransition: (_: HTMLElement, opts: any) => Animation;
|
|
|
6652
6795
|
*/
|
|
6653
6796
|
declare const customBackTransition: (_: HTMLElement, opts: any) => Animation;
|
|
6654
6797
|
|
|
6655
|
-
export { ActionCommentComponent, ActionLikeComponent, ContentRowComponent, DsAppIconComponent, DsAvatarWithBadgeComponent, DsLogoComponent, DsMobileActionsBottomSheetComponent, DsMobileAttachmentPreviewComponent, DsMobileBottomSheetService, DsMobileBottomSheetWrapperComponent, DsMobileCardInlineBannerComponent, DsMobileCardInlineComponent, DsMobileCardInlineContactComponent, DsMobileCardInlineFileComponent, DsMobileChatModalComponent, DsMobileChatModalService, DsMobileActionsBottomSheetComponent as DsMobileCommentActionsBottomSheetComponent, DsMobileCommentComponent, DsMobileContactListItemComponent, DsMobileContentComponent, DsMobileDropdownComponent, DsMobileEmptyStateComponent, DsMobileFabComponent, DsMobileHandbookDetailModalComponent, DsMobileHandbookDetailModalService, DsMobileHandbookFolderComponent, DsMobileHandbookFolderMiniComponent, DsMobileHeaderContentComponent, DsMobileHeaderContentTileComponent, DsMobileIllustrationComponent, DsMobileInlinePhotoComponent, DsMobileInlineTabsComponent, DsMobileInteractiveListItemInquiryComponent, DsMobileInteractiveListItemMessageComponent, DsMobileInteractiveListItemPostComponent, DsMobileLightboxImageComponent as DsMobileLightboxComponent, DsMobileLightboxFooterComponent, DsMobileLightboxHeaderComponent, DsMobileLightboxImageComponent, DsMobileLightboxPdfComponent, DsMobileLightboxService, DsMobileListItemComponent, DsMobileListItemStaticComponent, DsMobileLoaderOverlayComponent, DsMobileLongPressDirective, DsMobileMessageBubbleComponent, DsMobileMessageComposerComponent, DsMobileModalBaseComponent, DsMobileModalService, DsMobileNewInquiryModalComponent, DsMobileNewInquiryModalService, DsMobileOfflineBannerComponent, DsMobilePageDetailsComponent, DsMobilePageMainComponent, DsMobileActionsBottomSheetComponent as DsMobilePostActionsBottomSheetComponent, DsMobilePostComposerComponent, DsMobilePostCreateBottomSheetComponent, DsMobilePostDetailModalComponent, DsMobilePostDetailModalService, DsMobileProfileActionsSheetComponent, DsMobilePropertyBannerComponent, DsMobileSectionComponent, DsMobileTabBarComponent, DsMobileTabsComponent, DsTextInputComponent, MobileCommunityPageComponent, MobileHandbookPageComponent, MobileHomePageComponent, MobileInquiriesPageComponent, MobileInquiryDetailPageComponent, MobileModalBase, MobilePageBase, MobilePostDetailPageComponent, MobileTabsExampleComponent, PostActionsComponent, PostAttachmentsComponent, PostContentComponent, PostCreatePageComponent, PostMediaComponent, PostPdfAttachmentComponent, PostTextComponent, SectionHeaderComponent, SignInPageComponent, TileContentComponent, TileIconComponent, TileLabelComponent, TileValueComponent, UserService, WhitelabelDemoModalComponent, WhitelabelDemoModalService, WhitelabelService, customBackTransition, customPageTransition };
|
|
6798
|
+
export { ActionCommentComponent, ActionLikeComponent, ContentRowComponent, DsAppIconComponent, DsAvatarWithBadgeComponent, DsLogoComponent, DsMobileActionListItemComponent, DsMobileActionsBottomSheetComponent, DsMobileAttachmentPreviewComponent, DsMobileBottomSheetService, DsMobileBottomSheetWrapperComponent, DsMobileCardInlineBannerComponent, DsMobileCardInlineComponent, DsMobileCardInlineContactComponent, DsMobileCardInlineFileComponent, DsMobileChatModalComponent, DsMobileChatModalService, DsMobileActionsBottomSheetComponent as DsMobileCommentActionsBottomSheetComponent, DsMobileCommentComponent, DsMobileContactListItemComponent, DsMobileContentComponent, DsMobileDropdownComponent, DsMobileEmptyStateComponent, DsMobileFabComponent, DsMobileFileAttachmentComponent, DsMobileHandbookDetailModalComponent, DsMobileHandbookDetailModalService, DsMobileHandbookFolderComponent, DsMobileHandbookFolderMiniComponent, DsMobileHeaderContentComponent, DsMobileHeaderContentTileComponent, DsMobileIllustrationComponent, DsMobileInlinePhotoComponent, DsMobileInlineTabsComponent, DsMobileInteractiveListItemInquiryComponent, DsMobileInteractiveListItemMessageComponent, DsMobileInteractiveListItemPostComponent, DsMobileLightboxImageComponent as DsMobileLightboxComponent, DsMobileLightboxFooterComponent, DsMobileLightboxHeaderComponent, DsMobileLightboxImageComponent, DsMobileLightboxPdfComponent, DsMobileLightboxService, DsMobileListItemComponent, DsMobileListItemStaticComponent, DsMobileLoaderOverlayComponent, DsMobileLongPressDirective, DsMobileMessageBubbleComponent, DsMobileMessageComposerComponent, DsMobileModalBaseComponent, DsMobileModalService, DsMobileNewInquiryModalComponent, DsMobileNewInquiryModalService, DsMobileOfflineBannerComponent, DsMobilePageDetailsComponent, DsMobilePageMainComponent, DsMobileActionsBottomSheetComponent as DsMobilePostActionsBottomSheetComponent, DsMobilePostComposerComponent, DsMobilePostCreateBottomSheetComponent, DsMobilePostDetailModalComponent, DsMobilePostDetailModalService, DsMobileProfileActionsSheetComponent, DsMobilePropertyBannerComponent, DsMobileSectionComponent, DsMobileSwiperComponent, DsMobileSystemMessageBannerComponent, DsMobileTabBarComponent, DsMobileTabsComponent, DsTextInputComponent, MobileCommunityPageComponent, MobileHandbookPageComponent, MobileHomePageComponent, MobileInquiriesPageComponent, MobileInquiryDetailPageComponent, MobileModalBase, MobilePageBase, MobilePostDetailPageComponent, MobileTabsExampleComponent, PostActionsComponent, PostAttachmentsComponent, PostContentComponent, PostCreatePageComponent, PostMediaComponent, PostPdfAttachmentComponent, PostTextComponent, SectionHeaderComponent, SignInPageComponent, TileContentComponent, TileIconComponent, TileLabelComponent, TileValueComponent, UserService, WhitelabelDemoModalComponent, WhitelabelDemoModalService, WhitelabelService, customBackTransition, customPageTransition };
|
|
6656
6799
|
export type { ActionGroup, ActionItem, ActionResult, AppIconSize, AttachmentData, AttachmentFileType, AttachmentItem, AvatarSize, AvatarType, BadgePosition, BottomSheetOptions, ChatAttachment, ChatMessage, ChatModalData, ChatParticipant, Comment, ActionResult as CommentActionResult, CommentData, ContactItem, ContentWidth, DropdownAlign, DropdownPosition, DsMobileDropdownItem, HandbookDetailData, HandbookItem, InlineTabItem, InquiryPhoto, Language, LightboxAuthor, LightboxImage, LightboxImageOptions, LightboxMediaFile, LightboxMediaType, LightboxOptions, LightboxPdf, LightboxPdfOptions, LogoSize, LogoVariant, ModalOptions, NetworkStatus, NewInquiryData, NewInquiryModalOptions, Post, ActionResult as PostActionResult, PostDetailData, TabConfig, WhitelabelConfig };
|