@propbinder/mobile-design 0.2.83 → 0.2.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-YO-dvZLx.mjs → propbinder-mobile-design-ds-mobile-days-sheet-CExYUoSe.mjs} +2 -2
- package/fesm2022/{propbinder-mobile-design-ds-mobile-days-sheet-YO-dvZLx.mjs.map → propbinder-mobile-design-ds-mobile-days-sheet-CExYUoSe.mjs.map} +1 -1
- package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-l8x6d78y.mjs → propbinder-mobile-design-ds-mobile-duration-sheet-CjoEvphw.mjs} +2 -2
- package/fesm2022/{propbinder-mobile-design-ds-mobile-duration-sheet-l8x6d78y.mjs.map → propbinder-mobile-design-ds-mobile-duration-sheet-CjoEvphw.mjs.map} +1 -1
- package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-B9cV9oGj.mjs → propbinder-mobile-design-ds-mobile-time-sheet-BEO6vuN0.mjs} +2 -2
- package/fesm2022/{propbinder-mobile-design-ds-mobile-time-sheet-B9cV9oGj.mjs.map → propbinder-mobile-design-ds-mobile-time-sheet-BEO6vuN0.mjs.map} +1 -1
- package/fesm2022/propbinder-mobile-design.mjs +75 -53
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +21 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -413,6 +413,16 @@ declare class DsMobileBottomSheetHeaderComponent {
|
|
|
413
413
|
* @default false
|
|
414
414
|
*/
|
|
415
415
|
rightButtonLoading: boolean;
|
|
416
|
+
/**
|
|
417
|
+
* Show left button
|
|
418
|
+
* @default true
|
|
419
|
+
*/
|
|
420
|
+
showLeftButton: boolean;
|
|
421
|
+
/**
|
|
422
|
+
* Show right button
|
|
423
|
+
* @default true
|
|
424
|
+
*/
|
|
425
|
+
showRightButton: boolean;
|
|
416
426
|
/**
|
|
417
427
|
* Emitted when left button is clicked
|
|
418
428
|
*/
|
|
@@ -422,7 +432,7 @@ declare class DsMobileBottomSheetHeaderComponent {
|
|
|
422
432
|
*/
|
|
423
433
|
rightButtonClick: EventEmitter<void>;
|
|
424
434
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileBottomSheetHeaderComponent, never>;
|
|
425
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBottomSheetHeaderComponent, "ds-mobile-bottom-sheet-header", never, { "title": { "alias": "title"; "required": false; }; "leftButtonLabel": { "alias": "leftButtonLabel"; "required": false; }; "rightButtonLabel": { "alias": "rightButtonLabel"; "required": false; }; "rightButtonDisabled": { "alias": "rightButtonDisabled"; "required": false; }; "rightButtonLoading": { "alias": "rightButtonLoading"; "required": false; }; }, { "leftButtonClick": "leftButtonClick"; "rightButtonClick": "rightButtonClick"; }, never, never, true, never>;
|
|
435
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileBottomSheetHeaderComponent, "ds-mobile-bottom-sheet-header", never, { "title": { "alias": "title"; "required": false; }; "leftButtonLabel": { "alias": "leftButtonLabel"; "required": false; }; "rightButtonLabel": { "alias": "rightButtonLabel"; "required": false; }; "rightButtonDisabled": { "alias": "rightButtonDisabled"; "required": false; }; "rightButtonLoading": { "alias": "rightButtonLoading"; "required": false; }; "showLeftButton": { "alias": "showLeftButton"; "required": false; }; "showRightButton": { "alias": "showRightButton"; "required": false; }; }, { "leftButtonClick": "leftButtonClick"; "rightButtonClick": "rightButtonClick"; }, never, never, true, never>;
|
|
426
436
|
}
|
|
427
437
|
|
|
428
438
|
/**
|
|
@@ -846,7 +856,7 @@ declare class DsMobilePageMainComponent extends MobilePageBase implements AfterV
|
|
|
846
856
|
headerSubtitle: _angular_core.InputSignal<string>;
|
|
847
857
|
/** When true, the header logo plays a slide-in-from-top animation on first reveal */
|
|
848
858
|
firstEntry: _angular_core.InputSignal<boolean>;
|
|
849
|
-
avatarType: _angular_core.InputSignal<"
|
|
859
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
850
860
|
avatarInitials: _angular_core.InputSignal<string>;
|
|
851
861
|
avatarSrc: _angular_core.InputSignal<string>;
|
|
852
862
|
avatarIconName: _angular_core.InputSignal<string>;
|
|
@@ -1705,7 +1715,7 @@ declare class DsMobileCommentComponent {
|
|
|
1705
1715
|
/**
|
|
1706
1716
|
* Avatar type
|
|
1707
1717
|
*/
|
|
1708
|
-
avatarType: _angular_core.InputSignal<"
|
|
1718
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
1709
1719
|
/**
|
|
1710
1720
|
* Whether the comment is clickable
|
|
1711
1721
|
*/
|
|
@@ -1840,7 +1850,7 @@ declare class DsMobilePostComposerComponent {
|
|
|
1840
1850
|
/**
|
|
1841
1851
|
* Avatar type
|
|
1842
1852
|
*/
|
|
1843
|
-
avatarType: _angular_core.InputSignal<"
|
|
1853
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
1844
1854
|
/**
|
|
1845
1855
|
* Avatar photo source (for photo type)
|
|
1846
1856
|
*/
|
|
@@ -2133,7 +2143,7 @@ declare class DsMobileMessageComposerComponent implements AfterViewInit, OnDestr
|
|
|
2133
2143
|
/**
|
|
2134
2144
|
* Avatar type
|
|
2135
2145
|
*/
|
|
2136
|
-
avatarType: _angular_core.InputSignal<"
|
|
2146
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
2137
2147
|
/**
|
|
2138
2148
|
* Avatar photo source (for photo type)
|
|
2139
2149
|
*/
|
|
@@ -2502,7 +2512,7 @@ declare class DsMobileMessageBubbleComponent {
|
|
|
2502
2512
|
/**
|
|
2503
2513
|
* Avatar type
|
|
2504
2514
|
*/
|
|
2505
|
-
avatarType: _angular_core.InputSignal<"
|
|
2515
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
2506
2516
|
/**
|
|
2507
2517
|
* Avatar photo source (for photo type)
|
|
2508
2518
|
*/
|
|
@@ -3042,7 +3052,7 @@ declare class DsMobileInteractiveListItemPostComponent {
|
|
|
3042
3052
|
/**
|
|
3043
3053
|
* Avatar type
|
|
3044
3054
|
*/
|
|
3045
|
-
avatarType: _angular_core.InputSignal<"
|
|
3055
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
3046
3056
|
/**
|
|
3047
3057
|
* Avatar photo source (for photo type)
|
|
3048
3058
|
*/
|
|
@@ -4171,7 +4181,7 @@ declare class DsMobileChatModalComponent implements OnInit, AfterViewInit {
|
|
|
4171
4181
|
participant: _angular_core.WritableSignal<ChatParticipant>;
|
|
4172
4182
|
messages: _angular_core.WritableSignal<ChatMessage[]>;
|
|
4173
4183
|
currentUserInitials: _angular_core.WritableSignal<string>;
|
|
4174
|
-
currentUserAvatarType: _angular_core.WritableSignal<"
|
|
4184
|
+
currentUserAvatarType: _angular_core.WritableSignal<"initials" | "photo" | "icon">;
|
|
4175
4185
|
currentUserAvatarSrc: _angular_core.WritableSignal<string>;
|
|
4176
4186
|
autoFocus: _angular_core.WritableSignal<boolean>;
|
|
4177
4187
|
/** Inquiry shows system takeover copy; peer chat does not. */
|
|
@@ -4540,7 +4550,7 @@ declare class DsMobileInteractiveListItemMessageComponent {
|
|
|
4540
4550
|
/**
|
|
4541
4551
|
* Avatar type
|
|
4542
4552
|
*/
|
|
4543
|
-
avatarType: _angular_core.InputSignal<"
|
|
4553
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
4544
4554
|
/**
|
|
4545
4555
|
* Avatar photo source (for photo type)
|
|
4546
4556
|
*/
|
|
@@ -4600,7 +4610,7 @@ declare class DsMobileContactListItemComponent {
|
|
|
4600
4610
|
initials: _angular_core.InputSignal<string>;
|
|
4601
4611
|
/** Optional photo */
|
|
4602
4612
|
avatarSrc: _angular_core.InputSignal<string>;
|
|
4603
|
-
avatarType: _angular_core.InputSignal<"
|
|
4613
|
+
avatarType: _angular_core.InputSignal<"initials" | "photo" | "icon">;
|
|
4604
4614
|
avatarIconName: _angular_core.InputSignal<string>;
|
|
4605
4615
|
/** Whitelabel corner badge (default off — same as community posts) */
|
|
4606
4616
|
showBadge: _angular_core.InputSignal<boolean>;
|
|
@@ -4833,7 +4843,7 @@ declare class UserService {
|
|
|
4833
4843
|
readonly displayName: _angular_core.Signal<string>;
|
|
4834
4844
|
readonly address: _angular_core.Signal<string>;
|
|
4835
4845
|
readonly avatarInitials: _angular_core.Signal<string>;
|
|
4836
|
-
readonly avatarType: _angular_core.Signal<"
|
|
4846
|
+
readonly avatarType: _angular_core.Signal<"initials" | "photo" | "icon">;
|
|
4837
4847
|
readonly avatarSrc: _angular_core.Signal<string>;
|
|
4838
4848
|
readonly profileMenuItems: _angular_core.Signal<ActionGroup[] | undefined>;
|
|
4839
4849
|
private profileActionSelectedSubject;
|