From c8faa156f86e844564e9de490cc31d36c78fda36 Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Thu, 26 Sep 2024 15:58:01 -0700 Subject: [PATCH 1/8] Update Excel React quickstart manifest reference, match language to jQuery quickstart --- docs/quickstarts/excel-quickstart-react.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quickstarts/excel-quickstart-react.md b/docs/quickstarts/excel-quickstart-react.md index 60f65a1b54..1c6ad0b0a5 100644 --- a/docs/quickstarts/excel-quickstart-react.md +++ b/docs/quickstarts/excel-quickstart-react.md @@ -1,7 +1,7 @@ --- title: Use React to build an Excel task pane add-in description: Learn how to build a simple Excel task pane add-in by using the Office JS API and React. -ms.date: 12/11/2023 +ms.date: 09/26/2024 ms.service: excel ms.localizationpriority: high --- @@ -31,7 +31,7 @@ After you complete the wizard, the generator creates the project and installs su The add-in project that you've created with the Yeoman generator contains sample code for a basic task pane add-in. If you'd like to explore the key components of your add-in project, open the project in your code editor and review the files listed below. When you're ready to try out your add-in, proceed to the next section. -- The **manifest.xml** file in the root directory of the project defines the settings and capabilities of the add-in. To learn more about the **manifest.xml** file, see [Office Add-ins with the add-in only manifest](../develop/xml-manifest-overview.md). +- The **./manifest.xml** or **manifest.json** file in the root directory of the project defines the settings and capabilities of the add-in. - The **./src/taskpane/taskpane.html** file defines the HTML framework of the task pane, and the files within the **./src/taskpane/components** folder define the various parts of the task pane UI. - The **./src/taskpane/taskpane.css** file contains the CSS that's applied to content in the task pane. - The **./src/taskpane/components/App.tsx** file contains the Office JavaScript API code that facilitates interaction between the task pane and Excel. From d34a6dc1a1fc63a70e6b053cfc55e6cf11269380 Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Fri, 27 Sep 2024 15:03:36 -0700 Subject: [PATCH 2/8] Add unified manifest to custom functions note, begin updating Excel tutorial --- docs/excel/custom-functions-json.md | 2 +- docs/includes/excel-custom-functions-note.md | 3 +++ docs/tutorials/excel-tutorial.md | 15 ++++++++++++++- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/excel/custom-functions-json.md b/docs/excel/custom-functions-json.md index a58f673ac0..7fe8233f4c 100644 --- a/docs/excel/custom-functions-json.md +++ b/docs/excel/custom-functions-json.md @@ -1,7 +1,7 @@ --- title: Manually create JSON metadata for custom functions in Excel description: Define JSON metadata for custom functions in Excel and associate your function ID and name properties. -ms.date: 10/10/2022 +ms.date: 09/27/2024 ms.localizationpriority: medium --- diff --git a/docs/includes/excel-custom-functions-note.md b/docs/includes/excel-custom-functions-note.md index 7d952e323e..6ff40082e9 100644 --- a/docs/includes/excel-custom-functions-note.md +++ b/docs/includes/excel-custom-functions-note.md @@ -12,3 +12,6 @@ > > - Office on iPad > - volume-licensed perpetual versions of Office 2019 or earlier on Windows + +> [!NOTE] +> The unified manifest for Microsoft 365 that's currently in public preview doesn't support custom functions projects. You must use the add-in only manifest for custom functions projects. For more information, see [Office Add-ins manifest](/develop/add-in-manifests.md). diff --git a/docs/tutorials/excel-tutorial.md b/docs/tutorials/excel-tutorial.md index 6aab3087a1..95df7e3713 100644 --- a/docs/tutorials/excel-tutorial.md +++ b/docs/tutorials/excel-tutorial.md @@ -1,7 +1,7 @@ --- title: Excel add-in tutorial description: Build an Excel add-in that creates, populates, filters, and sorts a table, creates a chart, freezes a table header, protects a worksheet, and opens a dialog. -ms.date: 12/11/2023 +ms.date: 09/27/2024 ms.service: excel #Customer intent: As a developer, I want to build a Excel add-in that can interact with content in a Excel document. ms.localizationpriority: high @@ -475,6 +475,19 @@ In this step of the tutorial, you'll add a button to the ribbon that toggles wor ### Configure the manifest to add a second ribbon button +There are two manifest options for Office Add-ins: the unified manifest for Microsoft 365, and the add-in only manifest. + +# [Unified manifest for Microsoft 365](#tab/jsonmanifest) + +> [!NOTE] +> The unified manifest for Microsoft 365 is currently in public preview and shouldn't be used in production add-ins. We invite you to try it out in test or development environments. + +1. Open the manifest file **./manifest.json**. + +1. (More steps TBD) + +# [Add-in only manifest](#tab/xmlmanifest) + 1. Open the manifest file **./manifest.xml**. 1. Locate the **\** element. This element defines the **Show Taskpane** button on the **Home** ribbon you have been using to launch the add-in. We're going to add a second button to the same group on the **Home** ribbon. In between the closing **\** tag and the closing **\** tag, add the following markup. From 14ff6ab0ccc8362f2962ca34336dd44530c07629 Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Fri, 27 Sep 2024 15:03:44 -0700 Subject: [PATCH 3/8] Undo date change --- docs/excel/custom-functions-json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/excel/custom-functions-json.md b/docs/excel/custom-functions-json.md index 7fe8233f4c..a58f673ac0 100644 --- a/docs/excel/custom-functions-json.md +++ b/docs/excel/custom-functions-json.md @@ -1,7 +1,7 @@ --- title: Manually create JSON metadata for custom functions in Excel description: Define JSON metadata for custom functions in Excel and associate your function ID and name properties. -ms.date: 09/27/2024 +ms.date: 10/10/2022 ms.localizationpriority: medium --- From 3d882032a87e325c88df69103e981dc311069fa9 Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Fri, 27 Sep 2024 15:20:02 -0700 Subject: [PATCH 4/8] Adjust note --- docs/includes/excel-custom-functions-note.md | 2 +- docs/tutorials/excel-tutorial.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/includes/excel-custom-functions-note.md b/docs/includes/excel-custom-functions-note.md index 6ff40082e9..32a3d072b2 100644 --- a/docs/includes/excel-custom-functions-note.md +++ b/docs/includes/excel-custom-functions-note.md @@ -14,4 +14,4 @@ > - volume-licensed perpetual versions of Office 2019 or earlier on Windows > [!NOTE] -> The unified manifest for Microsoft 365 that's currently in public preview doesn't support custom functions projects. You must use the add-in only manifest for custom functions projects. For more information, see [Office Add-ins manifest](/develop/add-in-manifests.md). +> The unified manifest for Microsoft 365 that's currently in public developer preview doesn't support custom functions projects. You must use the add-in only manifest for custom functions projects. For more information, see [Office Add-ins manifest](/develop/add-in-manifests.md). diff --git a/docs/tutorials/excel-tutorial.md b/docs/tutorials/excel-tutorial.md index 95df7e3713..176f63b0cc 100644 --- a/docs/tutorials/excel-tutorial.md +++ b/docs/tutorials/excel-tutorial.md @@ -480,7 +480,7 @@ There are two manifest options for Office Add-ins: the unified manifest for Micr # [Unified manifest for Microsoft 365](#tab/jsonmanifest) > [!NOTE] -> The unified manifest for Microsoft 365 is currently in public preview and shouldn't be used in production add-ins. We invite you to try it out in test or development environments. +> The unified manifest for Microsoft 365 is currently in public developer preview and shouldn't be used in production add-ins. We invite you to try it out in test or development environments. Use the add-in only manifest for production add-ins. 1. Open the manifest file **./manifest.json**. From a3daa08050824fb1fadf7ef695103e7948569712 Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Fri, 4 Oct 2024 15:30:35 -0700 Subject: [PATCH 5/8] Change manifest note wording --- docs/includes/excel-custom-functions-note.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/includes/excel-custom-functions-note.md b/docs/includes/excel-custom-functions-note.md index 32a3d072b2..2811bfb21e 100644 --- a/docs/includes/excel-custom-functions-note.md +++ b/docs/includes/excel-custom-functions-note.md @@ -14,4 +14,4 @@ > - volume-licensed perpetual versions of Office 2019 or earlier on Windows > [!NOTE] -> The unified manifest for Microsoft 365 that's currently in public developer preview doesn't support custom functions projects. You must use the add-in only manifest for custom functions projects. For more information, see [Office Add-ins manifest](/develop/add-in-manifests.md). +> The unified manifest for Microsoft 365 doesn't currently support custom functions projects. You must use the add-in only manifest for custom functions projects. For more information, see [Office Add-ins manifest](../develop/add-in-manifests.md). From fab97cafc87bf2a24a70df0fcc524c32d8f6c04e Mon Sep 17 00:00:00 2001 From: Alison McKay Date: Fri, 4 Oct 2024 15:34:18 -0700 Subject: [PATCH 6/8] Change manifest note wording --- docs/tutorials/excel-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/excel-tutorial.md b/docs/tutorials/excel-tutorial.md index 176f63b0cc..59f33d7530 100644 --- a/docs/tutorials/excel-tutorial.md +++ b/docs/tutorials/excel-tutorial.md @@ -480,7 +480,7 @@ There are two manifest options for Office Add-ins: the unified manifest for Micr # [Unified manifest for Microsoft 365](#tab/jsonmanifest) > [!NOTE] -> The unified manifest for Microsoft 365 is currently in public developer preview and shouldn't be used in production add-ins. We invite you to try it out in test or development environments. Use the add-in only manifest for production add-ins. +> The unified manifest for Microsoft 365 is currently in public developer preview for Excel and shouldn't be used in production Excel add-ins. We invite you to try it out in test or development environments. Use the add-in only manifest for production Excel add-ins. 1. Open the manifest file **./manifest.json**. From 434220a831c5d8c9a141310445442812031f099a Mon Sep 17 00:00:00 2001 From: Rick Kirkham Date: Tue, 11 Feb 2025 16:00:24 -0800 Subject: [PATCH 7/8] Update date in Excel React quickstart --- docs/quickstarts/excel-quickstart-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstarts/excel-quickstart-react.md b/docs/quickstarts/excel-quickstart-react.md index 1c6ad0b0a5..b05224b125 100644 --- a/docs/quickstarts/excel-quickstart-react.md +++ b/docs/quickstarts/excel-quickstart-react.md @@ -1,7 +1,7 @@ --- title: Use React to build an Excel task pane add-in description: Learn how to build a simple Excel task pane add-in by using the Office JS API and React. -ms.date: 09/26/2024 +ms.date: 02/12/2025 ms.service: excel ms.localizationpriority: high --- From 8c26bc9c30a786ab3bff8ab4622ff2bb5bb5ba95 Mon Sep 17 00:00:00 2001 From: Rick Kirkham Date: Tue, 11 Feb 2025 16:00:47 -0800 Subject: [PATCH 8/8] Update date in Excel tutorial documentation --- docs/tutorials/excel-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/excel-tutorial.md b/docs/tutorials/excel-tutorial.md index ec97a2f5d9..7d8b8fe16d 100644 --- a/docs/tutorials/excel-tutorial.md +++ b/docs/tutorials/excel-tutorial.md @@ -1,7 +1,7 @@ --- title: Excel add-in tutorial description: Build an Excel add-in that creates, populates, filters, and sorts a table, creates a chart, freezes a table header, protects a worksheet, and opens a dialog. -ms.date: 10/03/2024 +ms.date: 02/12/2025 ms.service: excel #Customer intent: As a developer, I want to build a Excel add-in that can interact with content in a Excel document. ms.localizationpriority: high