Skip to content

Commit 088f704

Browse files
authored
Merge pull request MicrosoftDocs#2230 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/powerapps-docs (branch live)
2 parents 7d2397c + da144c0 commit 088f704

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ You add code components by including them in a solution and then import it into
1919
Code components consist of three elements:
2020

2121
- [Manifest](#manifest)
22-
- [Component implementation library](#component-implementation-library)
22+
- [Component implementation](#component-implementation)
2323
- [Resources](#resources)
2424

2525
## Manifest
@@ -34,9 +34,9 @@ Manifest is the metadata file that defines a component. It is an XML document th
3434

3535
When a user configures a code component, the data in the manifest file filters out the available components so that only valid components for the context are available for configuration. The properties defined in the manifest file for a component are rendered as configuration fields so that the user configuring the component can specify the values. These property values are then available to the component at runtime. More information: [Manifest schema reference](manifest-schema-reference/index.md)
3636

37-
## Component implementation library
37+
## Component implementation
3838

39-
Implementing the component library is one of the key steps when you are developing code components using Power Apps component framework. Developers can implement a component library using TypeScript. Each code component must have a library that includes the definition of a function, which returns an object that implements the methods described in the code component interface.
39+
Implementing the component is one of the key steps when you are developing code components using Power Apps component framework. Developers can implement a component using TypeScript. Each code component must have a main index.ts file that includes the definition of a function, which returns an object that implements the methods described in the code component interface. This file is autogenerated via CLI tooling with main stub methods.
4040

4141
The object implements the following methods:
4242

0 commit comments

Comments
 (0)