@propbinder/mobile-design 0.3.33 → 0.3.35
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 +323 -208
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +52 -31
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -857,7 +857,7 @@ declare class DsMobilePageMainComponent extends MobilePageBase implements AfterV
|
|
|
857
857
|
headerSubtitle: _angular_core.InputSignal<string>;
|
|
858
858
|
/** When true, the header logo plays a slide-in-from-top animation on first reveal */
|
|
859
859
|
firstEntry: _angular_core.InputSignal<boolean>;
|
|
860
|
-
avatarType: _angular_core.InputSignal<"
|
|
860
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
861
861
|
avatarInitials: _angular_core.InputSignal<string>;
|
|
862
862
|
avatarSrc: _angular_core.InputSignal<string>;
|
|
863
863
|
avatarIconName: _angular_core.InputSignal<string>;
|
|
@@ -1021,8 +1021,8 @@ interface WhitelabelConfig {
|
|
|
1021
1021
|
* Initialize with custom config:
|
|
1022
1022
|
* ```typescript
|
|
1023
1023
|
* whitelabelService.initialize({
|
|
1024
|
-
* logoUrl: '/
|
|
1025
|
-
* logoMarkUrl: '/
|
|
1024
|
+
* logoUrl: '/assets/logos/acme-logo.svg',
|
|
1025
|
+
* logoMarkUrl: '/assets/logos/acme-mark.svg',
|
|
1026
1026
|
* accent: '#2563eb',
|
|
1027
1027
|
* onAccent: '#ffffff',
|
|
1028
1028
|
* headerSurface: '#1e40af',
|
|
@@ -1041,7 +1041,7 @@ declare class WhitelabelService {
|
|
|
1041
1041
|
readonly logoUrl: _angular_core.Signal<string>;
|
|
1042
1042
|
readonly logoMarkUrl: _angular_core.Signal<string>;
|
|
1043
1043
|
readonly logoAlt: _angular_core.Signal<string>;
|
|
1044
|
-
readonly logoSize: _angular_core.Signal<"
|
|
1044
|
+
readonly logoSize: _angular_core.Signal<"sm" | "md" | "lg" | "xl">;
|
|
1045
1045
|
readonly logoHeight: _angular_core.Signal<number>;
|
|
1046
1046
|
readonly appIconSurface: _angular_core.Signal<string>;
|
|
1047
1047
|
readonly appIconContent: _angular_core.Signal<string>;
|
|
@@ -1720,7 +1720,7 @@ declare class DsMobileCommentComponent {
|
|
|
1720
1720
|
/**
|
|
1721
1721
|
* Avatar type
|
|
1722
1722
|
*/
|
|
1723
|
-
avatarType: _angular_core.InputSignal<"
|
|
1723
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* Whether the comment is clickable
|
|
1726
1726
|
*/
|
|
@@ -1855,7 +1855,7 @@ declare class DsMobilePostComposerComponent {
|
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Avatar type
|
|
1857
1857
|
*/
|
|
1858
|
-
avatarType: _angular_core.InputSignal<"
|
|
1858
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* Avatar photo source (for photo type)
|
|
1861
1861
|
*/
|
|
@@ -2148,7 +2148,7 @@ declare class DsMobileMessageComposerComponent implements AfterViewInit, OnDestr
|
|
|
2148
2148
|
/**
|
|
2149
2149
|
* Avatar type
|
|
2150
2150
|
*/
|
|
2151
|
-
avatarType: _angular_core.InputSignal<"
|
|
2151
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
2152
2152
|
/**
|
|
2153
2153
|
* Avatar photo source (for photo type)
|
|
2154
2154
|
*/
|
|
@@ -2559,7 +2559,7 @@ declare class DsMobileMessageBubbleComponent {
|
|
|
2559
2559
|
/**
|
|
2560
2560
|
* Avatar type
|
|
2561
2561
|
*/
|
|
2562
|
-
avatarType: _angular_core.InputSignal<"
|
|
2562
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
2563
2563
|
/**
|
|
2564
2564
|
* Avatar photo source (for photo type)
|
|
2565
2565
|
*/
|
|
@@ -3099,7 +3099,7 @@ declare class DsMobileInteractiveListItemPostComponent {
|
|
|
3099
3099
|
/**
|
|
3100
3100
|
* Avatar type
|
|
3101
3101
|
*/
|
|
3102
|
-
avatarType: _angular_core.InputSignal<"
|
|
3102
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
3103
3103
|
/**
|
|
3104
3104
|
* Avatar photo source (for photo type)
|
|
3105
3105
|
*/
|
|
@@ -3715,9 +3715,6 @@ declare class DsMobileLightboxImageComponent implements OnInit, AfterViewInit, O
|
|
|
3715
3715
|
* Close the lightbox
|
|
3716
3716
|
*/
|
|
3717
3717
|
close(): void;
|
|
3718
|
-
/**
|
|
3719
|
-
* Handle share button click
|
|
3720
|
-
*/
|
|
3721
3718
|
onShare(): Promise<void>;
|
|
3722
3719
|
/**
|
|
3723
3720
|
* Handle download action
|
|
@@ -4399,11 +4396,11 @@ declare class DsMobileChatModalComponent implements OnInit, AfterViewInit {
|
|
|
4399
4396
|
participant: _angular_core.WritableSignal<ChatParticipant>;
|
|
4400
4397
|
messages: _angular_core.WritableSignal<ChatMessage[]>;
|
|
4401
4398
|
currentUserInitials: _angular_core.WritableSignal<string>;
|
|
4402
|
-
currentUserAvatarType: _angular_core.WritableSignal<"
|
|
4399
|
+
currentUserAvatarType: _angular_core.WritableSignal<"photo" | "initials" | "icon">;
|
|
4403
4400
|
currentUserAvatarSrc: _angular_core.WritableSignal<string>;
|
|
4404
4401
|
autoFocus: _angular_core.WritableSignal<boolean>;
|
|
4405
4402
|
/** Inquiry shows system takeover copy; peer chat does not. */
|
|
4406
|
-
threadContext: _angular_core.WritableSignal<"
|
|
4403
|
+
threadContext: _angular_core.WritableSignal<"peer" | "inquiry">;
|
|
4407
4404
|
/** Resolved i18n labels — merged with Danish defaults. */
|
|
4408
4405
|
lbl: ChatModalLabels;
|
|
4409
4406
|
threadKind: _angular_core.WritableSignal<"direct" | "group">;
|
|
@@ -4773,7 +4770,7 @@ declare class DsMobileInteractiveListItemMessageComponent {
|
|
|
4773
4770
|
/**
|
|
4774
4771
|
* Avatar type
|
|
4775
4772
|
*/
|
|
4776
|
-
avatarType: _angular_core.InputSignal<"
|
|
4773
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
4777
4774
|
/**
|
|
4778
4775
|
* Avatar photo source (for photo type)
|
|
4779
4776
|
*/
|
|
@@ -4837,7 +4834,7 @@ declare class DsMobileContactListItemComponent {
|
|
|
4837
4834
|
initials: _angular_core.InputSignal<string>;
|
|
4838
4835
|
/** Optional photo */
|
|
4839
4836
|
avatarSrc: _angular_core.InputSignal<string>;
|
|
4840
|
-
avatarType: _angular_core.InputSignal<"
|
|
4837
|
+
avatarType: _angular_core.InputSignal<"photo" | "initials" | "icon">;
|
|
4841
4838
|
avatarIconName: _angular_core.InputSignal<string>;
|
|
4842
4839
|
/** Whitelabel corner badge (default off — same as community posts) */
|
|
4843
4840
|
showBadge: _angular_core.InputSignal<boolean>;
|
|
@@ -5032,7 +5029,7 @@ declare class DsMobileGroupAvatarStackComponent {
|
|
|
5032
5029
|
/** Full member list; {@link currentUserId} is removed for display when set. */
|
|
5033
5030
|
members: _angular_core.InputSignal<ChatParticipant[]>;
|
|
5034
5031
|
customAvatarUrl: _angular_core.InputSignal<string>;
|
|
5035
|
-
size: _angular_core.InputSignal<"
|
|
5032
|
+
size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl">;
|
|
5036
5033
|
/** Row avatar (32×32, diagonal **xs** faces) vs header / hero stack. */
|
|
5037
5034
|
layout: _angular_core.InputSignal<"stack" | "list">;
|
|
5038
5035
|
/** When set, this participant is omitted from the stack (e.g. current user id). */
|
|
@@ -5070,7 +5067,7 @@ declare class UserService {
|
|
|
5070
5067
|
readonly displayName: _angular_core.Signal<string>;
|
|
5071
5068
|
readonly address: _angular_core.Signal<string>;
|
|
5072
5069
|
readonly avatarInitials: _angular_core.Signal<string>;
|
|
5073
|
-
readonly avatarType: _angular_core.Signal<"
|
|
5070
|
+
readonly avatarType: _angular_core.Signal<"photo" | "initials" | "icon">;
|
|
5074
5071
|
readonly avatarSrc: _angular_core.Signal<string>;
|
|
5075
5072
|
readonly profileMenuItems: _angular_core.Signal<ActionGroup[] | undefined>;
|
|
5076
5073
|
private profileActionSelectedSubject;
|
|
@@ -6651,6 +6648,19 @@ declare class DsMobilePostDetailModalComponent implements OnInit, AfterViewInit
|
|
|
6651
6648
|
onDeleteComment?: (payload: {
|
|
6652
6649
|
commentId: string;
|
|
6653
6650
|
}) => void;
|
|
6651
|
+
textReplySingle: string;
|
|
6652
|
+
textReplyPlural: string;
|
|
6653
|
+
textNoRepliesTitle: string;
|
|
6654
|
+
textNoRepliesDesc: string;
|
|
6655
|
+
textAddReply: string;
|
|
6656
|
+
textEditComment: string;
|
|
6657
|
+
textEditingComment: string;
|
|
6658
|
+
textReplyingTo: string;
|
|
6659
|
+
textSend: string;
|
|
6660
|
+
textClosePost: string;
|
|
6661
|
+
textJustNow: string;
|
|
6662
|
+
textEdited: string;
|
|
6663
|
+
textConfirmDelete: string;
|
|
6654
6664
|
commentInput?: ElementRef<HTMLTextAreaElement>;
|
|
6655
6665
|
post: _angular_core.WritableSignal<PostDetailData>;
|
|
6656
6666
|
commentText: _angular_core.WritableSignal<string>;
|
|
@@ -6725,7 +6735,7 @@ declare class DsMobilePostDetailModalComponent implements OnInit, AfterViewInit
|
|
|
6725
6735
|
*/
|
|
6726
6736
|
handleCommentLongPress(authorName: string, content: string, isOwnComment: boolean): Promise<void>;
|
|
6727
6737
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePostDetailModalComponent, never>;
|
|
6728
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePostDetailModalComponent, "ds-mobile-post-detail-modal", never, { "postData": { "alias": "postData"; "required": false; }; "currentUserName": { "alias": "currentUserName"; "required": false; }; "currentUserInitialsInput": { "alias": "currentUserInitialsInput"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "onTogglePostLike": { "alias": "onTogglePostLike"; "required": false; }; "onSubmitComment": { "alias": "onSubmitComment"; "required": false; }; "onToggleCommentLike": { "alias": "onToggleCommentLike"; "required": false; }; "onEditComment": { "alias": "onEditComment"; "required": false; }; "onDeleteComment": { "alias": "onDeleteComment"; "required": false; }; }, {}, never, never, true, never>;
|
|
6738
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePostDetailModalComponent, "ds-mobile-post-detail-modal", never, { "postData": { "alias": "postData"; "required": false; }; "currentUserName": { "alias": "currentUserName"; "required": false; }; "currentUserInitialsInput": { "alias": "currentUserInitialsInput"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "onTogglePostLike": { "alias": "onTogglePostLike"; "required": false; }; "onSubmitComment": { "alias": "onSubmitComment"; "required": false; }; "onToggleCommentLike": { "alias": "onToggleCommentLike"; "required": false; }; "onEditComment": { "alias": "onEditComment"; "required": false; }; "onDeleteComment": { "alias": "onDeleteComment"; "required": false; }; "textReplySingle": { "alias": "textReplySingle"; "required": false; }; "textReplyPlural": { "alias": "textReplyPlural"; "required": false; }; "textNoRepliesTitle": { "alias": "textNoRepliesTitle"; "required": false; }; "textNoRepliesDesc": { "alias": "textNoRepliesDesc"; "required": false; }; "textAddReply": { "alias": "textAddReply"; "required": false; }; "textEditComment": { "alias": "textEditComment"; "required": false; }; "textEditingComment": { "alias": "textEditingComment"; "required": false; }; "textReplyingTo": { "alias": "textReplyingTo"; "required": false; }; "textSend": { "alias": "textSend"; "required": false; }; "textClosePost": { "alias": "textClosePost"; "required": false; }; "textJustNow": { "alias": "textJustNow"; "required": false; }; "textEdited": { "alias": "textEdited"; "required": false; }; "textConfirmDelete": { "alias": "textConfirmDelete"; "required": false; }; }, {}, never, never, true, never>;
|
|
6729
6739
|
}
|
|
6730
6740
|
|
|
6731
6741
|
/**
|
|
@@ -7448,6 +7458,10 @@ interface BookingModalExtras {
|
|
|
7448
7458
|
labels?: {
|
|
7449
7459
|
selectFromCalendar?: string;
|
|
7450
7460
|
confirmBooking?: string;
|
|
7461
|
+
confirmationTitle?: string;
|
|
7462
|
+
confirmationMessageTemplate?: string;
|
|
7463
|
+
confirmationClose?: string;
|
|
7464
|
+
monthNamesShort?: string[];
|
|
7451
7465
|
};
|
|
7452
7466
|
}
|
|
7453
7467
|
/**
|
|
@@ -7549,12 +7563,16 @@ declare class DsMobileBookingSummaryComponent {
|
|
|
7549
7563
|
declare class DsMobileBookingConfirmationWrapperComponent {
|
|
7550
7564
|
booking: BookingResult;
|
|
7551
7565
|
facilityThumbnail?: string;
|
|
7566
|
+
textTitle: string;
|
|
7567
|
+
textMessageTemplate: string;
|
|
7568
|
+
textClose: string;
|
|
7569
|
+
monthNamesShort: string[];
|
|
7552
7570
|
get confirmationMessage(): string;
|
|
7553
7571
|
get formattedDate(): string;
|
|
7554
7572
|
get formattedTime(): string;
|
|
7555
7573
|
private formatFullDate;
|
|
7556
7574
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileBookingConfirmationWrapperComponent, never>;
|
|
7557
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBookingConfirmationWrapperComponent, "ds-mobile-booking-confirmation-wrapper", never, { "booking": { "alias": "booking"; "required": false; }; "facilityThumbnail": { "alias": "facilityThumbnail"; "required": false; }; }, {}, never, never, true, never>;
|
|
7575
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBookingConfirmationWrapperComponent, "ds-mobile-booking-confirmation-wrapper", never, { "booking": { "alias": "booking"; "required": false; }; "facilityThumbnail": { "alias": "facilityThumbnail"; "required": false; }; "textTitle": { "alias": "textTitle"; "required": false; }; "textMessageTemplate": { "alias": "textMessageTemplate"; "required": false; }; "textClose": { "alias": "textClose"; "required": false; }; "monthNamesShort": { "alias": "monthNamesShort"; "required": false; }; }, {}, never, never, true, never>;
|
|
7558
7576
|
}
|
|
7559
7577
|
|
|
7560
7578
|
/**
|
|
@@ -8126,7 +8144,7 @@ declare class DsMobileFacilityDetailModalComponent implements OnInit, AfterViewI
|
|
|
8126
8144
|
* await this.facilityModal.open({
|
|
8127
8145
|
* id: 'facility-1',
|
|
8128
8146
|
* facilityTitle: 'Festlokale på taget',
|
|
8129
|
-
* heroImage: '/
|
|
8147
|
+
* heroImage: '/assets/Dummy-photos/balcony-view.jpg',
|
|
8130
8148
|
* fullDescription: '<p>The rooftop terrace is designed...</p>',
|
|
8131
8149
|
* requirements: ['Kræver nøglekort'],
|
|
8132
8150
|
* bookingType: 'Instant booking',
|
|
@@ -8181,7 +8199,8 @@ interface HandbookDetailData {
|
|
|
8181
8199
|
items?: HandbookItem[];
|
|
8182
8200
|
textLoading?: string;
|
|
8183
8201
|
textError?: string;
|
|
8184
|
-
|
|
8202
|
+
textItemSingle?: string;
|
|
8203
|
+
textItemsPlural?: string;
|
|
8185
8204
|
textClose?: string;
|
|
8186
8205
|
textEmptyTitle?: string;
|
|
8187
8206
|
textEmptyDescription?: string;
|
|
@@ -8297,7 +8316,8 @@ declare class DsMobileHandbookDetailModalComponent implements OnInit {
|
|
|
8297
8316
|
error?: string;
|
|
8298
8317
|
textLoading: string;
|
|
8299
8318
|
textError: string;
|
|
8300
|
-
|
|
8319
|
+
textItemSingle: string;
|
|
8320
|
+
textItemsPlural: string;
|
|
8301
8321
|
textClose: string;
|
|
8302
8322
|
textEmptyTitle: string;
|
|
8303
8323
|
textEmptyDescription: string;
|
|
@@ -8338,7 +8358,7 @@ declare class DsMobileHandbookDetailModalComponent implements OnInit {
|
|
|
8338
8358
|
*/
|
|
8339
8359
|
handleAttachmentClick(attachment: AttachmentItem): void;
|
|
8340
8360
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileHandbookDetailModalComponent, never>;
|
|
8341
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookDetailModalComponent, "ds-mobile-handbook-detail-modal", never, { "handbookData": { "alias": "handbookData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "textLoading": { "alias": "textLoading"; "required": false; }; "textError": { "alias": "textError"; "required": false; }; "
|
|
8361
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookDetailModalComponent, "ds-mobile-handbook-detail-modal", never, { "handbookData": { "alias": "handbookData"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "textLoading": { "alias": "textLoading"; "required": false; }; "textError": { "alias": "textError"; "required": false; }; "textItemSingle": { "alias": "textItemSingle"; "required": false; }; "textItemsPlural": { "alias": "textItemsPlural"; "required": false; }; "textClose": { "alias": "textClose"; "required": false; }; "textEmptyTitle": { "alias": "textEmptyTitle"; "required": false; }; "textEmptyDescription": { "alias": "textEmptyDescription"; "required": false; }; "textCall": { "alias": "textCall"; "required": false; }; "textCopyPhone": { "alias": "textCopyPhone"; "required": false; }; "textEmail": { "alias": "textEmail"; "required": false; }; "textCopyEmail": { "alias": "textCopyEmail"; "required": false; }; }, {}, never, never, true, never>;
|
|
8342
8362
|
}
|
|
8343
8363
|
|
|
8344
8364
|
/**
|
|
@@ -8464,7 +8484,8 @@ declare class DsMobileHandbookFolderComponent {
|
|
|
8464
8484
|
error?: string;
|
|
8465
8485
|
textLoading: string;
|
|
8466
8486
|
textError: string;
|
|
8467
|
-
|
|
8487
|
+
textItemSingle: string;
|
|
8488
|
+
textItemsPlural: string;
|
|
8468
8489
|
textClose: string;
|
|
8469
8490
|
textEmptyTitle: string;
|
|
8470
8491
|
textEmptyDescription: string;
|
|
@@ -8512,7 +8533,7 @@ declare class DsMobileHandbookFolderComponent {
|
|
|
8512
8533
|
getPageSheets(): number[];
|
|
8513
8534
|
constructor(handbookModal: DsMobileHandbookDetailModalService);
|
|
8514
8535
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileHandbookFolderComponent, never>;
|
|
8515
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderComponent, "ds-mobile-handbook-folder", never, { "variant": { "alias": "variant"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "label": { "alias": "label"; "required": false; }; "items": { "alias": "items"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "textLoading": { "alias": "textLoading"; "required": false; }; "textError": { "alias": "textError"; "required": false; }; "
|
|
8536
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileHandbookFolderComponent, "ds-mobile-handbook-folder", never, { "variant": { "alias": "variant"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "label": { "alias": "label"; "required": false; }; "items": { "alias": "items"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; "textLoading": { "alias": "textLoading"; "required": false; }; "textError": { "alias": "textError"; "required": false; }; "textItemSingle": { "alias": "textItemSingle"; "required": false; }; "textItemsPlural": { "alias": "textItemsPlural"; "required": false; }; "textClose": { "alias": "textClose"; "required": false; }; "textEmptyTitle": { "alias": "textEmptyTitle"; "required": false; }; "textEmptyDescription": { "alias": "textEmptyDescription"; "required": false; }; "textCall": { "alias": "textCall"; "required": false; }; "textCopyPhone": { "alias": "textCopyPhone"; "required": false; }; "textEmail": { "alias": "textEmail"; "required": false; }; "textCopyEmail": { "alias": "textCopyEmail"; "required": false; }; }, {}, never, never, true, never>;
|
|
8516
8537
|
}
|
|
8517
8538
|
|
|
8518
8539
|
/**
|
|
@@ -8598,7 +8619,7 @@ declare class DsMobileHandbookFolderMiniComponent {
|
|
|
8598
8619
|
* ```
|
|
8599
8620
|
*/
|
|
8600
8621
|
declare class DsTextInputComponent implements ControlValueAccessor {
|
|
8601
|
-
type: _angular_core.InputSignal<"search" | "text" | "
|
|
8622
|
+
type: _angular_core.InputSignal<"search" | "text" | "url" | "email" | "tel" | "password">;
|
|
8602
8623
|
label: _angular_core.InputSignal<string>;
|
|
8603
8624
|
placeholder: _angular_core.InputSignal<string>;
|
|
8604
8625
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -8607,7 +8628,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
|
|
|
8607
8628
|
hasError: _angular_core.InputSignal<boolean>;
|
|
8608
8629
|
errorMessage: _angular_core.InputSignal<string>;
|
|
8609
8630
|
autocomplete: _angular_core.InputSignal<string>;
|
|
8610
|
-
inputmode: _angular_core.InputSignal<"search" | "text" | "
|
|
8631
|
+
inputmode: _angular_core.InputSignal<"search" | "text" | "url" | "email" | "tel" | "numeric" | undefined>;
|
|
8611
8632
|
autoClearError: _angular_core.InputSignal<boolean>;
|
|
8612
8633
|
validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
|
|
8613
8634
|
valueChange: _angular_core.OutputEmitterRef<string>;
|
|
@@ -8680,7 +8701,7 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
|
|
|
8680
8701
|
* Note: FAB is always 56px circular, but this affects the icon size
|
|
8681
8702
|
* @default 'md'
|
|
8682
8703
|
*/
|
|
8683
|
-
size: _angular_core.InputSignal<"
|
|
8704
|
+
size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
8684
8705
|
/**
|
|
8685
8706
|
* ARIA label for accessibility
|
|
8686
8707
|
* @required - Always provide a descriptive label
|
|
@@ -8807,7 +8828,7 @@ declare class DsAvatarWithBadgeComponent {
|
|
|
8807
8828
|
* ```html
|
|
8808
8829
|
* <!-- With image -->
|
|
8809
8830
|
* <ds-mobile-empty-state
|
|
8810
|
-
* [imageSrc]="'/
|
|
8831
|
+
* [imageSrc]="'/assets/empty-state-inquiry.svg'"
|
|
8811
8832
|
* [imageAlt]="'No messages'"
|
|
8812
8833
|
* [title]="'Ingen beskeder endnu'"
|
|
8813
8834
|
* [description]="'Start samtalen ved at sende en besked'">
|
|
@@ -8948,7 +8969,7 @@ declare class DsMobileIllustrationComponent {
|
|
|
8948
8969
|
* ```html
|
|
8949
8970
|
* <ds-mobile-property-banner
|
|
8950
8971
|
* address="Toftegårds Allé 5A, 2. tv."
|
|
8951
|
-
* photoUrl="/
|
|
8972
|
+
* photoUrl="/assets/building.jpg"
|
|
8952
8973
|
* [tenantCount]="12">
|
|
8953
8974
|
* </ds-mobile-property-banner>
|
|
8954
8975
|
* ```
|