@propbinder/mobile-design 0.3.39 → 0.3.41
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/index.d.ts
CHANGED
|
@@ -51,6 +51,16 @@ declare abstract class MobilePageBase implements OnDestroy {
|
|
|
51
51
|
* until they explicitly opt in.
|
|
52
52
|
*/
|
|
53
53
|
contentLoading: _angular_core.InputSignal<boolean>;
|
|
54
|
+
/**
|
|
55
|
+
* Layout variant for the skeleton loader when contentLoading is true.
|
|
56
|
+
* - 'list': Default list layout with shimmer animation
|
|
57
|
+
* - 'card': Grid of cards with pulse animation
|
|
58
|
+
* - 'details': Detail page structure with pulse animation
|
|
59
|
+
* - 'handbook': Grid of handbook folders with pulse animation
|
|
60
|
+
*
|
|
61
|
+
* @default 'list'
|
|
62
|
+
*/
|
|
63
|
+
contentLoadingVariant: _angular_core.InputSignal<"list" | "card" | "details" | "handbook">;
|
|
54
64
|
/**
|
|
55
65
|
* Maximum content width (desktop only)
|
|
56
66
|
*
|
|
@@ -144,7 +154,7 @@ declare abstract class MobilePageBase implements OnDestroy {
|
|
|
144
154
|
*/
|
|
145
155
|
ngOnDestroy(): void;
|
|
146
156
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobilePageBase, never>;
|
|
147
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageBase, never, never, { "contentLoading": { "alias": "contentLoading"; "required": false; "isSignal": true; }; "contentWidth": { "alias": "contentWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
157
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MobilePageBase, never, never, { "contentLoading": { "alias": "contentLoading"; "required": false; "isSignal": true; }; "contentLoadingVariant": { "alias": "contentLoadingVariant"; "required": false; "isSignal": true; }; "contentWidth": { "alias": "contentWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
148
158
|
}
|
|
149
159
|
|
|
150
160
|
interface ActionResult {
|
|
@@ -5031,7 +5041,7 @@ declare class DsMobileGroupAvatarStackComponent {
|
|
|
5031
5041
|
customAvatarUrl: _angular_core.InputSignal<string>;
|
|
5032
5042
|
size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl">;
|
|
5033
5043
|
/** Row avatar (32×32, diagonal **xs** faces) vs header / hero stack. */
|
|
5034
|
-
layout: _angular_core.InputSignal<"
|
|
5044
|
+
layout: _angular_core.InputSignal<"list" | "stack">;
|
|
5035
5045
|
/** When set, this participant is omitted from the stack (e.g. current user id). */
|
|
5036
5046
|
currentUserId: _angular_core.InputSignal<string>;
|
|
5037
5047
|
private readonly cap;
|