Skip to content

Commit d2df209

Browse files
authored
Merge branch 'main' into patch-8
2 parents 6176158 + 2a4a559 commit d2df209

File tree

166 files changed

+1271
-1672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+1271
-1672
lines changed

.openpublishing.redirection.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui-footerSection.md",
5+
"redirect_url": "formcontext-ui#formcontextuifootersection-removed",
6+
"redirect_document_id": "false"
7+
},
8+
{
9+
"source_path": "powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui-footerSection/getVisible.md",
10+
"redirect_url": "../formcontext-ui#formcontextuifootersection-removed",
11+
"redirect_document_id": "false"
12+
},
13+
{
14+
"source_path": "powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-ui-footerSection/setVisible.md",
15+
"redirect_url": "../formcontext-ui#formcontextuifootersection-removed",
16+
"redirect_document_id": "false"
17+
},
18+
{
19+
"source_path": "powerapps-docs/developer/data-platform/outlook-client/sample-create-retrieve-outlook-filters.md",
20+
"redirect_url": "../data-platform/org-service/samples/create-retrieve-outlook-filters",
21+
"redirect_document_id": "false"
22+
},
323
{
424
"source_path": "powerapps-docs/developer/data-platform/org-service/samples/install-remove-sample-data.md",
525
"redirect_url": "../data-platform/sample-data",
@@ -1192,7 +1212,7 @@
11921212
},
11931213
{
11941214
"source_path": "powerapps-docs/controls/control-text-input.md",
1195-
"redirect_url": "/powerapps/maker/canvas-apps/controls/control-text-input",
1215+
"redirect_url": "/power-apps/maker/canvas-apps/controls/control-text-input",
11961216
"redirect_document_id": "false"
11971217
},
11981218
{

powerapps-docs/developer/component-framework/implementing-controls-using-typescript.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ To create a new project:
7373
> [!NOTE]
7474
> If you receive the error `The term 'npm' is not recognized as the name of a cmdlet, function, script file, or operable program.`, make sure you have installed [node.js](https://nodejs.org/en/download/) (LTS version is recommended) and all other prerequisites.
7575
76+
1. After npm install, you will need to generate ManifestDesignTypes.d.ts file in this directory using the below command."
77+
```
78+
npm run refreshTypes
79+
```
80+
81+
7682
## Implementing manifest
7783

7884
The control manifest is an XML file that contains the metadata of the code component. It also defines the behavior of the code component. In this tutorial, this manifest file is created under the `LinearInputControl` subfolder. When you open the `ControlManifest.Input.xml` file in Visual Studio Code, you'll notice that the manifest file is predefined with some properties. More information: [Manifest](manifest-schema-reference/manifest.md).

powerapps-docs/developer/component-framework/manifest-schema-reference/code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
1111

1212
ms.suite: ""
1313
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
14+
ms.topic: "reference"
1515
applies_to:
1616
- "Dynamics 365 (online)"
1717
- "Dynamics 365 Version 9.x"

powerapps-docs/developer/component-framework/manifest-schema-reference/control.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
applies_to:
1613
- "Dynamics 365 (online)"
1714
- "Dynamics 365 Version 9.x"
@@ -31,7 +28,7 @@ Model-driven and canvas apps
3128
|--|--|--|--|--------|
3229
|`namespace`|Defines the object prototype of the component|[!INCLUDE [alphanumerictype-description](includes/alphanumerictype-description.md)]|Yes|Model-driven and canvas apps |
3330
|`constructor`|A method for initializing the object|[!INCLUDE [alphanumerictype-description](includes/alphanumerictype-description.md)]|Yes|Model-driven and canvas apps |
34-
|`control-type`|Standard|[!INCLUDE [controltype-description](includes/controltype-description.md)]|No|Model-driven and canvas apps |
31+
|`control-type`|Whether the control is a standard control or a React control. The value of `virtual` indicates a React control using platform React library. Virtual controls are a feature in public preview. More information: [React controls & platform libraries (Preview) ](../react-controls-platform-libraries.md)|[!INCLUDE [controltype-description](includes/controltype-description.md)]|No|Model-driven and canvas apps |
3532
|`description-key`|Defines the description of the component that will be seen on the UI.|`string`|No|Model-driven and canvas apps |
3633
|`display-name-key`|Defines the name of the control that is displayed on the UI.|`string`|Yes|Model-driven and canvas apps |
3734
|`preview-image`|Image that will be used on the customization screens to show a preview of the component.|`string`|No|Model-driven apps|
@@ -69,4 +66,4 @@ Model-driven and canvas apps
6966
[Power Apps component framework overview](../overview.md)
7067

7168

72-
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
69+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]

powerapps-docs/developer/component-framework/manifest-schema-reference/css.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
applies_to:
1613
- "Dynamics 365 (online)"
1714
- "Dynamics 365 Version 9.x"

powerapps-docs/developer/component-framework/manifest-schema-reference/data-set.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
applies_to:
1613
- "Dynamics 365 (online)"
1714
- "Dynamics 365 Version 9.x"

powerapps-docs/developer/component-framework/manifest-schema-reference/feature-usage.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
---
1613

1714
# feature-usage element
@@ -32,7 +29,7 @@ Model-driven apps
3229

3330
|Element|Description|Available for|
3431
|--|--|-----|
35-
|[uses-feature](uses-feature.md)|Indicates which feature their components want to use.|Model-driven apps|
32+
|[uses-feature](uses-feature.md)|[!INCLUDE [uses-feature-description](includes/uses-feature-description.md)]|Model-driven apps|
3633

3734

3835
## Example

powerapps-docs/developer/component-framework/manifest-schema-reference/html.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
---
22
title: HTML Element | Microsoft Docs
3-
description:
3+
description: Use HTML web resources to create user interface elements for client extensions.
44
keywords:
55
ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
applies_to:
1613
- "Dynamics 365 (online)"
1714
- "Dynamics 365 Version 9.x"

powerapps-docs/developer/component-framework/manifest-schema-reference/img.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ ms.subservice: pcf
66
ms.author: jdaly
77
author: noazarur-microsoft
88
manager: kvivek
9-
ms.date: 03/12/2022
9+
ms.date: 03/26/2022
1010
ms.reviewer: jdaly
11-
12-
ms.suite: ""
13-
ms.tgt_pltfrm: ""
14-
ms.topic: "article"
11+
ms.topic: "reference"
1512
applies_to:
1613
- "Dynamics 365 (online)"
1714
- "Dynamics 365 Version 9.x"
Original file line numberDiff line numberDiff line change
@@ -1,19 +1 @@
1-
---
2-
title: AlphaNumericTypes | Microsoft Docs
3-
description:
4-
keywords:
5-
ms.subservice: pcf
6-
ms.author: nabuthuk
7-
manager: kvivek
8-
ms.date: 10/01/2019
9-
10-
ms.suite: ""
11-
ms.tgt_pltfrm: ""
12-
ms.topic: "article"
13-
applies_to:
14-
- "Dynamics 365 (online)"
15-
- "Dynamics 365 Version 9.x"
16-
ms.assetid: 65746161-1195-4e05-ad45-b88299998bb6
17-
---
18-
191
Only letters or numbers

0 commit comments

Comments
 (0)