diff --git a/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-04/generated_docs_data_v2.json b/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-04/generated_docs_data_v2.json index 0d2668e988..f73b791d82 100644 --- a/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-04/generated_docs_data_v2.json +++ b/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-04/generated_docs_data_v2.json @@ -40045,7 +40045,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -41115,7 +41115,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -52813,7 +52813,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -53104,7 +53104,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -54399,7 +54399,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -99253,7 +99253,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -100286,7 +100286,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { @@ -101721,7 +101721,7 @@ "syntaxKind": "PropertySignature", "name": "href", "value": "string", - "description": "The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", + "description": "The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation.", "isOptional": true }, { diff --git a/packages/ui-extensions/src/surfaces/checkout/components/components-shared.d.ts b/packages/ui-extensions/src/surfaces/checkout/components/components-shared.d.ts index 419589d288..5995121f94 100644 --- a/packages/ui-extensions/src/surfaces/checkout/components/components-shared.d.ts +++ b/packages/ui-extensions/src/surfaces/checkout/components/components-shared.d.ts @@ -1384,7 +1384,7 @@ export interface ButtonBehaviorProps extends InteractionProps, FocusEventProps { } export interface LinkBehaviorProps extends InteractionProps, FocusEventProps { /** - * The URL to navigate to when clicked. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation. + * The URL to navigate to when clicked, including `mailto:` and `tel:` URLs. The `click` event fires first, then navigation occurs. If `commandFor` is also set, the command executes instead of navigation. */ href?: string; /**