@propbinder/mobile-design 0.2.8 → 0.2.9

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
@@ -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
  /**
@@ -4163,6 +4163,11 @@ declare class DsMobileCardInlineFileComponent {
4163
4163
  * - 'compact' - Reduced padding and row layout
4164
4164
  */
4165
4165
  layout: _angular_core.InputSignal<"default" | "compact">;
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: {
@@ -5139,7 +5144,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
5139
5144
  hasError: _angular_core.InputSignal<boolean>;
5140
5145
  errorMessage: _angular_core.InputSignal<string>;
5141
5146
  autocomplete: _angular_core.InputSignal<string>;
5142
- inputmode: _angular_core.InputSignal<"search" | "text" | "url" | "numeric" | "email" | "tel" | undefined>;
5147
+ inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "url" | "email" | "tel" | undefined>;
5143
5148
  autoClearError: _angular_core.InputSignal<boolean>;
5144
5149
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
5145
5150
  valueChange: _angular_core.OutputEmitterRef<string>;
@@ -5653,7 +5658,7 @@ declare class MobileInquiriesPageComponent {
5653
5658
  private navCtrl;
5654
5659
  private newInquiryModal;
5655
5660
  constructor(userService: UserService, navCtrl: NavController, newInquiryModal: DsMobileNewInquiryModalService);
5656
- filterStatus: _angular_core.WritableSignal<"open" | "closed" | "all">;
5661
+ filterStatus: _angular_core.WritableSignal<"all" | "open" | "closed">;
5657
5662
  tabItems: InlineTabItem[];
5658
5663
  inquiries: _angular_core.WritableSignal<Inquiry[]>;
5659
5664
  filteredInquiries: _angular_core.Signal<Inquiry[]>;
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.09",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"