diff --git a/docs/design/keyboard-shortcuts.md b/docs/design/keyboard-shortcuts.md index 060934361..270d7399b 100644 --- a/docs/design/keyboard-shortcuts.md +++ b/docs/design/keyboard-shortcuts.md @@ -1,7 +1,7 @@ --- title: Custom keyboard shortcuts in Office Add-ins description: Learn how to add custom keyboard shortcuts, also known as key combinations, to your Office Add-in. -ms.date: 09/23/2025 +ms.date: 10/21/2025 ms.topic: how-to ms.localizationpriority: medium --- @@ -45,9 +45,6 @@ The process to define custom keyboard shortcuts for your add-in varies depending # [Unified app manifest for Microsoft 365](#tab/jsonmanifest) -> [!NOTE] -> Implementing keyboard shortcuts with the unified app manifest for Microsoft 365 is in public developer preview. This shouldn't be used in production add-ins. We invite you to try it out in test or development environments. For more information, see the [Microsoft 365 app manifest schema reference](/microsoft-365/extensibility/schema/?view=m365-app-prev&preserve-view=true). - If your add-in uses the unified app manifest for Microsoft 365, custom keyboard shortcuts and their actions are defined in the manifest. 1. In your add-in project, open the **manifest.json** file. diff --git a/docs/develop/json-manifest-overview.md b/docs/develop/json-manifest-overview.md index 53d584f54..cd8c559bb 100644 --- a/docs/develop/json-manifest-overview.md +++ b/docs/develop/json-manifest-overview.md @@ -2,7 +2,7 @@ title: Compare the add-in only manifest with the unified manifest for Microsoft 365 description: Get a comparison of the add-in only manifest with the unified manifest for Microsoft 365. ms.topic: overview -ms.date: 09/02/2025 +ms.date: 10/21/2025 ms.localizationpriority: high --- @@ -93,7 +93,7 @@ The following table shows a mapping of *some* high-level child properties of the | [`"alternates"`](/microsoft-365/extensibility/schema/element-extensions#alternates) | Specifies backwards compatibility with an equivalent COM add-in, XLL, or both. | `` | See the [EquivalentAddins - See also](/javascript/api/manifest/equivalentaddins#see-also) for background information. | | [`"runtimes"`](/microsoft-365/extensibility/schema/element-extensions#runtimes) | Configures the [embedded runtimes](../testing/runtimes.md) that the add-in uses, including various kinds of add-ins that have little or no UI, such as custom function-only add-ins and [function commands](../design/add-in-commands.md#types-of-add-in-commands). | ``. ``, and `` (of type CustomFunctions) |*None.* | | [`"autoRunEvents"`](/microsoft-365/extensibility/schema/element-extensions#autorunevents) | Configures an event handler for a specified event. | `` (of type LaunchEvent) |*None.* | -| [`"keyboardShortcuts"`](/microsoft-365/extensibility/schema/element-extensions#keyboardshortcuts) (developer preview) | Defines custom keyboard shortcuts or key combinations to run specific actions. | `` | *None.* | +| [`"keyboardShortcuts"`](/microsoft-365/extensibility/schema/element-extensions#keyboardshortcuts) | Defines custom keyboard shortcuts or key combinations to run specific actions. | `` | *None.* | #### `"ribbons"` table diff --git a/docs/develop/requirements-property-unified-manifest.md b/docs/develop/requirements-property-unified-manifest.md index 8cc5fe888..2be7a7885 100644 --- a/docs/develop/requirements-property-unified-manifest.md +++ b/docs/develop/requirements-property-unified-manifest.md @@ -284,7 +284,7 @@ The previous example shown in [extensions.autoRunEvents.requirements](#extension Similarly, for the example in [extensions.ribbons.requirements](#extensionsribbonsrequirements), if the action linked to the custom button is the only action configured in a runtime object, then that runtime object should be blocked in the same circumstances in which the ribbon object is blocked. -### extensions.keyboardShortcuts.requirements (developer preview) +### extensions.keyboardShortcuts.requirements The `extensions.keyboardShortcuts` property defines custom keyboard shortcuts or key combinations to run specific actions. To learn how to create custom shortcuts, see [Add custom keyboard shortcuts to your Office Add-ins](../design/keyboard-shortcuts.md). diff --git a/docs/develop/unified-manifest-overview.md b/docs/develop/unified-manifest-overview.md index b12b395ec..7b98fac41 100644 --- a/docs/develop/unified-manifest-overview.md +++ b/docs/develop/unified-manifest-overview.md @@ -67,7 +67,7 @@ We're working hard to complete reference documentation for the `"extensions"` pr | [`"alternates"`](/microsoft-365/extensibility/schema/element-extensions#alternates) | Specifies backwards compatibility with an equivalent COM add-in, XLL, or both. Also specifies the main icons that are used to represent the add-in on older versions of Office. | | [`"runtimes"`](/microsoft-365/extensibility/schema/element-extensions#runtimes) | Configures the [embedded runtimes](../testing/runtimes.md) that the add-in uses, including various kinds of add-ins that have little or no UI, such as custom function-only add-ins and [function commands](../design/add-in-commands.md#types-of-add-in-commands). | | [`"autoRunEvents"`](/microsoft-365/extensibility/schema/element-extensions#autorunevents) | Configures an event handler for a specified event. | -| [`"keyboardShortcuts"`](/microsoft-365/extensibility/schema/element-extensions#keyboardshortcuts) (developer preview) | Defines custom keyboard shortcuts or key combinations to run specific actions. | +| [`"keyboardShortcuts"`](/microsoft-365/extensibility/schema/element-extensions#keyboardshortcuts) | Defines custom keyboard shortcuts or key combinations to run specific actions. | ## Specify safe domains