@propbinder/mobile-design 0.2.8 → 0.2.10

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
@@ -1872,7 +1872,7 @@ declare class DsMobileListItemComponent {
1872
1872
  * - 'center' - Align to center
1873
1873
  * - 'bottom' - Align to bottom
1874
1874
  */
1875
- align: _angular_core.InputSignal<"center" | "top" | "bottom">;
1875
+ align: _angular_core.InputSignal<"top" | "center" | "bottom">;
1876
1876
  /**
1877
1877
  * Whether the list item is interactive (clickable and long-pressable)
1878
1878
  * When true, adds interactive background, cursor pointer, and touch handlers
@@ -3991,7 +3991,7 @@ declare class DsMobileCardInlineComponent {
3991
3991
  * - 'default' - Column layout with standard padding (gap: 12px, padding: 10px 12px)
3992
3992
  * - 'compact' - Row layout with reduced padding (gap: 8px, padding: 10px)
3993
3993
  */
3994
- variant: _angular_core.InputSignal<"default" | "compact">;
3994
+ variant: _angular_core.InputSignal<"compact" | "default">;
3995
3995
  /**
3996
3996
  * Whether the card is disabled
3997
3997
  * Disables all interactions and reduces opacity
@@ -4054,7 +4054,7 @@ declare class DsMobileCardInlineBannerComponent {
4054
4054
  * - 'default' - Standard padding and column layout
4055
4055
  * - 'compact' - Reduced padding and row layout
4056
4056
  */
4057
- layout: _angular_core.InputSignal<"default" | "compact">;
4057
+ layout: _angular_core.InputSignal<"compact" | "default">;
4058
4058
  /**
4059
4059
  * Emits when the banner is clicked
4060
4060
  */
@@ -4105,7 +4105,7 @@ declare class DsMobileCardInlineContactComponent {
4105
4105
  * - 'default' - Standard padding and column layout
4106
4106
  * - 'compact' - Reduced padding and row layout
4107
4107
  */
4108
- layout: _angular_core.InputSignal<"default" | "compact">;
4108
+ layout: _angular_core.InputSignal<"compact" | "default">;
4109
4109
  /**
4110
4110
  * Whether the contact item is clickable
4111
4111
  */
@@ -4148,7 +4148,7 @@ declare class DsMobileCardInlineFileComponent {
4148
4148
  */
4149
4149
  fileName: _angular_core.InputSignal<string>;
4150
4150
  /**
4151
- * File size display (e.g., "1.2 MB")
4151
+ * File size display (e.g., '1.2 MB')
4152
4152
  */
4153
4153
  fileSize: _angular_core.InputSignal<string>;
4154
4154
  /**
@@ -4162,7 +4162,12 @@ declare class DsMobileCardInlineFileComponent {
4162
4162
  * - 'default' - Standard padding and column layout
4163
4163
  * - 'compact' - Reduced padding and row layout
4164
4164
  */
4165
- layout: _angular_core.InputSignal<"default" | "compact">;
4165
+ layout: _angular_core.InputSignal<"compact" | "default">;
4166
+ /**
4167
+ * Optional URL to open when clicked
4168
+ * If provided, clicking the card will open this URL in a new tab
4169
+ */
4170
+ fileUrl: _angular_core.InputSignal<string | undefined>;
4166
4171
  /**
4167
4172
  * Emits when the file attachment is clicked
4168
4173
  */
@@ -4177,7 +4182,7 @@ declare class DsMobileCardInlineFileComponent {
4177
4182
  getFileTypeLabel(): string;
4178
4183
  handleClick(): void;
4179
4184
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileCardInlineFileComponent, never>;
4180
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileCardInlineFileComponent, "ds-mobile-card-inline-file", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; }, { "fileClick": "fileClick"; }, never, never, true, never>;
4185
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileCardInlineFileComponent, "ds-mobile-card-inline-file", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "fileUrl": { "alias": "fileUrl"; "required": false; "isSignal": true; }; }, { "fileClick": "fileClick"; }, never, never, true, never>;
4181
4186
  }
4182
4187
 
4183
4188
  /**
@@ -4233,7 +4238,7 @@ interface ChatParticipant {
4233
4238
  *
4234
4239
  * Represents the data needed to display a chat conversation.
4235
4240
  *
4236
- * @example
4241
+ * @example
4237
4242
  * ```typescript
4238
4243
  * const chatData: ChatModalData = {
4239
4244
  * participant: {
@@ -5210,7 +5215,7 @@ declare class DsMobileFabComponent implements AfterViewInit, OnDestroy {
5210
5215
  * Note: FAB is always 56px circular, but this affects the icon size
5211
5216
  * @default 'md'
5212
5217
  */
5213
- size: _angular_core.InputSignal<"sm" | "md" | "lg">;
5218
+ size: _angular_core.InputSignal<"md" | "sm" | "lg">;
5214
5219
  /**
5215
5220
  * ARIA label for accessibility
5216
5221
  * @required - Always provide a descriptive label
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.08",
3
+ "version": "0.2.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"