diff --git a/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-07/generated_docs_data_v2.json b/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-07/generated_docs_data_v2.json index e2d19e9fec..9c5a8c08eb 100644 --- a/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-07/generated_docs_data_v2.json +++ b/packages/ui-extensions/docs/surfaces/customer-account/generated/customer_account_ui_extensions/2026-07/generated_docs_data_v2.json @@ -40084,7 +40084,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 }, { @@ -41154,7 +41154,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 }, { @@ -55254,7 +55254,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 }, { @@ -55545,7 +55545,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 }, { @@ -56840,7 +56840,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 }, { @@ -101685,7 +101685,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 }, { @@ -102718,7 +102718,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 }, { @@ -104153,7 +104153,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 3a1eb575cb..d0efc7656a 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; /**