@quadrel-enterprise-ui/framework 20.0.3 → 20.1.0

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
@@ -449,6 +449,13 @@ interface QdContactData {
449
449
  * * @example "+49 175 64821346"
450
450
  */
451
451
  phoneNumber?: string;
452
+ /**
453
+ * @description Optionally defines the phone number URL, if not configured falls back to tel-URLs
454
+ *
455
+ * @example "msteams://call?number=+175 64821346"
456
+ * @see {@link https://wiki.selfhtml.org/wiki/HTML/Tutorials/Links/klickbare_Telefonnummern}
457
+ */
458
+ phoneUrl?: string;
452
459
  /**
453
460
  * @description Defines the email address of the contact
454
461
  *
@@ -9471,6 +9478,7 @@ declare class QdContactCardComponent {
9471
9478
  get postalCode(): string | undefined;
9472
9479
  get city(): string;
9473
9480
  get phoneNumber(): string;
9481
+ get phoneUrl(): string;
9474
9482
  get emailAddress(): string;
9475
9483
  get customFields(): QdContactDataCustomField[];
9476
9484
  hasTag(): boolean;
@@ -9478,6 +9486,7 @@ declare class QdContactCardComponent {
9478
9486
  hasBusinessPartnerId(): boolean;
9479
9487
  hasContactPerson(): boolean;
9480
9488
  hasPhoneNumber(): boolean;
9489
+ hasPhoneUrl(): boolean;
9481
9490
  hasAddress(): boolean;
9482
9491
  hasCareOf(): boolean;
9483
9492
  hasStreet(): boolean;
@@ -13169,6 +13178,7 @@ declare class QdPageObjectHeaderComponent<T extends object> implements OnInit, O
13169
13178
  private _isLoadingSubject;
13170
13179
  private _customActionsSubject;
13171
13180
  private _destroyed$;
13181
+ private _availableContexts;
13172
13182
  pageObjectData$: Observable<T>;
13173
13183
  isLoading$: Observable<boolean>;
13174
13184
  customActions$: Observable<QdMenuButtonConfig>;