Skip to content

Commit 889deed

Browse files
committed
Merge branch 'main' into 2563665
2 parents dee2b32 + c3a4e9e commit 889deed

File tree

670 files changed

+2662
-1475
lines changed

Some content is hidden

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

670 files changed

+2662
-1475
lines changed

powerapps-docs/developer/component-framework/code-components-best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This section contains best practices and guidance relating to TypeScript and Jav
9898

9999
#### ES5 vs ES6
100100

101-
By default, code components target ES5 to support older browsers (for example, Internet Explorer 11). If you don't want to support these older browsers, you can change the target to ES6 inside your `pcfproj` folder's `tsconfig.json`. More information: [ES5 vs ES6](debugging-custom-controls.md#es5-vs-es6).
101+
By default, code components target ES5 to support older browsers. If you don't want to support these older browsers, you can change the target to ES6 inside your `pcfproj` folder's `tsconfig.json`. More information: [ES5 vs ES6](debugging-custom-controls.md#es5-vs-es6).
102102

103103
#### Module imports
104104

@@ -246,7 +246,7 @@ When making network calls, never use a synchronous blocking request since this c
246246

247247
#### Write code for multiple browsers
248248

249-
Model-driven apps, canvas apps, and portals all support multiple browsers. Be sure to only use techniques that are supported on all modern browsers, and test with a representative set of browsers for your intended audience. Support for Internet Explorer 11 is set for removal, however at this time, it still may be in use by some users.
249+
Model-driven apps, canvas apps, and portals all support multiple browsers. Be sure to only use techniques that are supported on all modern browsers, and test with a representative set of browsers for your intended audience.
250250

251251
- [Limits and configurations](/powerapps/maker/canvas-apps/limits-and-config)
252252
- [Supported web browsers](/power-platform/admin/supported-web-browsers-and-mobile-devices)

powerapps-docs/developer/component-framework/custom-controls-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: "Use the Power Apps component framework to create code components t
44
manager: kvivek
55
ms.date: 09/05/2019
66
ms.service: "powerapps"
7-
ms.custom: "intro-internal"
8-
ms.topic: "article"
7+
8+
ms.topic: overview
99
ms.assetid: 135481cd-4583-4e49-8f58-02f32a9b054a
1010
ms.subservice: pcf
1111
ms.author: "nabuthuk"

powerapps-docs/developer/component-framework/debugging-custom-controls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This article shows how to debug your code components using the test harness and
2424
- [Test code components with mock data](#test-code-components-with-mock-data)
2525
- [Common limitations when using the test harness](#common-limitations-when-using-the-test-harness)
2626
- [Using browser developer tools to debug your code component](#using-browser-developer-tools-to-debug-your-code-component)
27-
- [Bundling using web pack](#bundling-using-web-pack)
27+
- [Bundling using web pack](#bundling-using-webpack)
2828
- [Using developer tools with code components](#using-developer-tools-with-code-components)
2929
- [ES5 vs ES6](#es5-vs-es6)
3030
- [Debugging after deploying into Microsoft Dataverse](#debugging-after-deploying-into-microsoft-dataverse)
@@ -170,7 +170,7 @@ This section describes how to debug your code component inside the Microsoft Edg
170170
171171
### ES5 vs ES6
172172

173-
Currently, by default, code components are configured to transpile into ES5 JavaScript so that older browsers are supported (Internet Explorer 11). In the future, this will change once Internet Explorer 11 support for Power Apps is removed, enabling newer language features to be used in supported browsers. You can change the target to ES6 if you do not need to support older browsers by setting the `target` in your projects `tsconfig.json` to `ES6`:
173+
Currently, by default, code components are configured to transpile into ES5 JavaScript so that older browsers are supported. You can change the target to ES6 if you do not need to support older browsers by setting the `target` in your projects `tsconfig.json` to `ES6`:
174174

175175
```json
176176
{

powerapps-docs/developer/component-framework/overview.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ ms.service: "powerapps"
99
ms.custom:
1010
- "dyn365-a11y"
1111
- "dyn365-developer"
12-
- "intro-internal"
13-
ms.topic: article
12+
ms.topic: overview
1413
ms.assetid: 7923e36d-3640-49f7-9f2f-c97358a632db
1514
ms.subservice: pcf
1615
ms.author: nabuthuk

powerapps-docs/developer/component-framework/reference/dataset/addColumn.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Model-driven apps
2727

2828
## Parameters
2929

30-
| Parameter Name | Type | Required | description |
31-
| -------------- | -------- | -------- | ----------- |
32-
| name | `string` | Yes | Name of the column. |
33-
| columnAlias | `string` | No | Alias of the column. |
30+
| Parameter Name | Type | Required | Description |
31+
| -------------- | -------- | -------- | -------------------- |
32+
| name | `string` | Yes | Name of the column. |
33+
| columnAlias | `string` | No | Alias of the column. |
3434

3535
## Return value
3636

powerapps-docs/developer/component-framework/reference/dataset/getRelatedDataSet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Canvas apps
2828

2929
## Parameters
3030

31-
| Parameter Name | Type | Required | description |
31+
| Parameter Name | Type | Required | Description |
3232
| ---------------- | -------------------------- | -------- | ----------- |
3333
| columnName | `string` | Yes | |
3434
| updateCallback | `onDataSetUpdatedCallback` | Yes | |
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
21
Adds column to the column set.

powerapps-docs/developer/component-framework/reference/dataset/includes/getRelatedDataSet-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ applies_to:
1515
ms.assetid: e8c9f86c-55cd-45ad-92a7-985d61040b34
1616
---
1717

18-
Gets the related dataset for this column (only if this is related table column like lookup),
18+
Gets the related dataset for this column (only if this is related table column like lookup).

powerapps-docs/developer/component-framework/reference/dataset/retrieveRecordCommand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Model-driven apps
2727

2828
## Parameters
2929

30-
| Parameter Name | Type | Required | description |
30+
| Parameter Name | Type | Required | Description |
3131
| ---------------- | ---------- | -------- | ----------- |
3232
| recordIds | `string[]` | Yes | |
3333
| specificCommands | `string[]` | No | |

powerapps-docs/developer/component-framework/reference/entityrecord/getColumnInfo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Canvas apps
2727

2828
## Parameters
2929

30-
| Parameter Name | Type | Required | description |
31-
| -------------- | -------- | -------- | ----------- |
32-
| columnName | `string` | Yes | Name of the column.|
30+
| Parameter Name | Type | Required | Description |
31+
| -------------- | -------- | -------- | ------------------- |
32+
| columnName | `string` | Yes | Name of the column. |
3333

3434
## Return Value
3535

0 commit comments

Comments
 (0)