@propbinder/mobile-design 0.2.14 → 0.2.15
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 +3721 -2258
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +923 -164
- package/package.json +1 -1
- package/styles/ionic.css +46 -22
- package/styles/mobile-page-base.css +20 -14
package/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterViewInit, OnInit, ElementRef, Injector, TemplateRef,
|
|
2
|
+
import { OnDestroy, AfterViewInit, OnInit, ElementRef, Injector, TemplateRef, EventEmitter, ApplicationRef, EnvironmentInjector, Type, AfterContentInit, ChangeDetectorRef } from '@angular/core';
|
|
3
3
|
import { ModalController, IonContent, NavController, GestureController, ModalOptions as ModalOptions$1 } from '@ionic/angular/standalone';
|
|
4
|
+
import { Style } from '@capacitor/status-bar';
|
|
4
5
|
import { ImpactStyle } from '@capacitor/haptics';
|
|
5
6
|
import { DsTextareaComponent } from '@propbinder/design-system';
|
|
6
7
|
import { ControlValueAccessor } from '@angular/forms';
|
|
8
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
7
9
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
8
10
|
import * as rxjs from 'rxjs';
|
|
9
11
|
import * as _propbinder_mobile_design from '@propbinder/mobile-design';
|
|
@@ -17,20 +19,29 @@ import { Animation } from '@ionic/angular';
|
|
|
17
19
|
* - 'full' - 100% width (no max)
|
|
18
20
|
*/
|
|
19
21
|
type ContentWidth = 'narrow' | 'standard' | 'wide' | 'full';
|
|
22
|
+
/**
|
|
23
|
+
* Network status type
|
|
24
|
+
*/
|
|
25
|
+
type NetworkStatus = 'online' | 'offline' | 'unknown';
|
|
20
26
|
/**
|
|
21
27
|
* MobilePageBase
|
|
22
28
|
*
|
|
23
29
|
* Shared base class for mobile page components (ds-mobile-page-main, ds-mobile-page-details).
|
|
24
|
-
* Provides consistent content width control across all page types.
|
|
30
|
+
* Provides consistent content width control and network status monitoring across all page types.
|
|
25
31
|
*
|
|
26
32
|
* **Padding Strategy:**
|
|
27
33
|
* - All pages use 20px horizontal padding globally
|
|
28
34
|
* - For tappable lists, use negative margins (e.g., margin: 0 -8px) to create full-width sections
|
|
29
35
|
* - This approach simplifies padding management and provides consistency
|
|
30
36
|
*
|
|
37
|
+
* **Network Monitoring:**
|
|
38
|
+
* - Tracks online/offline status via Capacitor Network plugin (native) or browser API (web)
|
|
39
|
+
* - Exposes `isOffline()` computed signal for easy consumption by child components
|
|
40
|
+
* - Pages can use this to conditionally disable features or show offline indicators
|
|
41
|
+
*
|
|
31
42
|
* @internal This is a base class and should not be used directly.
|
|
32
43
|
*/
|
|
33
|
-
declare abstract class MobilePageBase {
|
|
44
|
+
declare abstract class MobilePageBase implements OnDestroy {
|
|
34
45
|
/**
|
|
35
46
|
* Maximum content width (desktop only)
|
|
36
47
|
*
|
|
@@ -61,6 +72,68 @@ declare abstract class MobilePageBase {
|
|
|
61
72
|
* @internal
|
|
62
73
|
*/
|
|
63
74
|
protected maxWidthValue: _angular_core.Signal<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Network status signal
|
|
77
|
+
* Tracks current online/offline state
|
|
78
|
+
*
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
protected networkStatus: _angular_core.WritableSignal<NetworkStatus>;
|
|
82
|
+
/**
|
|
83
|
+
* Is the device currently offline?
|
|
84
|
+
* Public computed signal for consumption by child components and pages
|
|
85
|
+
*
|
|
86
|
+
* @example
|
|
87
|
+
* ```typescript
|
|
88
|
+
* // In a page component
|
|
89
|
+
* @ViewChild(DsMobilePageMainComponent) pageComponent!: DsMobilePageMainComponent;
|
|
90
|
+
*
|
|
91
|
+
* get isOffline() {
|
|
92
|
+
* return this.pageComponent?.isOffline();
|
|
93
|
+
* }
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
isOffline: _angular_core.Signal<boolean>;
|
|
97
|
+
/**
|
|
98
|
+
* Is the device currently online?
|
|
99
|
+
* Public computed signal for consumption by child components and pages
|
|
100
|
+
*/
|
|
101
|
+
isOnline: _angular_core.Signal<boolean>;
|
|
102
|
+
/**
|
|
103
|
+
* Network listener ID for Capacitor Network plugin
|
|
104
|
+
* Used to clean up listener on destroy
|
|
105
|
+
*
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
108
|
+
private networkListenerId?;
|
|
109
|
+
/**
|
|
110
|
+
* Browser API event handlers
|
|
111
|
+
* Stored as class properties for proper cleanup
|
|
112
|
+
*
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
private handleOnline;
|
|
116
|
+
private handleOffline;
|
|
117
|
+
/**
|
|
118
|
+
* Initialize network status monitoring
|
|
119
|
+
* Uses Capacitor Network plugin for native apps, browser API for web
|
|
120
|
+
*
|
|
121
|
+
* @param isNative - Whether running on native platform (iOS/Android)
|
|
122
|
+
* @internal Called by child components in ngAfterViewInit
|
|
123
|
+
*/
|
|
124
|
+
protected initNetworkMonitoring(isNative: boolean): Promise<void>;
|
|
125
|
+
/**
|
|
126
|
+
* Initialize browser-based network monitoring
|
|
127
|
+
* Uses navigator.onLine and window events
|
|
128
|
+
*
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
private initBrowserNetworkMonitoring;
|
|
132
|
+
/**
|
|
133
|
+
* Cleanup network monitoring listeners
|
|
134
|
+
* Called automatically on component destroy
|
|
135
|
+
*/
|
|
136
|
+
ngOnDestroy(): void;
|
|
64
137
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageBase, never>;
|
|
65
138
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageBase, never, never, { "contentWidth": { "alias": "contentWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
66
139
|
}
|
|
@@ -273,6 +346,7 @@ declare class DsMobilePostCreateBottomSheetComponent implements AfterViewInit, O
|
|
|
273
346
|
private elementRef;
|
|
274
347
|
textareaInput?: ElementRef<HTMLTextAreaElement>;
|
|
275
348
|
fileInput?: ElementRef<HTMLInputElement>;
|
|
349
|
+
private whitelabelService;
|
|
276
350
|
autoFocus: boolean;
|
|
277
351
|
isReadonly: boolean;
|
|
278
352
|
isEditMode: boolean;
|
|
@@ -308,11 +382,6 @@ declare class DsMobilePostCreateBottomSheetComponent implements AfterViewInit, O
|
|
|
308
382
|
handleCancel(): Promise<void>;
|
|
309
383
|
handlePost(): Promise<void>;
|
|
310
384
|
handleAddImage(): Promise<void>;
|
|
311
|
-
/**
|
|
312
|
-
* Restore StatusBar configuration (background task)
|
|
313
|
-
* Safe area padding is now handled preventively via applySafeAreaToToolbar()
|
|
314
|
-
*/
|
|
315
|
-
private restoreStatusBar;
|
|
316
385
|
handleRemoveImage(index: number): void;
|
|
317
386
|
handleAddAttachment(): void;
|
|
318
387
|
handleFileSelect(event: Event): void;
|
|
@@ -383,7 +452,7 @@ declare class DsMobileProfileActionsSheetComponent {
|
|
|
383
452
|
/**
|
|
384
453
|
* Current view state
|
|
385
454
|
*/
|
|
386
|
-
currentView: _angular_core.WritableSignal<"
|
|
455
|
+
currentView: _angular_core.WritableSignal<"main" | "language">;
|
|
387
456
|
/**
|
|
388
457
|
* Reference to the view container for height calculations
|
|
389
458
|
*/
|
|
@@ -499,6 +568,28 @@ declare class DsMobilePageMainComponent extends MobilePageBase implements AfterV
|
|
|
499
568
|
showCondensedHeader: _angular_core.InputSignal<boolean>;
|
|
500
569
|
scrollThreshold: _angular_core.InputSignal<number>;
|
|
501
570
|
headerFadeDistance: _angular_core.InputSignal<number>;
|
|
571
|
+
/**
|
|
572
|
+
* Content wrapper padding
|
|
573
|
+
* - '0' (default) - No padding, use ds-mobile-section for content organization
|
|
574
|
+
* - '20px' - Legacy padding for content without sections
|
|
575
|
+
* - Any custom CSS padding value
|
|
576
|
+
*
|
|
577
|
+
* Note: Bottom padding for safe area and tab bar is always preserved
|
|
578
|
+
*
|
|
579
|
+
* @example
|
|
580
|
+
* ```html
|
|
581
|
+
* <!-- Default: sections handle padding -->
|
|
582
|
+
* <ds-mobile-page-main title="Home">
|
|
583
|
+
* <ds-mobile-section>...</ds-mobile-section>
|
|
584
|
+
* </ds-mobile-page-main>
|
|
585
|
+
*
|
|
586
|
+
* <!-- Legacy: content without sections -->
|
|
587
|
+
* <ds-mobile-page-main title="Home" contentPadding="20px">
|
|
588
|
+
* <div>Content without sections...</div>
|
|
589
|
+
* </ds-mobile-page-main>
|
|
590
|
+
* ```
|
|
591
|
+
*/
|
|
592
|
+
contentPadding: _angular_core.InputSignal<string>;
|
|
502
593
|
/**
|
|
503
594
|
* Profile menu action groups to display when avatar is clicked.
|
|
504
595
|
* If not provided, a default menu will be used (without Whitelabel Demo).
|
|
@@ -548,7 +639,7 @@ declare class DsMobilePageMainComponent extends MobilePageBase implements AfterV
|
|
|
548
639
|
*/
|
|
549
640
|
handleRefresh(event: any): Promise<void>;
|
|
550
641
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePageMainComponent, never>;
|
|
551
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageMainComponent, "ds-mobile-page-main", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerSubtitle": { "alias": "headerSubtitle"; "required": false; "isSignal": true; }; "avatarType": { "alias": "avatarType"; "required": false; "isSignal": true; }; "avatarInitials": { "alias": "avatarInitials"; "required": false; "isSignal": true; }; "avatarSrc": { "alias": "avatarSrc"; "required": false; "isSignal": true; }; "avatarIconName": { "alias": "avatarIconName"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "showCondensedHeader": { "alias": "showCondensedHeader"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; "profileMenuItems": { "alias": "profileMenuItems"; "required": false; "isSignal": true; }; }, { "avatarClick": "avatarClick"; "profileActionSelected": "profileActionSelected"; "refresh": "refresh"; "scroll": "scroll"; }, never, ["[header-content]", "*"], true, never>;
|
|
642
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageMainComponent, "ds-mobile-page-main", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerSubtitle": { "alias": "headerSubtitle"; "required": false; "isSignal": true; }; "avatarType": { "alias": "avatarType"; "required": false; "isSignal": true; }; "avatarInitials": { "alias": "avatarInitials"; "required": false; "isSignal": true; }; "avatarSrc": { "alias": "avatarSrc"; "required": false; "isSignal": true; }; "avatarIconName": { "alias": "avatarIconName"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "showCondensedHeader": { "alias": "showCondensedHeader"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; "profileMenuItems": { "alias": "profileMenuItems"; "required": false; "isSignal": true; }; }, { "avatarClick": "avatarClick"; "profileActionSelected": "profileActionSelected"; "refresh": "refresh"; "scroll": "scroll"; }, never, ["[header-content]", "[offline-indicator]", "*"], true, never>;
|
|
552
643
|
}
|
|
553
644
|
|
|
554
645
|
interface InlineTabItem {
|
|
@@ -593,6 +684,176 @@ declare class DsMobileInlineTabsComponent {
|
|
|
593
684
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileInlineTabsComponent, "ds-mobile-inline-tabs", never, { "tabs": { "alias": "tabs"; "required": true; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": true; "isSignal": true; }; }, { "tabChange": "tabChange"; }, never, never, true, never>;
|
|
594
685
|
}
|
|
595
686
|
|
|
687
|
+
interface WhitelabelConfig {
|
|
688
|
+
logoUrl: string;
|
|
689
|
+
logoMarkUrl: string;
|
|
690
|
+
logoAlt: string;
|
|
691
|
+
logoSize: 'sm' | 'md' | 'lg' | 'xl';
|
|
692
|
+
logoWidth?: number;
|
|
693
|
+
logoHeight?: number;
|
|
694
|
+
logoMarkWidth?: number;
|
|
695
|
+
logoMarkHeight?: number;
|
|
696
|
+
appIconSurface: string;
|
|
697
|
+
appIconContent: string;
|
|
698
|
+
accent: string;
|
|
699
|
+
onAccent: string;
|
|
700
|
+
headerSurface: string;
|
|
701
|
+
headerContent: string;
|
|
702
|
+
headerAccent: string;
|
|
703
|
+
onHeaderAccent: string;
|
|
704
|
+
showCityIllustration: boolean;
|
|
705
|
+
signInBgType: 'solid' | 'gradient';
|
|
706
|
+
signInBgSolid: string;
|
|
707
|
+
signInBgGradientStart: string;
|
|
708
|
+
signInBgGradientEnd: string;
|
|
709
|
+
signInContentColor: string;
|
|
710
|
+
organizationName: string;
|
|
711
|
+
organizationId: string;
|
|
712
|
+
}
|
|
713
|
+
/**
|
|
714
|
+
* WhitelabelService
|
|
715
|
+
*
|
|
716
|
+
* Manages whitelabel configuration including logos and brand colors.
|
|
717
|
+
* Automatically updates CSS custom properties when colors change.
|
|
718
|
+
*
|
|
719
|
+
* @example
|
|
720
|
+
* Initialize with custom config:
|
|
721
|
+
* ```typescript
|
|
722
|
+
* whitelabelService.initialize({
|
|
723
|
+
* logoUrl: '/Assets/logos/acme-logo.svg',
|
|
724
|
+
* logoMarkUrl: '/Assets/logos/acme-mark.svg',
|
|
725
|
+
* accent: '#2563eb',
|
|
726
|
+
* onAccent: '#ffffff',
|
|
727
|
+
* headerSurface: '#1e40af',
|
|
728
|
+
* headerContent: '#ffffff',
|
|
729
|
+
* organizationName: 'Acme Corp'
|
|
730
|
+
* });
|
|
731
|
+
* ```
|
|
732
|
+
*
|
|
733
|
+
* Load from API:
|
|
734
|
+
* ```typescript
|
|
735
|
+
* await whitelabelService.loadFromApi('acme-corp');
|
|
736
|
+
* ```
|
|
737
|
+
*/
|
|
738
|
+
declare class WhitelabelService {
|
|
739
|
+
private _config;
|
|
740
|
+
readonly logoUrl: _angular_core.Signal<string>;
|
|
741
|
+
readonly logoMarkUrl: _angular_core.Signal<string>;
|
|
742
|
+
readonly logoAlt: _angular_core.Signal<string>;
|
|
743
|
+
readonly logoSize: _angular_core.Signal<"sm" | "md" | "lg" | "xl">;
|
|
744
|
+
readonly logoHeight: _angular_core.Signal<number>;
|
|
745
|
+
readonly appIconSurface: _angular_core.Signal<string>;
|
|
746
|
+
readonly appIconContent: _angular_core.Signal<string>;
|
|
747
|
+
readonly accent: _angular_core.Signal<string>;
|
|
748
|
+
readonly onAccent: _angular_core.Signal<string>;
|
|
749
|
+
readonly headerSurface: _angular_core.Signal<string>;
|
|
750
|
+
readonly headerContent: _angular_core.Signal<string>;
|
|
751
|
+
readonly headerAccent: _angular_core.Signal<string>;
|
|
752
|
+
readonly onHeaderAccent: _angular_core.Signal<string>;
|
|
753
|
+
readonly showCityIllustration: _angular_core.Signal<boolean>;
|
|
754
|
+
readonly signInBgType: _angular_core.Signal<"solid" | "gradient">;
|
|
755
|
+
readonly signInBgSolid: _angular_core.Signal<string>;
|
|
756
|
+
readonly signInBgGradientStart: _angular_core.Signal<string>;
|
|
757
|
+
readonly signInBgGradientEnd: _angular_core.Signal<string>;
|
|
758
|
+
readonly signInContentColor: _angular_core.Signal<string>;
|
|
759
|
+
readonly organizationName: _angular_core.Signal<string>;
|
|
760
|
+
readonly organizationId: _angular_core.Signal<string>;
|
|
761
|
+
readonly signInBgStyle: _angular_core.Signal<string>;
|
|
762
|
+
readonly config: _angular_core.Signal<WhitelabelConfig>;
|
|
763
|
+
constructor();
|
|
764
|
+
/**
|
|
765
|
+
* Setup global listener for modal dismiss events
|
|
766
|
+
* Re-applies status bar after modals close to override Ionic's cached state restoration
|
|
767
|
+
*/
|
|
768
|
+
private setupModalDismissListener;
|
|
769
|
+
/**
|
|
770
|
+
* Initialize whitelabel configuration
|
|
771
|
+
* Call this early in app initialization (app.config.ts or app.component.ts)
|
|
772
|
+
*/
|
|
773
|
+
initialize(config: Partial<WhitelabelConfig>): void;
|
|
774
|
+
/**
|
|
775
|
+
* Load whitelabel config from API
|
|
776
|
+
* Typically called on app startup based on subdomain, user tenant, etc.
|
|
777
|
+
*
|
|
778
|
+
* @param organizationId - The organization identifier (subdomain, tenant ID, etc.)
|
|
779
|
+
*/
|
|
780
|
+
loadFromApi(organizationId?: string): Promise<void>;
|
|
781
|
+
/**
|
|
782
|
+
* Update config dynamically (e.g., when user switches organizations)
|
|
783
|
+
*/
|
|
784
|
+
updateConfig(updates: Partial<WhitelabelConfig>): void;
|
|
785
|
+
/**
|
|
786
|
+
* Update only the brand colors
|
|
787
|
+
*/
|
|
788
|
+
updateColors(colors: {
|
|
789
|
+
appIconSurface?: string;
|
|
790
|
+
appIconContent?: string;
|
|
791
|
+
accent?: string;
|
|
792
|
+
onAccent?: string;
|
|
793
|
+
headerSurface?: string;
|
|
794
|
+
headerContent?: string;
|
|
795
|
+
headerAccent?: string;
|
|
796
|
+
onHeaderAccent?: string;
|
|
797
|
+
}): void;
|
|
798
|
+
/**
|
|
799
|
+
* Reset to default configuration
|
|
800
|
+
*/
|
|
801
|
+
resetToDefault(): void;
|
|
802
|
+
/**
|
|
803
|
+
* Convert hex color to RGB values
|
|
804
|
+
*/
|
|
805
|
+
private hexToRgb;
|
|
806
|
+
/**
|
|
807
|
+
* Calculate relative luminance of a color (WCAG standard)
|
|
808
|
+
* Returns a value between 0 (darkest) and 1 (lightest)
|
|
809
|
+
*/
|
|
810
|
+
private getRelativeLuminance;
|
|
811
|
+
/**
|
|
812
|
+
* Determine if a color is light (needs dark status bar content)
|
|
813
|
+
*/
|
|
814
|
+
private isColorLight;
|
|
815
|
+
/**
|
|
816
|
+
* Get the appropriate status bar style for a background color
|
|
817
|
+
* Public method for use by sign-in page
|
|
818
|
+
*/
|
|
819
|
+
getStatusBarStyleForColor(color: string): Style;
|
|
820
|
+
/**
|
|
821
|
+
* Generate a hover state color by applying a black overlay
|
|
822
|
+
* This simulates the effect of overlaying #000000 with 10% opacity
|
|
823
|
+
*
|
|
824
|
+
* @param baseColor - Hex color to overlay on (e.g., '#6B5FF5')
|
|
825
|
+
* @param overlayColor - Overlay color (default: '#000000' for darkening)
|
|
826
|
+
* @param overlayAlpha - Opacity of overlay (0-1, default: 0.1 = 10%)
|
|
827
|
+
* @returns Hex color with overlay applied
|
|
828
|
+
*
|
|
829
|
+
* @example
|
|
830
|
+
* generateHoverColor('#6B5FF5') // Returns darker purple for hover state
|
|
831
|
+
* generateHoverColor('#FF0000', '#FFFFFF', 0.2) // Lighten red by 20%
|
|
832
|
+
*/
|
|
833
|
+
private generateHoverColor;
|
|
834
|
+
/**
|
|
835
|
+
* Generate an active/pressed state color (darker than hover)
|
|
836
|
+
* Uses 20% black overlay for a more pronounced pressed effect
|
|
837
|
+
*
|
|
838
|
+
* @param baseColor - Hex color to overlay on
|
|
839
|
+
* @returns Hex color for active/pressed state
|
|
840
|
+
*/
|
|
841
|
+
private generateActiveColor;
|
|
842
|
+
/**
|
|
843
|
+
* Apply colors to CSS custom properties and native StatusBar
|
|
844
|
+
* This updates the actual CSS variables used throughout the app
|
|
845
|
+
* and the native status bar color on mobile devices
|
|
846
|
+
*/
|
|
847
|
+
private applyColors;
|
|
848
|
+
/**
|
|
849
|
+
* Update the native status bar color AND style
|
|
850
|
+
* Sets background color (Android) and content style (iOS/Android)
|
|
851
|
+
*/
|
|
852
|
+
private updateNativeStatusBar;
|
|
853
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WhitelabelService, never>;
|
|
854
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<WhitelabelService>;
|
|
855
|
+
}
|
|
856
|
+
|
|
596
857
|
/**
|
|
597
858
|
* DsMobilePageDetailsComponent
|
|
598
859
|
*
|
|
@@ -633,9 +894,19 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
633
894
|
private elementRef;
|
|
634
895
|
ionContent?: IonContent;
|
|
635
896
|
private platform;
|
|
897
|
+
whitelabelService: WhitelabelService;
|
|
636
898
|
isNativePlatform: _angular_core.Signal<boolean>;
|
|
637
899
|
title: _angular_core.InputSignal<string>;
|
|
638
900
|
backRoute: _angular_core.InputSignal<string>;
|
|
901
|
+
/**
|
|
902
|
+
* Content wrapper padding
|
|
903
|
+
* - '0' (default) - No padding, use ds-mobile-section for content organization
|
|
904
|
+
* - '20px' - Legacy padding for content without sections
|
|
905
|
+
* - Any custom CSS padding value
|
|
906
|
+
*
|
|
907
|
+
* Note: Bottom padding for safe area and tab bar is always preserved
|
|
908
|
+
*/
|
|
909
|
+
contentPadding: _angular_core.InputSignal<string>;
|
|
639
910
|
tabs: _angular_core.InputSignal<InlineTabItem[] | undefined>;
|
|
640
911
|
activeTab: _angular_core.InputSignal<string>;
|
|
641
912
|
showRefresh: _angular_core.InputSignal<boolean>;
|
|
@@ -671,7 +942,7 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
671
942
|
*/
|
|
672
943
|
handleRefresh(event: any): Promise<void>;
|
|
673
944
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePageDetailsComponent, never>;
|
|
674
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageDetailsComponent, "ds-mobile-page-details", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "backRoute": { "alias": "backRoute"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; }, { "back": "back"; "tabChange": "tabChange"; "refresh": "refresh"; "scroll": "scroll"; }, never, ["*"], true, never>;
|
|
945
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageDetailsComponent, "ds-mobile-page-details", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "backRoute": { "alias": "backRoute"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; }, { "back": "back"; "tabChange": "tabChange"; "refresh": "refresh"; "scroll": "scroll"; }, never, ["[offline-indicator]", "*"], true, never>;
|
|
675
946
|
}
|
|
676
947
|
|
|
677
948
|
/**
|
|
@@ -680,18 +951,21 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
680
951
|
* Main content container for mobile pages with flexible layout options.
|
|
681
952
|
* Provides consistent spacing and layout patterns.
|
|
682
953
|
*
|
|
954
|
+
* **Note:** For production use, prefer `ds-mobile-section` for individual sections.
|
|
955
|
+
* This component is maintained for grid layouts and prototyping.
|
|
956
|
+
*
|
|
683
957
|
* @example
|
|
684
958
|
* ```html
|
|
685
959
|
* <!-- Default: stacked layout -->
|
|
686
960
|
* <ds-mobile-content>
|
|
687
|
-
* <ds-mobile-
|
|
688
|
-
* <ds-mobile-
|
|
961
|
+
* <ds-mobile-section>...</ds-mobile-section>
|
|
962
|
+
* <ds-mobile-section>...</ds-mobile-section>
|
|
689
963
|
* </ds-mobile-content>
|
|
690
964
|
*
|
|
691
965
|
* <!-- Grid layout -->
|
|
692
966
|
* <ds-mobile-content layout="grid-2">
|
|
693
|
-
* <
|
|
694
|
-
* <
|
|
967
|
+
* <div>Grid item 1</div>
|
|
968
|
+
* <div>Grid item 2</div>
|
|
695
969
|
* </ds-mobile-content>
|
|
696
970
|
* ```
|
|
697
971
|
*/
|
|
@@ -706,25 +980,6 @@ declare class DsMobileContentComponent {
|
|
|
706
980
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileContentComponent, never>;
|
|
707
981
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileContentComponent, "ds-mobile-content", never, { "layout": { "alias": "layout"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
708
982
|
}
|
|
709
|
-
/**
|
|
710
|
-
* DsMobileContentSectionComponent
|
|
711
|
-
*
|
|
712
|
-
* Section within mobile content with optional header.
|
|
713
|
-
*
|
|
714
|
-
* @example
|
|
715
|
-
* ```html
|
|
716
|
-
* <ds-mobile-content-section>
|
|
717
|
-
* <section-header width="half"></section-header>
|
|
718
|
-
* <content-row>
|
|
719
|
-
* <div class="grey-box"></div>
|
|
720
|
-
* </content-row>
|
|
721
|
-
* </ds-mobile-content-section>
|
|
722
|
-
* ```
|
|
723
|
-
*/
|
|
724
|
-
declare class DsMobileContentSectionComponent {
|
|
725
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileContentSectionComponent, never>;
|
|
726
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileContentSectionComponent, "ds-mobile-content-section", never, {}, {}, never, ["section-header", "*"], true, never>;
|
|
727
|
-
}
|
|
728
983
|
/**
|
|
729
984
|
* SectionHeaderComponent
|
|
730
985
|
*
|
|
@@ -747,6 +1002,128 @@ declare class ContentRowComponent {
|
|
|
747
1002
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ContentRowComponent, "content-row", never, {}, {}, never, ["*"], true, never>;
|
|
748
1003
|
}
|
|
749
1004
|
|
|
1005
|
+
/**
|
|
1006
|
+
* DsMobileSectionComponent
|
|
1007
|
+
*
|
|
1008
|
+
* Universal section component for mobile pages, modals, and content containers.
|
|
1009
|
+
* Provides consistent layout with optional headlines, action links, flexible padding, and borders.
|
|
1010
|
+
*
|
|
1011
|
+
* **Features:**
|
|
1012
|
+
* - Optional section headline with icon support
|
|
1013
|
+
* - Optional action link with click handler
|
|
1014
|
+
* - Flexible padding control
|
|
1015
|
+
* - Border management (bottom border by default)
|
|
1016
|
+
* - Works in pages, modals, and any content container
|
|
1017
|
+
*
|
|
1018
|
+
* **Usage Patterns:**
|
|
1019
|
+
*
|
|
1020
|
+
* @example
|
|
1021
|
+
* ```html
|
|
1022
|
+
* <!-- Section with headline and link -->
|
|
1023
|
+
* <ds-mobile-section
|
|
1024
|
+
* headline="Recent Posts"
|
|
1025
|
+
* linkText="See all"
|
|
1026
|
+
* (linkClick)="navigate()">
|
|
1027
|
+
* <div class="posts-list">...</div>
|
|
1028
|
+
* </ds-mobile-section>
|
|
1029
|
+
*
|
|
1030
|
+
* <!-- Section with icon in headline -->
|
|
1031
|
+
* <ds-mobile-section
|
|
1032
|
+
* headline="Messages"
|
|
1033
|
+
* icon="remixChat3Line"
|
|
1034
|
+
* linkText="View all"
|
|
1035
|
+
* (linkClick)="viewMessages()">
|
|
1036
|
+
* <div class="messages">...</div>
|
|
1037
|
+
* </ds-mobile-section>
|
|
1038
|
+
*
|
|
1039
|
+
* <!-- Empty state section (no headline) -->
|
|
1040
|
+
* <ds-mobile-section>
|
|
1041
|
+
* <div class="empty-state">
|
|
1042
|
+
* <ds-avatar type="icon" iconName="remixInboxLine" />
|
|
1043
|
+
* <h3>No messages yet</h3>
|
|
1044
|
+
* </div>
|
|
1045
|
+
* </ds-mobile-section>
|
|
1046
|
+
*
|
|
1047
|
+
* <!-- Last section without border -->
|
|
1048
|
+
* <ds-mobile-section
|
|
1049
|
+
* headline="Contact"
|
|
1050
|
+
* [showBorder]="false">
|
|
1051
|
+
* <div class="contact-form">...</div>
|
|
1052
|
+
* </ds-mobile-section>
|
|
1053
|
+
*
|
|
1054
|
+
* <!-- Section with custom padding -->
|
|
1055
|
+
* <ds-mobile-section
|
|
1056
|
+
* headline="Photos"
|
|
1057
|
+
* padding="20px 0">
|
|
1058
|
+
* <div class="photo-grid">...</div>
|
|
1059
|
+
* </ds-mobile-section>
|
|
1060
|
+
*
|
|
1061
|
+
* <!-- Full-width section in page (default behavior) -->
|
|
1062
|
+
* <ds-mobile-page-main title="Home">
|
|
1063
|
+
* <ds-mobile-section headline="Posts">
|
|
1064
|
+
* <div class="posts">...</div>
|
|
1065
|
+
* </ds-mobile-section>
|
|
1066
|
+
* </ds-mobile-page-main>
|
|
1067
|
+
* ```
|
|
1068
|
+
*/
|
|
1069
|
+
declare class DsMobileSectionComponent {
|
|
1070
|
+
/**
|
|
1071
|
+
* Section headline text
|
|
1072
|
+
* @default ''
|
|
1073
|
+
*/
|
|
1074
|
+
headline: _angular_core.InputSignal<string>;
|
|
1075
|
+
/**
|
|
1076
|
+
* Optional icon to display before headline
|
|
1077
|
+
* @default ''
|
|
1078
|
+
*/
|
|
1079
|
+
icon: _angular_core.InputSignal<string>;
|
|
1080
|
+
/**
|
|
1081
|
+
* Link text (e.g., "See all", "View more")
|
|
1082
|
+
* When provided, displays a clickable link in the section header
|
|
1083
|
+
* @default ''
|
|
1084
|
+
*/
|
|
1085
|
+
linkText: _angular_core.InputSignal<string>;
|
|
1086
|
+
/**
|
|
1087
|
+
* Section padding
|
|
1088
|
+
* Accepts any valid CSS padding value
|
|
1089
|
+
* When not set, defaults to 20px on mobile and 32px on desktop
|
|
1090
|
+
* @default ''
|
|
1091
|
+
*/
|
|
1092
|
+
padding: _angular_core.InputSignal<string>;
|
|
1093
|
+
/**
|
|
1094
|
+
* Gap between section header and content
|
|
1095
|
+
* Accepts any valid CSS gap value
|
|
1096
|
+
* @default '12px'
|
|
1097
|
+
*/
|
|
1098
|
+
gap: _angular_core.InputSignal<string>;
|
|
1099
|
+
/**
|
|
1100
|
+
* Gap between child elements within section-content
|
|
1101
|
+
* Accepts any valid CSS gap value
|
|
1102
|
+
* @default '12px'
|
|
1103
|
+
*/
|
|
1104
|
+
contentGap: _angular_core.InputSignal<string>;
|
|
1105
|
+
/**
|
|
1106
|
+
* Whether to show bottom border
|
|
1107
|
+
* @default true
|
|
1108
|
+
*/
|
|
1109
|
+
showBorder: _angular_core.InputSignal<boolean>;
|
|
1110
|
+
/**
|
|
1111
|
+
* CSS overflow property for the section
|
|
1112
|
+
* @default 'visible'
|
|
1113
|
+
*/
|
|
1114
|
+
overflow: _angular_core.InputSignal<string>;
|
|
1115
|
+
/**
|
|
1116
|
+
* Emitted when section link is clicked
|
|
1117
|
+
*/
|
|
1118
|
+
linkClick: _angular_core.OutputEmitterRef<void>;
|
|
1119
|
+
/**
|
|
1120
|
+
* Handle link click event
|
|
1121
|
+
*/
|
|
1122
|
+
handleLinkClick(): void;
|
|
1123
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileSectionComponent, never>;
|
|
1124
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileSectionComponent, "ds-mobile-section", never, { "headline": { "alias": "headline"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "linkText": { "alias": "linkText"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "contentGap": { "alias": "contentGap"; "required": false; "isSignal": true; }; "showBorder": { "alias": "showBorder"; "required": false; "isSignal": true; }; "overflow": { "alias": "overflow"; "required": false; "isSignal": true; }; }, { "linkClick": "linkClick"; }, never, ["*"], true, never>;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
750
1127
|
/**
|
|
751
1128
|
* DsMobileHeaderContentComponent
|
|
752
1129
|
*
|
|
@@ -2532,7 +2909,7 @@ interface TabConfig {
|
|
|
2532
2909
|
* ```css
|
|
2533
2910
|
* ion-tabs {
|
|
2534
2911
|
* height: 100%;
|
|
2535
|
-
* background: var(--color-
|
|
2912
|
+
* background: var(--color-header-surface);
|
|
2536
2913
|
* }
|
|
2537
2914
|
* ```
|
|
2538
2915
|
*/
|
|
@@ -3115,12 +3492,21 @@ declare class DsMobileLightboxFooterComponent {
|
|
|
3115
3492
|
* />
|
|
3116
3493
|
* ```
|
|
3117
3494
|
*/
|
|
3118
|
-
declare class DsMobileInlinePhotoComponent {
|
|
3495
|
+
declare class DsMobileInlinePhotoComponent implements OnInit {
|
|
3119
3496
|
private lightboxService;
|
|
3120
3497
|
/**
|
|
3121
3498
|
* Array of image URLs to display
|
|
3122
3499
|
*/
|
|
3123
3500
|
images: string[];
|
|
3501
|
+
/**
|
|
3502
|
+
* Optional array of loading states for each image (by index)
|
|
3503
|
+
* If provided, shows loader overlay for images that are still loading
|
|
3504
|
+
*/
|
|
3505
|
+
loadingStates?: boolean[];
|
|
3506
|
+
/**
|
|
3507
|
+
* Internal signal to track image loading states
|
|
3508
|
+
*/
|
|
3509
|
+
private internalLoadingStates;
|
|
3124
3510
|
/**
|
|
3125
3511
|
* Author information (passed to lightbox)
|
|
3126
3512
|
*/
|
|
@@ -3137,6 +3523,11 @@ declare class DsMobileInlinePhotoComponent {
|
|
|
3137
3523
|
* Remaining images shown in lightbox only
|
|
3138
3524
|
*/
|
|
3139
3525
|
maxVisible: number;
|
|
3526
|
+
/**
|
|
3527
|
+
* Whether to use grid layout (true) or flex-wrap layout (false)
|
|
3528
|
+
* @default true
|
|
3529
|
+
*/
|
|
3530
|
+
useGrid: boolean;
|
|
3140
3531
|
/**
|
|
3141
3532
|
* Event emitted when lightbox is opened
|
|
3142
3533
|
*/
|
|
@@ -3145,10 +3536,26 @@ declare class DsMobileInlinePhotoComponent {
|
|
|
3145
3536
|
totalImages: number;
|
|
3146
3537
|
}>;
|
|
3147
3538
|
constructor(lightboxService: DsMobileLightboxService);
|
|
3539
|
+
/**
|
|
3540
|
+
* Initialize loading states for all visible images
|
|
3541
|
+
*/
|
|
3542
|
+
ngOnInit(): void;
|
|
3543
|
+
/**
|
|
3544
|
+
* Handle image load event
|
|
3545
|
+
*/
|
|
3546
|
+
onImageLoad(index: number): void;
|
|
3547
|
+
/**
|
|
3548
|
+
* Handle image error event
|
|
3549
|
+
*/
|
|
3550
|
+
onImageError(index: number): void;
|
|
3148
3551
|
/**
|
|
3149
3552
|
* Get the first N images to display inline
|
|
3150
3553
|
*/
|
|
3151
3554
|
get visibleImages(): string[];
|
|
3555
|
+
/**
|
|
3556
|
+
* Check if a specific image is loading
|
|
3557
|
+
*/
|
|
3558
|
+
isImageLoading(index: number): boolean;
|
|
3152
3559
|
/**
|
|
3153
3560
|
* Calculate how many images are hidden
|
|
3154
3561
|
*/
|
|
@@ -3158,7 +3565,63 @@ declare class DsMobileInlinePhotoComponent {
|
|
|
3158
3565
|
*/
|
|
3159
3566
|
openLightbox(index: number, event?: Event): void;
|
|
3160
3567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileInlinePhotoComponent, never>;
|
|
3161
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileInlinePhotoComponent, "ds-mobile-inline-photo", never, { "images": { "alias": "images"; "required": false; }; "author": { "alias": "author"; "required": false; }; "maxVisible": { "alias": "maxVisible"; "required": false; }; }, { "photoClick": "photoClick"; }, never, never, true, never>;
|
|
3568
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileInlinePhotoComponent, "ds-mobile-inline-photo", never, { "images": { "alias": "images"; "required": false; }; "loadingStates": { "alias": "loadingStates"; "required": false; }; "author": { "alias": "author"; "required": false; }; "maxVisible": { "alias": "maxVisible"; "required": false; }; "useGrid": { "alias": "useGrid"; "required": false; }; }, { "photoClick": "photoClick"; }, never, never, true, never>;
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3571
|
+
/**
|
|
3572
|
+
* DsMobileLoaderOverlayComponent
|
|
3573
|
+
*
|
|
3574
|
+
* Reusable loader overlay component that displays a spinner centered over its container.
|
|
3575
|
+
* Designed to overlay images or other content during loading states.
|
|
3576
|
+
*
|
|
3577
|
+
* Features:
|
|
3578
|
+
* - Semi-transparent white background overlay
|
|
3579
|
+
* - Centered animated spinner
|
|
3580
|
+
* - Customizable spinner size
|
|
3581
|
+
* - Absolute positioning to cover parent
|
|
3582
|
+
* - Accessible with proper z-index stacking
|
|
3583
|
+
*
|
|
3584
|
+
* @example
|
|
3585
|
+
* ```html
|
|
3586
|
+
* <!-- Basic usage -->
|
|
3587
|
+
* <div style="position: relative;">
|
|
3588
|
+
* <img src="image.jpg" alt="Content" />
|
|
3589
|
+
* @if (isLoading) {
|
|
3590
|
+
* <ds-mobile-loader-overlay />
|
|
3591
|
+
* }
|
|
3592
|
+
* </div>
|
|
3593
|
+
*
|
|
3594
|
+
* <!-- With custom spinner size -->
|
|
3595
|
+
* <div style="position: relative;">
|
|
3596
|
+
* <div class="content">Loading content...</div>
|
|
3597
|
+
* <ds-mobile-loader-overlay [spinnerSize]="32" />
|
|
3598
|
+
* </div>
|
|
3599
|
+
*
|
|
3600
|
+
* <!-- Over an image with rounded corners -->
|
|
3601
|
+
* <div style="position: relative; border-radius: 12px; overflow: hidden;">
|
|
3602
|
+
* <img src="photo.jpg" />
|
|
3603
|
+
* <ds-mobile-loader-overlay [borderRadius]="12" />
|
|
3604
|
+
* </div>
|
|
3605
|
+
* ```
|
|
3606
|
+
*
|
|
3607
|
+
* @notes
|
|
3608
|
+
* - Parent container must have position: relative for the overlay to work correctly
|
|
3609
|
+
* - The overlay covers the entire parent element using inset: 0
|
|
3610
|
+
* - Spinner animation runs continuously at 0.6s per rotation
|
|
3611
|
+
*/
|
|
3612
|
+
declare class DsMobileLoaderOverlayComponent {
|
|
3613
|
+
/**
|
|
3614
|
+
* Size of the spinner in pixels
|
|
3615
|
+
* @default 24
|
|
3616
|
+
*/
|
|
3617
|
+
spinnerSize: _angular_core.InputSignal<number>;
|
|
3618
|
+
/**
|
|
3619
|
+
* Border radius of the overlay in pixels (should match parent's border radius)
|
|
3620
|
+
* @default 0
|
|
3621
|
+
*/
|
|
3622
|
+
borderRadius: _angular_core.InputSignal<number>;
|
|
3623
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileLoaderOverlayComponent, never>;
|
|
3624
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileLoaderOverlayComponent, "ds-mobile-loader-overlay", never, { "spinnerSize": { "alias": "spinnerSize"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3162
3625
|
}
|
|
3163
3626
|
|
|
3164
3627
|
/**
|
|
@@ -3421,9 +3884,32 @@ declare abstract class MobileModalBase implements OnInit, OnDestroy {
|
|
|
3421
3884
|
*/
|
|
3422
3885
|
hasFixedBottom: _angular_core.InputSignal<boolean>;
|
|
3423
3886
|
/**
|
|
3424
|
-
*
|
|
3425
|
-
|
|
3426
|
-
|
|
3887
|
+
* Content padding for modal content
|
|
3888
|
+
* Controls padding inside .modal-main-content
|
|
3889
|
+
* - '0' (default) - No padding, use ds-mobile-section for content organization
|
|
3890
|
+
* - '20px' - Legacy padding for content without sections
|
|
3891
|
+
* - Any custom CSS padding value
|
|
3892
|
+
*
|
|
3893
|
+
* @default '0'
|
|
3894
|
+
*
|
|
3895
|
+
* @example
|
|
3896
|
+
* ```html
|
|
3897
|
+
* <!-- Default: sections handle padding -->
|
|
3898
|
+
* <ds-mobile-modal-base headerTitle="Details">
|
|
3899
|
+
* <ds-mobile-section headline="Info">...</ds-mobile-section>
|
|
3900
|
+
* </ds-mobile-modal-base>
|
|
3901
|
+
*
|
|
3902
|
+
* <!-- Legacy: content without sections -->
|
|
3903
|
+
* <ds-mobile-modal-base headerTitle="Details" contentPadding="20px">
|
|
3904
|
+
* <div>Padded content</div>
|
|
3905
|
+
* </ds-mobile-modal-base>
|
|
3906
|
+
* ```
|
|
3907
|
+
*/
|
|
3908
|
+
contentPadding: _angular_core.InputSignal<string>;
|
|
3909
|
+
/**
|
|
3910
|
+
* Emitted when modal is closed
|
|
3911
|
+
*/
|
|
3912
|
+
closed: _angular_core.OutputEmitterRef<void>;
|
|
3427
3913
|
/**
|
|
3428
3914
|
* Emitted when keyboard is about to show
|
|
3429
3915
|
* Provides keyboard height in pixels
|
|
@@ -3461,7 +3947,7 @@ declare abstract class MobileModalBase implements OnInit, OnDestroy {
|
|
|
3461
3947
|
*/
|
|
3462
3948
|
protected cleanupKeyboardListeners(): void;
|
|
3463
3949
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobileModalBase, never>;
|
|
3464
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobileModalBase, never, never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerMeta": { "alias": "headerMeta"; "required": false; "isSignal": true; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; "isSignal": true; }; "enableKeyboardHandling": { "alias": "enableKeyboardHandling"; "required": false; "isSignal": true; }; "hasFixedBottom": { "alias": "hasFixedBottom"; "required": false; "isSignal": true; }; }, { "closed": "closed"; "keyboardWillShow": "keyboardWillShow"; "keyboardWillHide": "keyboardWillHide"; }, never, never, true, never>;
|
|
3950
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobileModalBase, never, never, { "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerMeta": { "alias": "headerMeta"; "required": false; "isSignal": true; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; "isSignal": true; }; "enableKeyboardHandling": { "alias": "enableKeyboardHandling"; "required": false; "isSignal": true; }; "hasFixedBottom": { "alias": "hasFixedBottom"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; }, { "closed": "closed"; "keyboardWillShow": "keyboardWillShow"; "keyboardWillHide": "keyboardWillHide"; }, never, never, true, never>;
|
|
3465
3951
|
}
|
|
3466
3952
|
|
|
3467
3953
|
/**
|
|
@@ -4881,6 +5367,7 @@ interface ContactItem {
|
|
|
4881
5367
|
* This component is typically not used directly - use DsMobileHandbookDetailModalService instead.
|
|
4882
5368
|
*/
|
|
4883
5369
|
declare class DsMobileHandbookDetailModalComponent implements OnInit {
|
|
5370
|
+
private modalController;
|
|
4884
5371
|
handbookData: HandbookDetailData;
|
|
4885
5372
|
/**
|
|
4886
5373
|
* Loading state - when true, shows loading indicator
|
|
@@ -4891,6 +5378,7 @@ declare class DsMobileHandbookDetailModalComponent implements OnInit {
|
|
|
4891
5378
|
*/
|
|
4892
5379
|
error?: string;
|
|
4893
5380
|
handbook: _angular_core.WritableSignal<HandbookDetailData>;
|
|
5381
|
+
constructor(modalController: ModalController);
|
|
4894
5382
|
ngOnInit(): void;
|
|
4895
5383
|
/**
|
|
4896
5384
|
* Split handbook items to enforce content structure rules:
|
|
@@ -4906,9 +5394,17 @@ declare class DsMobileHandbookDetailModalComponent implements OnInit {
|
|
|
4906
5394
|
*/
|
|
4907
5395
|
getDisplayItems(): HandbookItem[];
|
|
4908
5396
|
/**
|
|
4909
|
-
* Handle contact click
|
|
5397
|
+
* Handle contact click - shows bottom sheet with call and copy actions
|
|
4910
5398
|
*/
|
|
4911
|
-
handleContactClick(contact: ContactItem): void
|
|
5399
|
+
handleContactClick(contact: ContactItem): Promise<void>;
|
|
5400
|
+
/**
|
|
5401
|
+
* Handle the selected contact action
|
|
5402
|
+
*/
|
|
5403
|
+
private handleContactAction;
|
|
5404
|
+
/**
|
|
5405
|
+
* Fallback method for copying text to clipboard (for older browsers/webviews)
|
|
5406
|
+
*/
|
|
5407
|
+
private fallbackCopyToClipboard;
|
|
4912
5408
|
/**
|
|
4913
5409
|
* Handle attachment click
|
|
4914
5410
|
*/
|
|
@@ -5267,127 +5763,43 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
|
|
|
5267
5763
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileFabComponent, "ds-mobile-fab", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "fabClick": "fabClick"; }, never, never, true, never>;
|
|
5268
5764
|
}
|
|
5269
5765
|
|
|
5270
|
-
|
|
5271
|
-
logoUrl: string;
|
|
5272
|
-
logoMarkUrl: string;
|
|
5273
|
-
logoAlt: string;
|
|
5274
|
-
logoWidth?: number;
|
|
5275
|
-
logoHeight?: number;
|
|
5276
|
-
logoMarkWidth?: number;
|
|
5277
|
-
logoMarkHeight?: number;
|
|
5278
|
-
primarySurface: string;
|
|
5279
|
-
primaryContent: string;
|
|
5280
|
-
secondarySurface: string;
|
|
5281
|
-
secondaryContent: string;
|
|
5282
|
-
organizationName: string;
|
|
5283
|
-
organizationId: string;
|
|
5284
|
-
}
|
|
5766
|
+
type AppIconSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
5285
5767
|
/**
|
|
5286
|
-
*
|
|
5768
|
+
* DsAppIconComponent
|
|
5287
5769
|
*
|
|
5288
|
-
*
|
|
5289
|
-
*
|
|
5770
|
+
* Displays the organization's logomark styled as an app icon with rounded corners
|
|
5771
|
+
* and shadow. The logomark fill color adapts to the background.
|
|
5772
|
+
* Perfect for sign-in pages, splash screens, etc.
|
|
5773
|
+
*
|
|
5774
|
+
* Uses percentage-based padding and border-radius for perfect proportional scaling.
|
|
5290
5775
|
*
|
|
5291
5776
|
* @example
|
|
5292
|
-
*
|
|
5293
|
-
* ```
|
|
5294
|
-
*
|
|
5295
|
-
* logoUrl: '/Assets/logos/acme-logo.svg',
|
|
5296
|
-
* logoMarkUrl: '/Assets/logos/acme-mark.svg',
|
|
5297
|
-
* primaryColor: '#2563eb',
|
|
5298
|
-
* secondaryColor: '#3b82f6',
|
|
5299
|
-
* organizationName: 'Acme Corp'
|
|
5300
|
-
* });
|
|
5777
|
+
* Sign-in page (large):
|
|
5778
|
+
* ```html
|
|
5779
|
+
* <ds-app-icon size="xl" />
|
|
5301
5780
|
* ```
|
|
5302
5781
|
*
|
|
5303
|
-
*
|
|
5304
|
-
* ```
|
|
5305
|
-
*
|
|
5782
|
+
* Settings preview (small):
|
|
5783
|
+
* ```html
|
|
5784
|
+
* <ds-app-icon size="sm" />
|
|
5306
5785
|
* ```
|
|
5307
5786
|
*/
|
|
5308
|
-
declare class
|
|
5309
|
-
|
|
5310
|
-
readonly logoUrl: _angular_core.Signal<string>;
|
|
5311
|
-
readonly logoMarkUrl: _angular_core.Signal<string>;
|
|
5312
|
-
readonly logoAlt: _angular_core.Signal<string>;
|
|
5313
|
-
readonly logoHeight: _angular_core.Signal<number>;
|
|
5314
|
-
readonly primarySurface: _angular_core.Signal<string>;
|
|
5315
|
-
readonly primaryContent: _angular_core.Signal<string>;
|
|
5316
|
-
readonly secondarySurface: _angular_core.Signal<string>;
|
|
5317
|
-
readonly secondaryContent: _angular_core.Signal<string>;
|
|
5318
|
-
readonly organizationName: _angular_core.Signal<string>;
|
|
5319
|
-
readonly organizationId: _angular_core.Signal<string>;
|
|
5320
|
-
readonly config: _angular_core.Signal<WhitelabelConfig>;
|
|
5321
|
-
constructor();
|
|
5322
|
-
/**
|
|
5323
|
-
* Initialize whitelabel configuration
|
|
5324
|
-
* Call this early in app initialization (app.config.ts or app.component.ts)
|
|
5325
|
-
*/
|
|
5326
|
-
initialize(config: Partial<WhitelabelConfig>): void;
|
|
5327
|
-
/**
|
|
5328
|
-
* Load whitelabel config from API
|
|
5329
|
-
* Typically called on app startup based on subdomain, user tenant, etc.
|
|
5330
|
-
*
|
|
5331
|
-
* @param organizationId - The organization identifier (subdomain, tenant ID, etc.)
|
|
5332
|
-
*/
|
|
5333
|
-
loadFromApi(organizationId?: string): Promise<void>;
|
|
5334
|
-
/**
|
|
5335
|
-
* Update config dynamically (e.g., when user switches organizations)
|
|
5336
|
-
*/
|
|
5337
|
-
updateConfig(updates: Partial<WhitelabelConfig>): void;
|
|
5338
|
-
/**
|
|
5339
|
-
* Update only the brand colors
|
|
5340
|
-
*/
|
|
5341
|
-
updateColors(colors: {
|
|
5342
|
-
primarySurface?: string;
|
|
5343
|
-
primaryContent?: string;
|
|
5344
|
-
secondarySurface?: string;
|
|
5345
|
-
secondaryContent?: string;
|
|
5346
|
-
}): void;
|
|
5347
|
-
/**
|
|
5348
|
-
* Reset to default configuration
|
|
5349
|
-
*/
|
|
5350
|
-
resetToDefault(): void;
|
|
5351
|
-
/**
|
|
5352
|
-
* Convert hex color to RGB values
|
|
5353
|
-
*/
|
|
5354
|
-
private hexToRgb;
|
|
5355
|
-
/**
|
|
5356
|
-
* Generate a hover state color by applying a black overlay
|
|
5357
|
-
* This simulates the effect of overlaying #000000 with 10% opacity
|
|
5358
|
-
*
|
|
5359
|
-
* @param baseColor - Hex color to overlay on (e.g., '#6B5FF5')
|
|
5360
|
-
* @param overlayColor - Overlay color (default: '#000000' for darkening)
|
|
5361
|
-
* @param overlayAlpha - Opacity of overlay (0-1, default: 0.1 = 10%)
|
|
5362
|
-
* @returns Hex color with overlay applied
|
|
5363
|
-
*
|
|
5364
|
-
* @example
|
|
5365
|
-
* generateHoverColor('#6B5FF5') // Returns darker purple for hover state
|
|
5366
|
-
* generateHoverColor('#FF0000', '#FFFFFF', 0.2) // Lighten red by 20%
|
|
5367
|
-
*/
|
|
5368
|
-
private generateHoverColor;
|
|
5369
|
-
/**
|
|
5370
|
-
* Generate an active/pressed state color (darker than hover)
|
|
5371
|
-
* Uses 20% black overlay for a more pronounced pressed effect
|
|
5372
|
-
*
|
|
5373
|
-
* @param baseColor - Hex color to overlay on
|
|
5374
|
-
* @returns Hex color for active/pressed state
|
|
5375
|
-
*/
|
|
5376
|
-
private generateActiveColor;
|
|
5787
|
+
declare class DsAppIconComponent {
|
|
5788
|
+
whitelabelService: WhitelabelService;
|
|
5377
5789
|
/**
|
|
5378
|
-
*
|
|
5379
|
-
*
|
|
5380
|
-
*
|
|
5790
|
+
* Size of the app icon
|
|
5791
|
+
* - sm: 16x16px (padding: 2.4px, radius: 3.2px)
|
|
5792
|
+
* - md: 32x32px (padding: 4.8px, radius: 6.4px)
|
|
5793
|
+
* - lg: 48x48px (padding: 7.2px, radius: 9.6px)
|
|
5794
|
+
* - xl: 64x64px (padding: 9.6px, radius: 12.8px)
|
|
5381
5795
|
*/
|
|
5382
|
-
|
|
5796
|
+
size: AppIconSize;
|
|
5383
5797
|
/**
|
|
5384
|
-
*
|
|
5385
|
-
* Note: This only works on Android. On iOS, the status bar is transparent
|
|
5386
|
-
* and shows the web content behind it (controlled by CSS variables)
|
|
5798
|
+
* Computed CSS class for size variant
|
|
5387
5799
|
*/
|
|
5388
|
-
|
|
5389
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
5390
|
-
static
|
|
5800
|
+
sizeClass: _angular_core.Signal<string>;
|
|
5801
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsAppIconComponent, never>;
|
|
5802
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsAppIconComponent, "ds-app-icon", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
5391
5803
|
}
|
|
5392
5804
|
|
|
5393
5805
|
type AvatarType = 'initials' | 'photo' | 'icon';
|
|
@@ -5419,10 +5831,50 @@ declare class DsAvatarWithBadgeComponent {
|
|
|
5419
5831
|
showBadge: boolean;
|
|
5420
5832
|
badgePosition: BadgePosition;
|
|
5421
5833
|
badgeClasses: _angular_core.Signal<string>;
|
|
5834
|
+
/**
|
|
5835
|
+
* Computed badge icon size that scales with avatar size
|
|
5836
|
+
* Maps avatar sizes to appropriate app icon sizes
|
|
5837
|
+
*/
|
|
5838
|
+
badgeIconSize: _angular_core.Signal<AppIconSize>;
|
|
5422
5839
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsAvatarWithBadgeComponent, never>;
|
|
5423
5840
|
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>;
|
|
5424
5841
|
}
|
|
5425
5842
|
|
|
5843
|
+
type LogoVariant = 'full' | 'mark';
|
|
5844
|
+
type LogoSize = 'sm' | 'md' | 'lg' | 'xl';
|
|
5845
|
+
/**
|
|
5846
|
+
* DsLogoComponent
|
|
5847
|
+
*
|
|
5848
|
+
* Displays the whitelabeled logo or logomark based on current configuration.
|
|
5849
|
+
* Automatically pulls logo assets from WhitelabelService.
|
|
5850
|
+
*
|
|
5851
|
+
* @example
|
|
5852
|
+
* Full logo in header:
|
|
5853
|
+
* ```html
|
|
5854
|
+
* <ds-logo variant="full" size="md" />
|
|
5855
|
+
* ```
|
|
5856
|
+
*
|
|
5857
|
+
* Logomark for compact spaces:
|
|
5858
|
+
* ```html
|
|
5859
|
+
* <ds-logo variant="mark" size="sm" />
|
|
5860
|
+
* ```
|
|
5861
|
+
*/
|
|
5862
|
+
declare class DsLogoComponent {
|
|
5863
|
+
whitelabelService: WhitelabelService;
|
|
5864
|
+
variant: LogoVariant;
|
|
5865
|
+
size: LogoSize;
|
|
5866
|
+
customHeight?: number;
|
|
5867
|
+
customWidth?: number;
|
|
5868
|
+
get logoSrc(): string;
|
|
5869
|
+
get logoAlt(): string;
|
|
5870
|
+
/**
|
|
5871
|
+
* Priority: customHeight input > whitelabel config logoHeight > default 32px
|
|
5872
|
+
*/
|
|
5873
|
+
get effectiveHeight(): number;
|
|
5874
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsLogoComponent, never>;
|
|
5875
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsLogoComponent, "ds-logo", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "customHeight": { "alias": "customHeight"; "required": false; }; "customWidth": { "alias": "customWidth"; "required": false; }; }, {}, never, never, true, never>;
|
|
5876
|
+
}
|
|
5877
|
+
|
|
5426
5878
|
/**
|
|
5427
5879
|
* DsMobileEmptyStateComponent
|
|
5428
5880
|
*
|
|
@@ -5439,7 +5891,7 @@ declare class DsAvatarWithBadgeComponent {
|
|
|
5439
5891
|
* ```html
|
|
5440
5892
|
* <!-- With image -->
|
|
5441
5893
|
* <ds-mobile-empty-state
|
|
5442
|
-
* [imageSrc]="'/Assets/
|
|
5894
|
+
* [imageSrc]="'/Assets/empty-state-inquiry.svg'"
|
|
5443
5895
|
* [imageAlt]="'No messages'"
|
|
5444
5896
|
* [title]="'Ingen beskeder endnu'"
|
|
5445
5897
|
* [description]="'Start samtalen ved at sende en besked'">
|
|
@@ -5473,6 +5925,201 @@ declare class DsMobileEmptyStateComponent {
|
|
|
5473
5925
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileEmptyStateComponent, "ds-mobile-empty-state", never, { "imageSrc": { "alias": "imageSrc"; "required": false; "isSignal": true; }; "imageAlt": { "alias": "imageAlt"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5474
5926
|
}
|
|
5475
5927
|
|
|
5928
|
+
/**
|
|
5929
|
+
* DsMobileOfflineBannerComponent
|
|
5930
|
+
*
|
|
5931
|
+
* A compact banner component to indicate offline status.
|
|
5932
|
+
* Designed to be used in the [offline-indicator] slot of page components.
|
|
5933
|
+
*
|
|
5934
|
+
* Features:
|
|
5935
|
+
* - Amber/yellow warning styling
|
|
5936
|
+
* - WiFi off icon
|
|
5937
|
+
* - Customizable message
|
|
5938
|
+
* - Compact, non-intrusive design
|
|
5939
|
+
* - Smooth slide-in animation
|
|
5940
|
+
*
|
|
5941
|
+
* @example
|
|
5942
|
+
* ```html
|
|
5943
|
+
* <ds-mobile-page-main title="Community">
|
|
5944
|
+
* <ds-mobile-offline-banner
|
|
5945
|
+
* offline-indicator
|
|
5946
|
+
* *ngIf="pageComponent.isOffline()">
|
|
5947
|
+
* </ds-mobile-offline-banner>
|
|
5948
|
+
*
|
|
5949
|
+
* <!-- Page content -->
|
|
5950
|
+
* </ds-mobile-page-main>
|
|
5951
|
+
* ```
|
|
5952
|
+
*/
|
|
5953
|
+
declare class DsMobileOfflineBannerComponent {
|
|
5954
|
+
/**
|
|
5955
|
+
* Icon to display (default: WiFi off icon)
|
|
5956
|
+
*/
|
|
5957
|
+
icon: _angular_core.InputSignal<string>;
|
|
5958
|
+
/**
|
|
5959
|
+
* Title text for the banner
|
|
5960
|
+
*/
|
|
5961
|
+
title: _angular_core.InputSignal<string>;
|
|
5962
|
+
/**
|
|
5963
|
+
* Optional secondary message
|
|
5964
|
+
*/
|
|
5965
|
+
message: _angular_core.InputSignal<string>;
|
|
5966
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileOfflineBannerComponent, never>;
|
|
5967
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileOfflineBannerComponent, "ds-mobile-offline-banner", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5968
|
+
}
|
|
5969
|
+
|
|
5970
|
+
/**
|
|
5971
|
+
* DsMobileIllustrationComponent
|
|
5972
|
+
*
|
|
5973
|
+
* A component that displays illustrations with dynamic whitelabel color adaptation.
|
|
5974
|
+
* Inlines SVG and uses CSS variables to adapt colors to your theme.
|
|
5975
|
+
*
|
|
5976
|
+
* **Features:**
|
|
5977
|
+
* - Predefined variants (post, inquiry) for common empty states
|
|
5978
|
+
* - Automatic color adaptation using CSS variables
|
|
5979
|
+
* - Preserves all SVG details (textures, filters, gradients, shadows)
|
|
5980
|
+
* - White radial gradient overlay for depth effect
|
|
5981
|
+
* - Configurable size
|
|
5982
|
+
*
|
|
5983
|
+
* **Color Adaptation:**
|
|
5984
|
+
* The SVGs use the `--color-accent` CSS variable for the main page colors.
|
|
5985
|
+
* All texture details, shadows, and effects are preserved.
|
|
5986
|
+
*
|
|
5987
|
+
* @example
|
|
5988
|
+
* ```html
|
|
5989
|
+
* <!-- Using predefined variant -->
|
|
5990
|
+
* <ds-mobile-illustration variant="post" />
|
|
5991
|
+
*
|
|
5992
|
+
* <!-- Using predefined variant with custom size -->
|
|
5993
|
+
* <ds-mobile-illustration variant="inquiry" size="150px" />
|
|
5994
|
+
* ```
|
|
5995
|
+
*/
|
|
5996
|
+
declare class DsMobileIllustrationComponent {
|
|
5997
|
+
private sanitizer;
|
|
5998
|
+
/**
|
|
5999
|
+
* Predefined illustration variant
|
|
6000
|
+
* Available variants: 'post', 'inquiry'
|
|
6001
|
+
*/
|
|
6002
|
+
variant: _angular_core.InputSignal<"post" | "inquiry">;
|
|
6003
|
+
/**
|
|
6004
|
+
* Illustration size (width and height)
|
|
6005
|
+
* @default '120px'
|
|
6006
|
+
*/
|
|
6007
|
+
size: _angular_core.InputSignal<string>;
|
|
6008
|
+
constructor(sanitizer: DomSanitizer);
|
|
6009
|
+
/**
|
|
6010
|
+
* Inline SVG content for each variant
|
|
6011
|
+
*/
|
|
6012
|
+
private svgMap;
|
|
6013
|
+
/**
|
|
6014
|
+
* Computed SVG content - sanitized for security
|
|
6015
|
+
*/
|
|
6016
|
+
svgContent: _angular_core.Signal<SafeHtml>;
|
|
6017
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileIllustrationComponent, never>;
|
|
6018
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileIllustrationComponent, "ds-mobile-illustration", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6019
|
+
}
|
|
6020
|
+
|
|
6021
|
+
/**
|
|
6022
|
+
* DsMobilePropertyBannerComponent
|
|
6023
|
+
*
|
|
6024
|
+
* Compact banner displaying property photo and address.
|
|
6025
|
+
* Designed for use in page headers to show current property context.
|
|
6026
|
+
*
|
|
6027
|
+
* @example
|
|
6028
|
+
* ```html
|
|
6029
|
+
* <ds-mobile-property-banner
|
|
6030
|
+
* address="Toftegårds Allé 5A, 2. tv."
|
|
6031
|
+
* photoUrl="/Assets/building.jpg">
|
|
6032
|
+
* </ds-mobile-property-banner>
|
|
6033
|
+
* ```
|
|
6034
|
+
*/
|
|
6035
|
+
declare class DsMobilePropertyBannerComponent {
|
|
6036
|
+
/**
|
|
6037
|
+
* Property address text
|
|
6038
|
+
*/
|
|
6039
|
+
address: _angular_core.InputSignal<string>;
|
|
6040
|
+
/**
|
|
6041
|
+
* URL to property photo
|
|
6042
|
+
*/
|
|
6043
|
+
photoUrl: _angular_core.InputSignal<string>;
|
|
6044
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePropertyBannerComponent, never>;
|
|
6045
|
+
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
|
+
}
|
|
6047
|
+
|
|
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
|
+
|
|
5476
6123
|
/**
|
|
5477
6124
|
* User service for managing current user data globally
|
|
5478
6125
|
*/
|
|
@@ -5615,6 +6262,8 @@ declare class MobileCommunityPageComponent {
|
|
|
5615
6262
|
private postModal;
|
|
5616
6263
|
userService: UserService;
|
|
5617
6264
|
private postsService;
|
|
6265
|
+
pageComponent: DsMobilePageMainComponent;
|
|
6266
|
+
pinnedSwiper?: DsMobileSwiperComponent;
|
|
5618
6267
|
allPosts: _angular_core.Signal<Post[]>;
|
|
5619
6268
|
pinnedPosts: _angular_core.Signal<Post[]>;
|
|
5620
6269
|
hasAnyPosts: _angular_core.Signal<boolean>;
|
|
@@ -5642,12 +6291,29 @@ declare class MobileCommunityPageComponent {
|
|
|
5642
6291
|
* Handle long press on a post to show action sheet
|
|
5643
6292
|
*/
|
|
5644
6293
|
handlePostLongPress(postId: string, isOwnPost: boolean): Promise<void>;
|
|
6294
|
+
/**
|
|
6295
|
+
* Navigate to previous slide in pinned posts
|
|
6296
|
+
*/
|
|
6297
|
+
slidePrev(): void;
|
|
6298
|
+
/**
|
|
6299
|
+
* Navigate to next slide in pinned posts
|
|
6300
|
+
*/
|
|
6301
|
+
slideNext(): void;
|
|
6302
|
+
/**
|
|
6303
|
+
* Check if currently on first slide
|
|
6304
|
+
*/
|
|
6305
|
+
isFirstSlide(): boolean;
|
|
6306
|
+
/**
|
|
6307
|
+
* Check if currently on last slide
|
|
6308
|
+
*/
|
|
6309
|
+
isLastSlide(): boolean;
|
|
5645
6310
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobileCommunityPageComponent, never>;
|
|
5646
6311
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobileCommunityPageComponent, "app-mobile-community-page", never, {}, {}, never, never, true, never>;
|
|
5647
6312
|
}
|
|
5648
6313
|
|
|
5649
6314
|
declare class MobileHandbookPageComponent {
|
|
5650
6315
|
userService: UserService;
|
|
6316
|
+
pageComponent: DsMobilePageMainComponent;
|
|
5651
6317
|
utilitiesItems: HandbookItem[];
|
|
5652
6318
|
sikkerhedsudstyrItems: HandbookItem[];
|
|
5653
6319
|
serviceContractsItems: HandbookItem[];
|
|
@@ -5663,6 +6329,7 @@ declare class MobileHomePageComponent {
|
|
|
5663
6329
|
userService: UserService;
|
|
5664
6330
|
private postsService;
|
|
5665
6331
|
private postModal;
|
|
6332
|
+
pageComponent: DsMobilePageMainComponent;
|
|
5666
6333
|
recentPosts: _angular_core.Signal<_propbinder_mobile_design.Post[]>;
|
|
5667
6334
|
private allInquiries;
|
|
5668
6335
|
openInquiries: _angular_core.Signal<{
|
|
@@ -5694,6 +6361,7 @@ declare class MobileInquiriesPageComponent {
|
|
|
5694
6361
|
userService: UserService;
|
|
5695
6362
|
private navCtrl;
|
|
5696
6363
|
private newInquiryModal;
|
|
6364
|
+
pageComponent: DsMobilePageMainComponent;
|
|
5697
6365
|
constructor(userService: UserService, navCtrl: NavController, newInquiryModal: DsMobileNewInquiryModalService);
|
|
5698
6366
|
filterStatus: _angular_core.WritableSignal<"open" | "closed" | "all">;
|
|
5699
6367
|
tabItems: InlineTabItem[];
|
|
@@ -5731,6 +6399,7 @@ declare class MobileInquiryDetailPageComponent {
|
|
|
5731
6399
|
messageThreads: MessageThread[];
|
|
5732
6400
|
unreadMessagesCount: _angular_core.Signal<number>;
|
|
5733
6401
|
photos: LightboxImage[];
|
|
6402
|
+
get photoUrls(): string[];
|
|
5734
6403
|
constructor(userService: UserService, lightbox: DsMobileLightboxService, chatModal: DsMobileChatModalService);
|
|
5735
6404
|
setActiveTab(tabId: string): void;
|
|
5736
6405
|
goBack(): void;
|
|
@@ -5776,6 +6445,9 @@ declare class MobileTabsExampleComponent implements OnInit {
|
|
|
5776
6445
|
* Handle profile menu action selection.
|
|
5777
6446
|
* The tab bar component handles the UI (opening/closing menu),
|
|
5778
6447
|
* this method handles the business logic.
|
|
6448
|
+
*
|
|
6449
|
+
* NOTE: Desktop only - called directly from tab bar.
|
|
6450
|
+
* Mobile actions are handled globally in AppComponent via UserService.
|
|
5779
6451
|
*/
|
|
5780
6452
|
handleProfileAction(result: ActionResult): void;
|
|
5781
6453
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobileTabsExampleComponent, never>;
|
|
@@ -5835,40 +6507,127 @@ declare class MobilePostDetailPageComponent {
|
|
|
5835
6507
|
*
|
|
5836
6508
|
* Sign-in page with email authentication.
|
|
5837
6509
|
* Features logomark, decorative city background, and form validation.
|
|
6510
|
+
* Auto-focuses email input on iOS to trigger keyboard.
|
|
5838
6511
|
*/
|
|
5839
|
-
declare class SignInPageComponent {
|
|
6512
|
+
declare class SignInPageComponent implements AfterViewInit, OnDestroy {
|
|
6513
|
+
emailInputRef?: ElementRef;
|
|
6514
|
+
whitelabelService: WhitelabelService;
|
|
5840
6515
|
email: string;
|
|
5841
6516
|
emailError: _angular_core.WritableSignal<boolean>;
|
|
5842
6517
|
isSubmitting: _angular_core.WritableSignal<boolean>;
|
|
5843
6518
|
emailSent: _angular_core.WritableSignal<boolean>;
|
|
6519
|
+
ngAfterViewInit(): void;
|
|
6520
|
+
/**
|
|
6521
|
+
* Show the keyboard on mobile platforms
|
|
6522
|
+
*/
|
|
6523
|
+
private showKeyboard;
|
|
5844
6524
|
handleSubmit(): void;
|
|
5845
6525
|
handleBackToLogin(): void;
|
|
6526
|
+
/**
|
|
6527
|
+
* Update status bar for sign-in page background
|
|
6528
|
+
* Uses the sign-in background color to determine appropriate status bar style
|
|
6529
|
+
*/
|
|
6530
|
+
private updateSignInStatusBar;
|
|
6531
|
+
/**
|
|
6532
|
+
* Restore status bar to header color when leaving sign-in page
|
|
6533
|
+
*/
|
|
6534
|
+
ngOnDestroy(): void;
|
|
6535
|
+
/**
|
|
6536
|
+
* Restore status bar to use header surface color
|
|
6537
|
+
*/
|
|
6538
|
+
private restoreHeaderStatusBar;
|
|
5846
6539
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignInPageComponent, never>;
|
|
5847
6540
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SignInPageComponent, "app-sign-in", never, {}, {}, never, never, true, never>;
|
|
5848
6541
|
}
|
|
5849
6542
|
|
|
5850
6543
|
/**
|
|
5851
|
-
* Whitelabel Demo
|
|
6544
|
+
* Whitelabel Demo Modal Component
|
|
5852
6545
|
*
|
|
5853
6546
|
* Demonstrates the whitelabeling system with theme selection, brand colors, and logo previews.
|
|
6547
|
+
* Opens as a full-screen modal similar to post details.
|
|
5854
6548
|
*/
|
|
5855
|
-
declare class
|
|
6549
|
+
declare class WhitelabelDemoModalComponent implements OnInit {
|
|
5856
6550
|
whitelabelService: WhitelabelService;
|
|
6551
|
+
private modalController;
|
|
5857
6552
|
currentTheme: string;
|
|
5858
|
-
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
6553
|
+
customAppIconSurface: string;
|
|
6554
|
+
customAppIconContent: string;
|
|
6555
|
+
customAccent: string;
|
|
6556
|
+
customOnAccent: string;
|
|
6557
|
+
customHeaderSurface: string;
|
|
6558
|
+
customHeaderContent: string;
|
|
6559
|
+
customHeaderAccent: string;
|
|
6560
|
+
customOnHeaderAccent: string;
|
|
6561
|
+
customSignInBgSolid: string;
|
|
6562
|
+
customSignInBgGradientStart: string;
|
|
6563
|
+
customSignInBgGradientEnd: string;
|
|
6564
|
+
customSignInContentColor: string;
|
|
5862
6565
|
ngOnInit(): void;
|
|
6566
|
+
/**
|
|
6567
|
+
* Detect the current active theme based on colors
|
|
6568
|
+
*/
|
|
6569
|
+
private detectCurrentTheme;
|
|
6570
|
+
/**
|
|
6571
|
+
* Close the modal
|
|
6572
|
+
*/
|
|
6573
|
+
close(): void;
|
|
5863
6574
|
applyDefaultTheme(): void;
|
|
5864
6575
|
applyCejTheme(): void;
|
|
5865
6576
|
applyPkaTheme(): void;
|
|
5866
6577
|
applyClaveTheme(): void;
|
|
5867
6578
|
applyFreedomTheme(): void;
|
|
5868
6579
|
applyCustomColors(): void;
|
|
6580
|
+
toggleCityIllustration(): void;
|
|
6581
|
+
updateSignInBgType(type: 'solid' | 'gradient'): void;
|
|
6582
|
+
updateLogoSize(size: 'sm' | 'md' | 'lg' | 'xl'): void;
|
|
6583
|
+
applySignInBackground(): void;
|
|
6584
|
+
applySignInContentColor(): void;
|
|
6585
|
+
private updateSignInBgInputs;
|
|
6586
|
+
private updateSignInContentColorInput;
|
|
5869
6587
|
private updateCustomColorInputs;
|
|
5870
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
5871
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<
|
|
6588
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WhitelabelDemoModalComponent, never>;
|
|
6589
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhitelabelDemoModalComponent, "ds-whitelabel-demo-modal", never, {}, {}, never, never, true, never>;
|
|
6590
|
+
}
|
|
6591
|
+
|
|
6592
|
+
/**
|
|
6593
|
+
* WhitelabelDemoModalService
|
|
6594
|
+
*
|
|
6595
|
+
* Service for displaying the whitelabel demo in a full-screen modal.
|
|
6596
|
+
* Built on Ionic's modal system with native gestures and animations.
|
|
6597
|
+
*
|
|
6598
|
+
* @example
|
|
6599
|
+
* ```typescript
|
|
6600
|
+
* constructor(private whitelabelModal: WhitelabelDemoModalService) {}
|
|
6601
|
+
*
|
|
6602
|
+
* async openDemo() {
|
|
6603
|
+
* await this.whitelabelModal.open();
|
|
6604
|
+
* }
|
|
6605
|
+
* ```
|
|
6606
|
+
*/
|
|
6607
|
+
declare class WhitelabelDemoModalService {
|
|
6608
|
+
private modalController;
|
|
6609
|
+
constructor(modalController: ModalController);
|
|
6610
|
+
/**
|
|
6611
|
+
* Open the whitelabel demo modal
|
|
6612
|
+
*
|
|
6613
|
+
* @returns Promise that resolves when the modal is presented
|
|
6614
|
+
*/
|
|
6615
|
+
open(): Promise<void>;
|
|
6616
|
+
/**
|
|
6617
|
+
* Close the currently open whitelabel demo modal
|
|
6618
|
+
*
|
|
6619
|
+
* @param data Optional data to pass back when dismissing
|
|
6620
|
+
* @returns Promise that resolves when the modal is dismissed
|
|
6621
|
+
*/
|
|
6622
|
+
close(data?: any): Promise<boolean>;
|
|
6623
|
+
/**
|
|
6624
|
+
* Get the top-most modal if one exists
|
|
6625
|
+
*
|
|
6626
|
+
* @returns Promise that resolves to the modal element or undefined
|
|
6627
|
+
*/
|
|
6628
|
+
getTop(): Promise<HTMLIonModalElement | undefined>;
|
|
6629
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<WhitelabelDemoModalService, never>;
|
|
6630
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<WhitelabelDemoModalService>;
|
|
5872
6631
|
}
|
|
5873
6632
|
|
|
5874
6633
|
/**
|
|
@@ -5893,5 +6652,5 @@ declare const customPageTransition: (_: HTMLElement, opts: any) => Animation;
|
|
|
5893
6652
|
*/
|
|
5894
6653
|
declare const customBackTransition: (_: HTMLElement, opts: any) => Animation;
|
|
5895
6654
|
|
|
5896
|
-
export { ActionCommentComponent, ActionLikeComponent, ContentRowComponent, DsAvatarWithBadgeComponent, DsMobileActionsBottomSheetComponent, DsMobileAttachmentPreviewComponent, DsMobileBottomSheetService, DsMobileBottomSheetWrapperComponent, DsMobileCardInlineBannerComponent, DsMobileCardInlineComponent, DsMobileCardInlineContactComponent, DsMobileCardInlineFileComponent, DsMobileChatModalComponent, DsMobileChatModalService, DsMobileActionsBottomSheetComponent as DsMobileCommentActionsBottomSheetComponent, DsMobileCommentComponent, DsMobileContactListItemComponent, DsMobileContentComponent,
|
|
5897
|
-
export type { ActionGroup, ActionItem, ActionResult, 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, ModalOptions, NewInquiryData, NewInquiryModalOptions, Post, ActionResult as PostActionResult, PostDetailData, TabConfig, WhitelabelConfig };
|
|
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 };
|
|
6656
|
+
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 };
|