diff --git a/samples/utility_flow_get_spo_library_from_teams/README.md b/samples/utility_flow_get_spo_library_from_teams/README.md
new file mode 100644
index 00000000..812a3dc2
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/README.md
@@ -0,0 +1,211 @@
+# Get SharePoint library info from Teams context
+
+## Summary
+
+Integration between Power Apps and MS Teams allows creating context-aware applications, that access information stored for example in the SharePoint site connected to the team.
+
+### Embedding vs integrating
+
+[Embedding](https://learn.microsoft.com/en-us/power-apps/teams/embed-teams-app) Power Apps canvas apps is different from [creating](https://learn.microsoft.com/en-us/power-apps/teams/create-apps-overview) Canvas Apps in MS Teams.
+
+A Canvas App **created in Teams** can only be edited using Power Apps app in MS teams.
+The environment is **not** displayed in https://make.powerapps.com/, but can be found using https://make.powerautomate.com/. This is useful when you need to export solution.👈 Still, you won't be able to edit this app via browser.
+The app has access to a [Teams integration object](https://learn.microsoft.com/en-us/power-apps/teams/use-teams-integration-object), which provides context information, for example team id and group id, and channel id.
+
+
+
+**Embedded** Canvas App, on the other hand, is a standalone Canvas App, added to MS Teams.
+
+Embedding Canvas Apps in MS Teams, available since March 2020, gives an app access to the team's [context](https://learn.microsoft.com/en-us/power-apps/teams/embed-teams-app#use-context-from-teams) information using the `Param('parameterName')`.
+
+
+
+### The team Id parameter
+
+However, the id returned by `teamId` parameter is not a team's `guid`, but an `internalId`. The internal id cannot be used with either the Teams Power Automate actions, or the MS Graph API.
+Calling the `https://graph.microsoft.com/v1.0/teams?$select=id,internalId` returns `null` for the `internalId`. The only way of retrieving the `guid` is indeed retrieving all the teams the user has access to, and for each of them, retrieving the `id` and `internalId` values.
+The best explanation of these `internalIds` can be found in [stackoverflow](https://stackoverflow.com/questions/66491929/is-there-any-microsoft-api-to-get-the-group-id-from-channel-id).
+
+### Get Teams Channel Library Info
+
+The "Get Teams Channel Library Info" flow retrieves all the guids, ids, names and paths that might be useful in building Power Platform solutions.
+
+It may be used either directly from Canvas App added to MS Teams, or as a child flow.
+It accepts two parameters: `teamsId` and `channelId`. Depending on the app type, use the following parameters:
+
+| | Embeded Canvas App | Integrated Canvas App |
+| ----------- | -------------------- | ---------------------- |
+| `teamId` | `Param("teamId")` | `Teams.ThisTeam.Id` |
+| `channelId` | `Param("channelId")` | `Teams.ThisChannel.Id` |
+
+It returns the following information for a SharePoint location associated with the team and channel the Canvas App is added to:
+
+| output value | |
+| ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `folder_absolute_url` | absolute url of a SPO library folder associated with the current teams channel, e.g. `https://contoso.sharepoint.com/sites/Orgteam/Shared%20Documents/Channel%201` |
+| `folder_display_name` | display name of the folder; white spaces are not encoded, e.g. `Channel 1` |
+| `folder_drive_id` | `driveItem Id` for the folder, e.g. `01CHDY72JWUJ42GM77UZEYSDW32BJ53M5G`. Can be used in MS Graph API [Get driveItem](https://learn.microsoft.com/en-us/graph/api/driveitem-get) |
+| `folder_id` | SPO list item id, e.g. `1`. Can be used in SharePoint REST API, or MS Graph API [Get listItem](https://learn.microsoft.com/en-us/graph/api/listitem-get) |
+| `library_absolute_url` | absolute url of a SPO library, e.g. `https://contoso.sharepoint.com/sites/Orgteam/Shared%20Documents` |
+| `library_drive_id` | `driveId` of the library, e.g. `b!Xj1cTAreVEyxW0CJgd9XEi27yh4bsARHiduN8u--GKCpBOoIL9i_Qpp1dqNUrygL`. Can be used in MS Graph API [Get Drive](https://learn.microsoft.com/en-us/graph/api/drive-get) |
+| `library_id` | Library id in a `guid` format, e.g. `08ea04a9-d82f-42bf-9a75-76a354af280b`. Can be used in MS Graph API [Get metadata for a list](https://learn.microsoft.com/en-us/graph/api/list-get) |
+| `library_name` | display name of the library, e.g. `Shared Documents` |
+| `library_title` | internal name of the library, used in the URL, e.g. `Documents`|
+| `site_id` | SPO site id in a `guid` format, `4c5c3d5e-de0a-4c54-b15b-408981df5712`. Can be used in MS Graph API [Get a site resource](https://learn.microsoft.com/en-us/graph/api/site-get?view=graph-rest-1.0&tabs=http) |
+| `site_title` | display name of the sie, e.g. `Org team` |
+| `site_url` | absolute url of the SPO site, e.g. `https://contoso.sharepoint.com/sites/Orgteam` |
+| `team_id` | team's id in a `guid` format. Can be used in MS Graph API [Get team](https://learn.microsoft.com/en-us/graph/api/team-get), e.g. `6e440935-45b1-4bff-ac53-32ca9997e70a` |
+| `tenant_name` | the URL of the tenant's root site, e.g. `contoso.sharepoint.com`. Also used as a hostname when retrieving SPO site [using GUID](https://learn.microsoft.com/en-us/graph/api/site-get?view=graph-rest-1.0&tabs=http#example-1-get-a-site-using-the-site-id). |
+| `web_id` | id of the SPO web in a `guid` format, e.g. `1ecabb2d-b01b-4704-89db-8df2efbe18a0`. Used when retrieving SPO site [using GUID](https://learn.microsoft.com/en-us/graph/api/site-get?view=graph-rest-1.0&tabs=http#example-1-get-a-site-using-the-site-id). |
+
+### Solution components
+
+The solution consists of:
+
+- **Get Teams Channel Library Info** Power Automate flow
+- **Get Teams Channel Library Info - test** Canvas App. Add this app to a MS Teams channel to test the workflow
+- **HTTP With Microsoft Entra ID** connection reference.
+
+## Applies to
+
+
+
+
+
+
+
+
+
+
+
+
+## Compatibility
+
+
+
+
+The licensing document states that the M365 licenses provide _"limited usage rights"_ to Power Platform, allowing users to extend the M365 services in order to support business processes. But finding the team's guid requires using **Premium connector** because the `Send a Microsoft Graph HTTP request` action does not support `https://graph.microsoft.com/v1.0/teams?$select= id,internalId` query.
+
+## Contributors
+
+* [Kinga Kazala](https://github.com/kkazala/)
+
+## Version history
+
+Version|Date|Comments
+-------|----|--------
+1.0|April 22, 2025|Initial release
+
+## Prerequisites
+
+This Power Automate Flow is using **HTTP with Microsoft Entra ID** connector, which requires **Premium license**.
+
+In order to successfully execute the flow, you need to grant the **PowerPlatform-webcontentsv2-Connector** service principal the following API permissions to `Microsoft Graph` resource:
+- `Channel.ReadBasic.All`
+- `Team.ReadBasic.All`
+- `Files.Read.All`
+
+Follow the [Authorize the connector to act on behalf of a signed-in user](https://learn.microsoft.com/en-us/connectors/webcontentsv2/#authorize-the-connector-to-act-on-behalf-of-a-signed-in-user) procedure to grant the permissions.
+
+## Minimal path to awesome
+
+### Using the solution zip
+
+* [Download](./solution/solution.zip) the `.zip` from the `solution` folder
+* Within **Power Apps Studio**, import the solution `.zip` file using **Solutions** > **Import Solution** and select the `.zip` file you just packed.
+* During the import process, update the **connection references** and **environment variables**.
+* If required, configure the flow to be executed as a child flow. Navigate the solution, select the **Get Teams Channel Library Info** flow and on the details page, select **Edit** in the **Run only users** section.
+
+ 
+
+* Click on **Edit** link and change the connection in the **Connections Used** section
+
+ 
+
+* Add a [service principal](https://learn.microsoft.com/en-us/power-automate/service-principal-support) as an additional owner to ensure business continuity.
+
+### Using the source code
+
+You can also use the [Power Apps CLI](https://docs.microsoft.com/powerapps/developer/data-platform/powerapps-cli) to pack the source code by following these steps:
+
+* Clone the repository to a local drive
+* Pack the source files back into a solution `.zip` file:
+
+ ```bash
+ pac solution pack --zipfile pathtodestinationfile --folder pathtosourcefolder --processCanvasApps
+ ```
+
+ Making sure to replace `pathtosourcefolder` to point to the path to this sample's `sourcecode` folder, and `pathtodestinationfile` to point to the path of this solution's `.zip` file (located under the `solution` folder)
+* Within **Power Apps Studio**, import the solution `.zip` file using **Solutions** > **Import Solution** and select the `.zip` file you just packed.
+
+## Features
+
+Depending on which Power Automate action you are using, you will need to know the target location's `URL`, `guid`, `driveId` or list `title`. I described this topic in my blog post: [Data Source Environment Variables in Power Automate actions](https://dev.to/kkazala/data-source-environment-variables-in-power-automate-actions-3mo5).
+
+Retrieving these values based on the team and channel `internalId` requires the following steps:
+
+- get `guid`s of all teams the user has access to and for each of them, fetch the `internalId` property. If the `internalId` is equal to `teamId` provided by the MS Teams context, this is the team you are looking for. the `guid` will be used to access team information with MS Graph.
+_Unfortunately, the `internalId` is `null` when retrieving all teams with `https://graph.microsoft.com/v1.0/teams?$select=id,internalId`_
+- get SharePoint folder information for the Teams channel, using the `guid` retrieved in the previous step, and the `channelId` from team's context. The `https://graph.microsoft.com/v1.0/teams/{teamGuid}/channels/{channelId}/filesFolder?$select=id,name,parentReference` query returns `id`, `name` and `parentReference` properties, which are used by `drives` API in the next step.
+
+ 
+
+- get SharePoint folder information by calling `https://graph.microsoft.com/v1.0/drives/{driveId}/items/{id}/listItem?$select=id,webUrl,parentReference`. This query returns `folder id` (integer), `absolute URL` and a reference to a SharePoint site used by the channel. The `parentReference/siteId` returns `tenantName,SiteId,WebId`.
+
+ 
+
+- get library information using `https://graph.microsoft.com/v1.0/drives/{driveId}/list?$select=id,webUrl,name,displayName,parentReference`. This query returns library information: `display name`, `internal name` which is used as part of the url, `library guid` and `absolute URL`
+
+ 
+
+- get site information using `https://graph.microsoft.com/v1.0/sites/{siteId}?$select=name,weburl,displayName`
+
+ 
+
+### Results
+
+The output may be used in a parent Power Automate flow, to access library and folder used to store channel's documents.
+
+To test it, add the **Get Teams Channel Library Info - test** Power App to a MS Teams channel.
+
+The top section displays Teams context parameters. The **Fetch folder information** button triggers the **Get Teams Channel Library Info** flow, with results displayed below:
+
+
+
+## Help
+
+
+
+> Note: don't worry about this section, we'll update the links.
+
+We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.
+
+If you encounter any issues while using this sample, you can [create a new issue](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=bug-report.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+For questions regarding this sample, [create a new question](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=question.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/powerapps-samples/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected&template=suggestion.yml&sample=YOUR-SOLUTION-NAME&authors=@YOURGITHUBUSERNAME&title=YOUR-SOLUTION-NAME%20-%20).
+
+## Disclaimer
+
+**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
+
+
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/info1.png b/samples/utility_flow_get_spo_library_from_teams/assets/info1.png
new file mode 100644
index 00000000..cb5b9ad6
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/info1.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/info2.png b/samples/utility_flow_get_spo_library_from_teams/assets/info2.png
new file mode 100644
index 00000000..2bde76e6
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/info2.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/results.png b/samples/utility_flow_get_spo_library_from_teams/assets/results.png
new file mode 100644
index 00000000..ff2c09b7
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/results.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyConnection.png b/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyConnection.png
new file mode 100644
index 00000000..33ca6f30
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyConnection.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyUser.png b/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyUser.png
new file mode 100644
index 00000000..24faf3da
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/runOnlyUser.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/step2.png b/samples/utility_flow_get_spo_library_from_teams/assets/step2.png
new file mode 100644
index 00000000..b52f5890
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/step2.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/step3.png b/samples/utility_flow_get_spo_library_from_teams/assets/step3.png
new file mode 100644
index 00000000..feaa526b
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/step3.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/step4.png b/samples/utility_flow_get_spo_library_from_teams/assets/step4.png
new file mode 100644
index 00000000..6c1b13aa
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/step4.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/assets/step5.png b/samples/utility_flow_get_spo_library_from_teams/assets/step5.png
new file mode 100644
index 00000000..fba57337
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/assets/step5.png differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/.gitignore b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/.gitignore
new file mode 100644
index 00000000..ba59257a
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/.gitignore
@@ -0,0 +1,8 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# msbuild output directories
+/bin
+/obj
+
+# MSBuild Binary and Structured Log
+*.binlog
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/UtilsGetTeamsChannelLibraryInfo.cdsproj b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/UtilsGetTeamsChannelLibraryInfo.cdsproj
new file mode 100644
index 00000000..43c7031b
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/UtilsGetTeamsChannelLibraryInfo.cdsproj
@@ -0,0 +1,54 @@
+
+
+
+ $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\PowerApps
+
+
+
+
+
+
+ e843ed77-a512-417c-a92c-39f2fae07cf0
+ v4.6.2
+
+ net462
+ PackageReference
+ src
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
+
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8.meta.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8.meta.xml
new file mode 100644
index 00000000..240edf4a
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8.meta.xml
@@ -0,0 +1,34 @@
+
+
+ kk_readteamcontext_43ee8
+ 2025-01-05T12:53:18Z
+ Ready
+ 3.24122.12.0
+ 3.24122.12.0
+ {"primaryDeviceWidth":"1366","primaryDeviceHeight":"768","supportsPortrait":"true","supportsLandscape":"true","primaryFormFactor":"Tablet","showStatusBar":"false","publisherVersion":"3.24122.12","minimumRequiredApiVersion":"2.2.0","hasComponent":"false","hasUnlockedComponent":"false","isUnifiedRootApp":"false","sienaVersion":"20250105T115408Z-3.24122.12.0"}
+ 0
+
+ RGBA(0,176,240,1)
+ Get Teams Channel Library Info - test
+ Test the "Get Teams Channel Library Info" flow by providing teams context and displaying the result
+
+
+ []
+ {"013f7db1-f147-4631-97bb-10b94eb689d4":{"id":"/providers/microsoft.powerapps/apis/shared_logicflows","displayName":"Logic flows","iconUri":"https://connectoricons-prod.azureedge.net/releases/v1.0.1725/1.0.1725.4004/logicflows/icon.png","dataSources":["GetTeamsChannelLibraryInfo"],"dependencies":["d0a6f5cc-8043-49e5-8b46-0434ab65bafa"],"dependents":[],"parameterHints":{"workflowName":{"value":"436b8fa8-1aff-4cf9-84c4-90ad1bc519c6"},"workflowEntityId":{"value":"2b17bb29-f7c5-ef11-b8e8-002248db5453"},"workflowDisplayName":{"value":"Get Teams Channel Library Info"},"d0a6f5cc-8043-49e5-8b46-0434ab65bafa":{"value":"shared_webcontentsv2_1"}},"parameterHintsV2":{"workflowName":{"value":"436b8fa8-1aff-4cf9-84c4-90ad1bc519c6"},"workflowEntityId":{"value":"2b17bb29-f7c5-ef11-b8e8-002248db5453"},"workflowDisplayName":{"value":"Get Teams Channel Library Info"},"shared_webcontentsv2_1":{"value":"d0a6f5cc-8043-49e5-8b46-0434ab65bafa"}},"isOnPremiseConnection":false,"bypassConsent":false,"dataSets":{},"apiTier":"Standard","actions":["Run"]},"d0a6f5cc-8043-49e5-8b46-0434ab65bafa":{"id":"/providers/microsoft.powerapps/apis/shared_webcontentsv2","displayName":"HTTP With Microsoft Entra ID","iconUri":"https://connectoricons-prod.azureedge.net/u/nl/partialbuilds/webcontentsv2-specialtrain/1.0.1717.3936/webcontentsv2/icon.png","dataSources":[],"dependencies":[],"dependents":["013f7db1-f147-4631-97bb-10b94eb689d4"],"parameterHints":{},"parameterHintsV2":{},"isOnPremiseConnection":false,"bypassConsent":false,"dataSets":{},"apiTier":"Premium"}}
+ {}
+ []
+ []
+ 0
+ 0
+ 0
+ 0
+
+ 1.0
+ {"cdsdependencies":[{"dependencyid":"2b17bb29-f7c5-ef11-b8e8-002248db5453","componenttype":29,"componenttypeplatformname":"Workflow"}]}
+ 1
+ /CanvasApps/kk_readteamcontext_43ee8_BackgroundImageUri
+ /CanvasApps/kk_readteamcontext_43ee8_DocumentUri.msapp
+
+ /CanvasApps/kk_readteamcontext_43ee8_AdditionalUris0_identity.json
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_AdditionalUris0_identity.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_AdditionalUris0_identity.json
new file mode 100644
index 00000000..d8cd498f
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_AdditionalUris0_identity.json
@@ -0,0 +1 @@
+{"__Version":"0.1","App":"42721a2a-4c63-466d-8299-9b0074b29d11","Test_7F478737223C4B69":"fe4d4fe2-a91b-44e2-b7e9-681af24a5e0c","Host":"3d78f64f-d7cb-4ae5-8477-274852b42597","Screen1":"52977331-bae4-4354-9719-f63a5cc3e22c","ScreenContainer2":"84737399-62bd-4f56-bd3a-dc120c8bc36f","LeftContainer1":"93d50826-8360-4ee7-9c4e-6d8455a261ae","Table2":"c1ca2ffb-1e15-4d82-8f16-6dc0b60b6c60","value1":"52bcbe8a-9998-4b74-9e37-f46cd6e942cb","name1":"31fbaf6b-7db6-43a7-b2d3-ef8545936af1","ButtonCanvas1":"0f1dab4c-15e8-42e3-be49-205bccd3618b","RightContainer1":"af6718a3-e1d6-421f-84ea-7a4bf7e95991","TextCanvas1":"0b7a70d9-767e-4149-9575-0080243c649c","Spinner1":"ec592ecd-7163-40ab-897e-54172894c19f"}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_BackgroundImageUri b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_BackgroundImageUri
new file mode 100644
index 00000000..c67f0065
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_BackgroundImageUri differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_DocumentUri.msapp b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_DocumentUri.msapp
new file mode 100644
index 00000000..ef3bdf0a
Binary files /dev/null and b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/kk_readteamcontext_43ee8_DocumentUri.msapp differ
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Assets/SampleImage.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Assets/SampleImage.json
new file mode 100644
index 00000000..ce6ca28a
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Assets/SampleImage.json
@@ -0,0 +1,12 @@
+{
+ "Content": "Image",
+ "FileName": "/ctrllib/image/images/SampleImage.svg",
+ "IsSampleData": true,
+ "IsWritable": false,
+ "Name": "SampleImage",
+ "Path": "/ctrllib/image/images/SampleImage.svg",
+ "ResourceKind": "Uri",
+ "RootPath": "ms-appx:///ctrllib/image/images/SampleImage.svg",
+ "Schema": "i",
+ "Type": "ResourceInfo"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/CanvasManifest.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/CanvasManifest.json
new file mode 100644
index 00000000..0f3727a7
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/CanvasManifest.json
@@ -0,0 +1,147 @@
+{
+ "FormatVersion": "0.24",
+ "Header": {
+ "AnalysisOptions": {
+ "DataflowAnalysisEnabled": true,
+ "DataflowAnalysisFlagStateToggledByUser": false
+ },
+ "DocVersion": "1.343",
+ "MinVersionToLoad": "1.331",
+ "MSAppStructureVersion": "2.0"
+ },
+ "Properties": {
+ "AppCopilotSchemaName": "",
+ "AppCreationSource": "AppFromScratch",
+ "AppDescription": "Test the \"Get Teams Channel Library Info\" flow by providing teams context and displaying the result",
+ "AppPreviewFlagsMap": {
+ "aibuilderserviceenrollment": false,
+ "allowmultiplescreensincanvaspages": false,
+ "appinsightserrortracing": false,
+ "appinstrumentationcorrelationtracing": false,
+ "autocreateenvironmentvariables": false,
+ "behaviorpropertyui": true,
+ "blockmovingcontrol": true,
+ "cdsdataformatting": false,
+ "classiccontrols": false,
+ "commentgeneratedformulasv2": true,
+ "consistentreturnschemafortabularfunctions": true,
+ "copyandmerge": false,
+ "dataflowanalysisenabled": true,
+ "datatablev2control": true,
+ "dataverseactionsenabled": true,
+ "delaycontrolrendering": true,
+ "delayloadscreens": true,
+ "disablebehaviorreturntypecheck": false,
+ "disablecdsfileandlargeimage": false,
+ "disabledeferloadingunusedscreenswithstartscreen": false,
+ "disableloadcomponentdefinitionsondemand": false,
+ "disableruntimepolicies": false,
+ "dynamicschema": false,
+ "enableappembeddingux": false,
+ "enablecanvasappruntimecopilot": true,
+ "enablecomponentnamemaps": false,
+ "enablecomponentscopeoldbehavior": false,
+ "enablecopilotanswercontrol": true,
+ "enablecopilotcontrol": true,
+ "enablecreateaformula": true,
+ "enabledataverseoffline": false,
+ "enableeditcacherefreshfrequency": false,
+ "enableeditinmcs": true,
+ "enableexcelonlinebusinessv2connector": true,
+ "enableideaspanel": true,
+ "enablelegacybarcodescanner": false,
+ "enablelegacydatatable": false,
+ "enableonstart": true,
+ "enableonstartnavigate": false,
+ "enablepcfmoderndatasets": true,
+ "enablerowscopeonetonexpand": false,
+ "enablerpawarecomponentdependency": true,
+ "enablesaveloadcleardataonweb": true,
+ "enableupdateifdelegation": true,
+ "errorhandling": true,
+ "expandedsavedatasupport": true,
+ "exportimportcomponents2": true,
+ "externalmessage": false,
+ "fluentv9controls": false,
+ "fluentv9controlspreview": true,
+ "formuladataprefetch": true,
+ "formularepair": false,
+ "generatedebugpublishedapp": false,
+ "herocontrols": false,
+ "improvedtabstopbehavior": false,
+ "isemptyrequirestableargument": true,
+ "keeprecentscreensloaded": false,
+ "legacyformulabar": false,
+ "longlivingcache": false,
+ "mobilenativerendering": false,
+ "nativecdsexperimental": true,
+ "offlineprofilegenerationemitscolumns": false,
+ "onegrid": false,
+ "optimizedforteamsmeeting": false,
+ "packagemodernruntime": false,
+ "parallelcodegen": false,
+ "pdffunction": false,
+ "powerfxdecimal": false,
+ "powerfxv1": false,
+ "preferpayamlv2inux": false,
+ "primaryoutputpropertycoerciondeprecated": true,
+ "proactivecontrolrename": false,
+ "projectionmapping": true,
+ "reliableconcurrent": true,
+ "reservedkeywords": false,
+ "rtlinstudiopreview": false,
+ "rtlsupport": false,
+ "sharepointselectsenabled": false,
+ "showclassicthemes": false,
+ "smartemaildatacard": false,
+ "supportcolumnnamesasidentifiers": true,
+ "tabledoesntwraprecords": true,
+ "usedisplaynamemetadata": true,
+ "useenforcesavedatalimits": true,
+ "useexperimentalcdsconnector": true,
+ "useexperimentalsqlconnector": true,
+ "useguiddatatypes": true,
+ "usenonblockingonstartrule": true,
+ "userdefinedfunctions": false,
+ "userdefinedtypes": false,
+ "webbarcodescanner": false,
+ "zeroalltabindexes": true
+ },
+ "Author": "",
+ "BindingErrorCount": 0,
+ "ContainsThirdPartyPcfControls": false,
+ "DefaultConnectedDataSourceMaxGetRowsCount": 500,
+ "DocumentAppType": "DesktopOrTablet",
+ "DocumentLayoutHeight": 768,
+ "DocumentLayoutLockOrientation": false,
+ "DocumentLayoutMaintainAspectRatio": true,
+ "DocumentLayoutOrientation": "landscape",
+ "DocumentLayoutScaleToFit": true,
+ "DocumentLayoutWidth": 1366,
+ "DocumentType": "App",
+ "EnableInstrumentation": false,
+ "FileID": "421dbb0d-8242-4e09-b7f6-fa74f18c95b0",
+ "Id": "421dbb0d-8242-4e09-b7f6-fa74f18c95b0",
+ "InstrumentationKey": "",
+ "LocalDatabaseReferences": "",
+ "ManualOfflineProfileId": "",
+ "Name": "Get Teams Channel Library Info - test",
+ "OriginatingVersion": "1.343",
+ "ParserErrorCount": 0,
+ "ShowStatusBar": false
+ },
+ "PublishInfo": {
+ "AppName": "Get Teams Channel Library Info - test",
+ "BackgroundColor": "RGBA(0,176,240,1)",
+ "IconColor": "RGBA(255,255,255,1)",
+ "IconName": "Edit",
+ "LogoFileName": "",
+ "PublishDataLocally": false,
+ "PublishResourcesLocally": false,
+ "PublishTarget": "player",
+ "UserLocale": "en-US"
+ },
+ "ScreenOrder": [
+ "Screen1"
+ ]
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ComponentReferences.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ComponentReferences.json
new file mode 100644
index 00000000..0637a088
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ComponentReferences.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Connections/Connections.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Connections/Connections.json
new file mode 100644
index 00000000..c8ad4e12
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Connections/Connections.json
@@ -0,0 +1,68 @@
+{
+ "013f7db1-f147-4631-97bb-10b94eb689d4": {
+ "appActions": [
+ "Run"
+ ],
+ "connectionRef": {
+ "apiTier": "Standard",
+ "displayName": "Logic flows",
+ "iconUri": "https://connectoricons-prod.azureedge.net/releases/v1.0.1725/1.0.1725.4004/logicflows/icon.png",
+ "id": "/providers/microsoft.powerapps/apis/shared_logicflows",
+ "parameterHints": {
+ "d0a6f5cc-8043-49e5-8b46-0434ab65bafa": {
+ "value": "shared_webcontentsv2_1"
+ },
+ "workflowDisplayName": {
+ "value": "Get Teams Channel Library Info"
+ },
+ "workflowEntityId": {
+ "value": "2b17bb29-f7c5-ef11-b8e8-002248db5453"
+ },
+ "workflowName": {
+ "value": "dd50bde3-2fa4-0a03-1452-37d269b86d6d"
+ }
+ },
+ "parameterHintsV2": {
+ "shared_webcontentsv2_1": {
+ "value": "d0a6f5cc-8043-49e5-8b46-0434ab65bafa"
+ },
+ "workflowDisplayName": {
+ "value": "Get Teams Channel Library Info"
+ },
+ "workflowEntityId": {
+ "value": "2b17bb29-f7c5-ef11-b8e8-002248db5453"
+ },
+ "workflowName": {
+ "value": "dd50bde3-2fa4-0a03-1452-37d269b86d6d"
+ }
+ }
+ },
+ "datasets": {},
+ "dataSources": [
+ "GetTeamsChannelLibraryInfo"
+ ],
+ "dependencies": {
+ "shared_webcontentsv2_1": "d0a6f5cc-8043-49e5-8b46-0434ab65bafa"
+ },
+ "dependents": [],
+ "id": "013f7db1-f147-4631-97bb-10b94eb689d4"
+ },
+ "d0a6f5cc-8043-49e5-8b46-0434ab65bafa": {
+ "appActions": [],
+ "connectionRef": {
+ "apiTier": "Premium",
+ "displayName": "HTTP With Microsoft Entra ID",
+ "iconUri": "https://connectoricons-prod.azureedge.net/u/nl/partialbuilds/webcontentsv2-specialtrain/1.0.1717.3936/webcontentsv2/icon.png",
+ "id": "/providers/microsoft.powerapps/apis/shared_webcontentsv2",
+ "parameterHints": {},
+ "parameterHintsV2": {}
+ },
+ "datasets": {},
+ "dataSources": [],
+ "dependencies": {},
+ "dependents": [
+ "013f7db1-f147-4631-97bb-10b94eb689d4"
+ ],
+ "id": "d0a6f5cc-8043-49e5-8b46-0434ab65bafa"
+ }
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ControlTemplates.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ControlTemplates.json
new file mode 100644
index 00000000..a6fc13a3
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/ControlTemplates.json
@@ -0,0 +1,133 @@
+{
+ "appinfo": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/appinfo",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "appinfo",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "Button": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_ButtonCanvas",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": true,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_ButtonCanvas",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Button",
+ "Version": "0.0.43"
+ },
+ "groupContainer": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/groupContainer",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "groupContainer",
+ "OverridableProperties": {},
+ "Version": "1.3.0"
+ },
+ "Host": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "HostType": "Default",
+ "Id": "http://microsoft.com/appmagic/hostcontrol",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "hostControl",
+ "OverridableProperties": {},
+ "Version": "1.6.0"
+ },
+ "PowerAppsOneGridTemplate_dataField": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/PowerAppsOneGridTemplate_dataField",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": true,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerAppsOneGridTemplate_dataField",
+ "OverridableProperties": {},
+ "Version": "1.5.0"
+ },
+ "screen": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/screen",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": false,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "screen",
+ "OverridableProperties": {},
+ "Version": "1.0"
+ },
+ "Spinner": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_Spinner",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": true,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_Spinner",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Spinner",
+ "Version": "1.4.3"
+ },
+ "Table": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerAppsOneGrid",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": true,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerAppsOneGrid",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Table",
+ "Version": "1.0.242"
+ },
+ "Text": {
+ "CustomGroupControlTemplateName": "",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_TextCanvas",
+ "IsComponentTemplate": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPcfControl": true,
+ "IsPremiumPcfControl": false,
+ "IsWidgetTemplate": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_TextCanvas",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Text",
+ "Version": "0.0.47"
+ }
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/CustomGallerySample.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/CustomGallerySample.json
new file mode 100644
index 00000000..03563808
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/CustomGallerySample.json
@@ -0,0 +1,17 @@
+[
+ {
+ "Data": "[{\"SampleHeading\":\"Lorem ipsum 1\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"},{\"SampleHeading\":\"Lorem ipsum 2\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Suspendisse enim metus, tincidunt quis lobortis a, fringilla dignissim neque.\"},{\"SampleHeading\":\"Lorem ipsum 3\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Ut pharetra a dolor ac vehicula.\"},{\"SampleHeading\":\"Lorem ipsum 4\",\"SampleImage\":\"/ctrllib/image/images/SampleImage.svg\",\"SampleText\":\"Vestibulum dui felis, fringilla nec mi sed, tristique dictum nisi.\"}]",
+ "IsSampleData": true,
+ "IsWritable": false,
+ "Name": "CustomGallerySample",
+ "OrderedColumnNames": [
+ "SampleImage",
+ "SampleHeading",
+ "SampleText"
+ ],
+ "OriginalName": "CustomGallerySample",
+ "OriginalSchema": "*[SampleHeading:s, SampleImage:i, SampleText:s]",
+ "Schema": "*[SampleHeading:s, SampleImage:i, SampleText:s]",
+ "Type": "StaticDataSourceInfo"
+ }
+]
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/GetTeamsChannelLibraryInfo.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/GetTeamsChannelLibraryInfo.json
new file mode 100644
index 00000000..33109136
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/DataSources/GetTeamsChannelLibraryInfo.json
@@ -0,0 +1,10 @@
+[
+ {
+ "ApiId": "/providers/microsoft.powerapps/apis/shared_logicflows",
+ "FlowNameId": "5b6eea29-d2fd-4bdc-b4c9-653e4431a5cc",
+ "Name": "GetTeamsChannelLibraryInfo",
+ "ServiceKind": "ConnectedWadl",
+ "Type": "ServiceInfo",
+ "WorkflowEntityId": "2b17bb29-f7c5-ef11-b8e8-002248db5453"
+ }
+]
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/AppCheckerResult.sarif b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/AppCheckerResult.sarif
new file mode 100644
index 00000000..e4aa4fb2
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/AppCheckerResult.sarif
@@ -0,0 +1,178 @@
+{
+ "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.4.json",
+ "runs": [
+ {
+ "columnKind": "utf16CodeUnits",
+ "invocations": [
+ {
+ "executionSuccessful": true
+ }
+ ],
+ "results": [
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "module": "Screen1",
+ "type": "Screen1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Low"
+ },
+ "ruleId": "acc-ReadableScreenNameNeeded",
+ "ruleIndex": 0
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.LeftContainer1.Table2.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.LeftContainer1.Table2.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.ScreenContainer2.LeftContainer1.Table2"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.ButtonCanvas1.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.ButtonCanvas1.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.ScreenContainer2.ButtonCanvas1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ },
+ {
+ "locations": [
+ {
+ "logicalLocations": [
+ {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.RightContainer1.Spinner1.AccessibleLabel"
+ }
+ ],
+ "physicalLocation": {
+ "address": {
+ "fullyQualifiedName": "Screen1.ScreenContainer2.RightContainer1.Spinner1.AccessibleLabel",
+ "relativeAddress": 0
+ }
+ },
+ "properties": {
+ "member": "AccessibleLabel",
+ "module": "Screen1",
+ "type": "Screen1.ScreenContainer2.RightContainer1.Spinner1"
+ }
+ }
+ ],
+ "message": {
+ "id": "issue"
+ },
+ "properties": {
+ "level": "Medium"
+ },
+ "ruleId": "acc-AccessibleLabelNeeded",
+ "ruleIndex": 1
+ }
+ ],
+ "tool": {
+ "driver": {
+ "fullName": "PowerApps app checker",
+ "name": "PowerApps app checker",
+ "rules": [
+ {
+ "id": "acc-ReadableScreenNameNeeded",
+ "messageStrings": {
+ "issue": {
+ "text": "Revise screen name"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Give the screen a title that describes what's on the screen or what it's used for."
+ ],
+ "level": "Low",
+ "primaryCategory": "accessibility",
+ "whyFix": "People who are blind, have low vision, or a reading disability rely on screen titles to navigate using the screen reader. "
+ }
+ },
+ {
+ "id": "acc-AccessibleLabelNeeded",
+ "messageStrings": {
+ "issue": {
+ "text": "Missing accessible label"
+ }
+ },
+ "properties": {
+ "componentType": "app",
+ "howToFix": [
+ "Edit the accessible label property to describe the item."
+ ],
+ "level": "Medium",
+ "primaryCategory": "accessibility",
+ "whyFix": "If there's no accessible text, people who can’t see the screen won't understand what’s in images and controls."
+ }
+ }
+ ],
+ "version": "1.343"
+ }
+ }
+ }
+ ],
+ "version": "2.1.0"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/Entropy.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/Entropy.json
new file mode 100644
index 00000000..d34986ea
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/Entropy.json
@@ -0,0 +1,153 @@
+{
+ "ComponentIndexes": {},
+ "ControlUniqueGuids": {},
+ "ControlUniqueIds": {
+ "App": 1,
+ "ButtonCanvas1": 10,
+ "Host": 3,
+ "LeftContainer1": 6,
+ "name1": 9,
+ "RightContainer1": 11,
+ "Screen1": 4,
+ "ScreenContainer2": 5,
+ "Spinner1": 13,
+ "Table2": 7,
+ "TextCanvas1": 12,
+ "value1": 8
+ },
+ "FunctionParamsInvariantScripts": {},
+ "FunctionParamsInvariantScriptsOnInstances": {},
+ "HeaderLastSavedDateTimeUTC": "01/05/2025 12:53:15",
+ "IsLegacyComponentAllowGlobalScopeCase": false,
+ "LocalConnectionIDReferences": {
+ "013f7db1-f147-4631-97bb-10b94eb689d4": "\"/providers/microsoft.powerapps/apis/shared_logicflows/connections/dd50bde32fa40a03145237d269b86d6d-3c316333c940f623\"",
+ "d0a6f5cc-8043-49e5-8b46-0434ab65bafa": "\"/providers/microsoft.powerapps/apis/shared_webcontentsv2/connections/shared-webcontentsv2-d190f146-aba1-4eb1-8f0e-28ef7bc24392\""
+ },
+ "LocalDatabaseReferencesAsEmpty": true,
+ "LocalResourceFileNames": {},
+ "LocalResourceRootPaths": {},
+ "OrderComponentMetadata": {},
+ "OrderComponentTemplate": {},
+ "OrderDataSource": {
+ "CustomGallerySample": 1,
+ "GetTeamsChannelLibraryInfo": 0
+ },
+ "OrderGroupControls": {},
+ "OrderPcfTemplate": {
+ "PowerApps_CoreControls_ButtonCanvas": 1,
+ "PowerApps_CoreControls_Spinner": 3,
+ "PowerApps_CoreControls_TextCanvas": 2,
+ "PowerAppsOneGrid": 0
+ },
+ "OrderTemplate": {},
+ "OrderXMLTemplate": {
+ "groupContainer": 0,
+ "PowerAppsOneGridTemplate_dataField": 1
+ },
+ "OverridablePropertiesEntry": {
+ "App": {},
+ "ButtonCanvas1": {},
+ "Host": {},
+ "LeftContainer1": {},
+ "name1": {},
+ "RightContainer1": {},
+ "Screen1": {},
+ "ScreenContainer2": {},
+ "Spinner1": {},
+ "Table2": {},
+ "TextCanvas1": {},
+ "value1": {}
+ },
+ "PCFDynamicSchemaForIRRetrievalEntry": {},
+ "PCFTemplateEntry": {
+ "ButtonCanvas1": {
+ "CustomGroupControlTemplateName": "",
+ "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"ButtonCanvas\",\"DisplayNameKey\":\"ButtonCanvas\",\"Resources\":\"[{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/prop-types.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":1,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/react-fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":2,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":3,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela-dom.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":4,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/common/js/container.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":6,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":7,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestTemplate\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"ConstructorName\\\\\\\":\\\\\\\"PowerApps.CoreControls.ButtonCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.ButtonCanvas\\\\\\\",\\\\\\\"IsVirtual\\\\\\\":true,\\\\\\\"Properties\\\\\\\":{\\\\\\\"Resources\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/prop-types.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":1,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/react-fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":2,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":3,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela-dom.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":4,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/common/js/container.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":5,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":6,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":7,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null}],\\\\\\\"GroupDefinitions\\\\\\\":null,\\\\\\\"DataSetDefinitions\\\\\\\":{},\\\\\\\"Properties\\\\\\\":{\\\\\\\"AcceptsFocus\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"true\\\\\\\"},\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Appearance\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Primary\\\\\\\"},\\\\\\\"Text\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Button\\\\\\\"},\\\\\\\"Icon\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Layout\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Icon before\\\\\\\"},\\\\\\\"IconRotation\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"IconStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Outline\\\\\\\"},\\\\\\\"BasePaletteColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Font\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontSize\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontWeight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontItalic\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontUnderline\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontStrikethrough\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"BorderStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderThickness\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadius\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusTopLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusTopRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusBottomRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusBottomLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingTop\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingBottom\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Align\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"VerticalAlign\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":[{\\\\\\\"IsRequired\\\\\\\":true,\\\\\\\"Name\\\\\\\":\\\\\\\"ExplicitCommonEvents\\\\\\\"}]},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":{\\\\\\\"OnSelect\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"OnSelect\\\\\\\"}},\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"AcceptsFocus\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Icon\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FluentIcon\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Layout\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"IconRotation\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"IconStyle\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BasePaletteColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"ColorPalette\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontSize\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontItalic\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Italics\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontUnderline\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontStrikethrough\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderStyle\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"BorderStyle\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderThickness\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Color\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadius\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusTopLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusTopRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusBottomRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusBottomLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingTop\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingBottom\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"TabIndex\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Tooltip\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PCFTeamsTheme\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"X\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Y\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Width\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Height\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Visible\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true}]}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":9,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"PowerAppsControlInfo\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"TemplateVersion\\\\\\\":1,\\\\\\\"Version\\\\\\\":\\\\\\\"0.0.43\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/ButtonCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":12,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/libs/PowerAppsFluentIcons.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"ButtonCanvas\\\\\\\":\\\\\\\"Button\\\\\\\",\\\\\\\"ButtonCanvas_Desc\\\\\\\":\\\\\\\"Let users to click or tap to perform an action.\\\\\\\",\\\\\\\"ButtonCanvas_Appearance\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Desc\\\\\\\":\\\\\\\"Display as one of button types.\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Secondary\\\\\\\":\\\\\\\"Secondary\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Primary\\\\\\\":\\\\\\\"Primary\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Outline\\\\\\\":\\\\\\\"Outline\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Subtle\\\\\\\":\\\\\\\"Subtle\\\\\\\",\\\\\\\"ButtonCanvas_Appearance_Transparent\\\\\\\":\\\\\\\"Transparent\\\\\\\",\\\\\\\"ButtonCanvas_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"ButtonCanvas_Text_Desc\\\\\\\":\\\\\\\"Text to display in the button.\\\\\\\",\\\\\\\"ButtonCanvas_Icon\\\\\\\":\\\\\\\"Icon\\\\\\\",\\\\\\\"ButtonCanvas_Icon_Desc\\\\\\\":\\\\\\\"Icon to display in the button.\\\\\\\",\\\\\\\"ButtonCanvas_Layout\\\\\\\":\\\\\\\"Layout\\\\\\\",\\\\\\\"ButtonCanvas_Layout_Desc\\\\\\\":\\\\\\\"Layout of the button\\\\\\\",\\\\\\\"ButtonCanvas_Layout_IconBefore\\\\\\\":\\\\\\\"Icon before\\\\\\\",\\\\\\\"ButtonCanvas_Layout_IconAfter\\\\\\\":\\\\\\\"Icon after\\\\\\\",\\\\\\\"ButtonCanvas_Layout_TextOnly\\\\\\\":\\\\\\\"Text only\\\\\\\",\\\\\\\"ButtonCanvas_Layout_IconOnly\\\\\\\":\\\\\\\"Icon only\\\\\\\",\\\\\\\"ButtonCanvas_IconRotation\\\\\\\":\\\\\\\"Icon rotation\\\\\\\",\\\\\\\"ButtonCanvas_IconRotation_Desc\\\\\\\":\\\\\\\"Icon rotation in degrees\\\\\\\",\\\\\\\"ButtonCanvas_IconStyle\\\\\\\":\\\\\\\"Icon style\\\\\\\",\\\\\\\"ButtonCanvas_IconStyle_Desc\\\\\\\":\\\\\\\"Whether the icon's style should be outline or filled.\\\\\\\",\\\\\\\"ButtonCanvas_IconStyle_Outline\\\\\\\":\\\\\\\"Outline\\\\\\\",\\\\\\\"ButtonCanvas_IconStyle_Filled\\\\\\\":\\\\\\\"Filled\\\\\\\",\\\\\\\"ButtonCanvas_AcceptsFocus\\\\\\\":\\\\\\\"Accepts focus\\\\\\\",\\\\\\\"ButtonCanvas_AcceptsFocus_Desc\\\\\\\":\\\\\\\"Whether this field can be reached with Tab key.\\\\\\\",\\\\\\\"ButtonCanvas_AccessibleLabel\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"ButtonCanvas_AccessibleLabel_Desc\\\\\\\":\\\\\\\"Label read out by screen readers.\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"Font_Size\\\\\\\":\\\\\\\"Font size\\\\\\\",\\\\\\\"Font_Size_description\\\\\\\":\\\\\\\"Set the font size for displayed text.\\\\\\\",\\\\\\\"Font\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Font_description\\\\\\\":\\\\\\\"The name of the family of fonts in which text appears\\\\\\\",\\\\\\\"Font_Color\\\\\\\":\\\\\\\"Font color\\\\\\\",\\\\\\\"Font_Color_description\\\\\\\":\\\\\\\"The color of text in the control\\\\\\\",\\\\\\\"Font_Weight\\\\\\\":\\\\\\\"Font weight\\\\\\\",\\\\\\\"Font_Weight_description\\\\\\\":\\\\\\\"The weight of the text in a control\\\\\\\",\\\\\\\"Italic\\\\\\\":\\\\\\\"Italic\\\\\\\",\\\\\\\"Underline\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"Strikethrough\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"BorderStyle\\\\\\\":\\\\\\\"Border style\\\\\\\",\\\\\\\"BorderStyle_Description\\\\\\\":\\\\\\\"Style of borders around the control\\\\\\\",\\\\\\\"BorderStyle_Dashed\\\\\\\":\\\\\\\"Dashed\\\\\\\",\\\\\\\"BorderStyle_Dotted\\\\\\\":\\\\\\\"Dotted\\\\\\\",\\\\\\\"BorderStyle_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"BorderStyle_Solid\\\\\\\":\\\\\\\"Solid\\\\\\\",\\\\\\\"BorderThickness\\\\\\\":\\\\\\\"Border thickness\\\\\\\",\\\\\\\"BorderThickness_Description\\\\\\\":\\\\\\\"Thickness or width of borders around the control.\\\\\\\",\\\\\\\"BorderColor\\\\\\\":\\\\\\\"Border color\\\\\\\",\\\\\\\"BorderColor_Description\\\\\\\":\\\\\\\"Color of borders around the control.\\\\\\\",\\\\\\\"BorderRadiusTopLeft\\\\\\\":\\\\\\\"Top left border radius\\\\\\\",\\\\\\\"BorderRadiusTopLeft_Description\\\\\\\":\\\\\\\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusTopRight\\\\\\\":\\\\\\\"Top right border radius\\\\\\\",\\\\\\\"BorderRadiusTopRight_Description\\\\\\\":\\\\\\\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusBottomRight\\\\\\\":\\\\\\\"Bottom right border radius\\\\\\\",\\\\\\\"BorderRadiusBottomRight_Description\\\\\\\":\\\\\\\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusBottomLeft\\\\\\\":\\\\\\\"Bottom left border radius\\\\\\\",\\\\\\\"BorderRadiusBottomLeft_Description\\\\\\\":\\\\\\\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"Padding to apply to the top of the control.\\\\\\\",\\\\\\\"PaddingBottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"PaddingBottom_Description\\\\\\\":\\\\\\\"Padding to apply to the bottom of the control.\\\\\\\",\\\\\\\"PaddingLeft\\\\\\\":\\\\\\\"Left\\\\\\\",\\\\\\\"PaddingLeft_Description\\\\\\\":\\\\\\\"Padding to apply to the left of the control.\\\\\\\",\\\\\\\"PaddingRight\\\\\\\":\\\\\\\"Right\\\\\\\",\\\\\\\"PaddingRight_Description\\\\\\\":\\\\\\\"Padding to apply to the right of the control.\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"VerticalAlign_Top\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"VerticalAlign_Middle\\\\\\\":\\\\\\\"Middle\\\\\\\",\\\\\\\"VerticalAlign_Bottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"Align_Start\\\\\\\":\\\\\\\"Start\\\\\\\",\\\\\\\"Align_End\\\\\\\":\\\\\\\"End\\\\\\\",\\\\\\\"Align_Center\\\\\\\":\\\\\\\"Center\\\\\\\",\\\\\\\"Align_Justify\\\\\\\":\\\\\\\"Justify\\\\\\\",\\\\\\\"HoverBorderColor\\\\\\\":\\\\\\\"HoverBorderColor\\\\\\\",\\\\\\\"HoverBorderColor_Description\\\\\\\":\\\\\\\"Display border for hover state with selected color.\\\\\\\",\\\\\\\"PressedBorderColor\\\\\\\":\\\\\\\"PressedBorderColor\\\\\\\",\\\\\\\"PressedBorderColor_Description\\\\\\\":\\\\\\\"Display border for pressed state with selected color.\\\\\\\",\\\\\\\"DisabledBorderColor\\\\\\\":\\\\\\\"DisabledBorderColor\\\\\\\",\\\\\\\"DisabledBorderColor_Description\\\\\\\":\\\\\\\"Display border for disabled state with selected color.\\\\\\\",\\\\\\\"FocusedBorderColor\\\\\\\":\\\\\\\"FocusedBorderColor\\\\\\\",\\\\\\\"FocusedBorderColor_Description\\\\\\\":\\\\\\\"Display border for focused state with selected color.\\\\\\\"}}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":14,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fluentui-react.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":4,\\\"Path\\\":\\\"Fluent/9.4.0/9.4.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"AcceptsFocus\\\",\\\"DisplayName\\\":\\\"Accepts focus\\\",\\\"Description\\\":\\\"Whether this field can be reached with Tab key.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_AcceptsFocus\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_AcceptsFocus_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessible label\\\",\\\"Description\\\":\\\"Label read out by screen readers.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_AccessibleLabel\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_AccessibleLabel_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Appearance\\\",\\\"DisplayName\\\":\\\"Type\\\",\\\"Description\\\":\\\"Display as one of button types.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Primary\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Primary\\\",\\\"WebDefaultValue\\\":\\\"Primary\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Primary\\\",\\\"DisplayName\\\":\\\"Primary\\\",\\\"Description\\\":\\\"Primary\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Primary\\\"},{\\\"Name\\\":\\\"Secondary\\\",\\\"DisplayName\\\":\\\"Secondary\\\",\\\"Description\\\":\\\"Secondary\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Secondary\\\"},{\\\"Name\\\":\\\"Outline\\\",\\\"DisplayName\\\":\\\"Outline\\\",\\\"Description\\\":\\\"Outline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Outline\\\"},{\\\"Name\\\":\\\"Subtle\\\",\\\"DisplayName\\\":\\\"Subtle\\\",\\\"Description\\\":\\\"Subtle\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Subtle\\\"},{\\\"Name\\\":\\\"Transparent\\\",\\\"DisplayName\\\":\\\"Transparent\\\",\\\"Description\\\":\\\"Transparent\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Transparent\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_Appearance\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_Appearance_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Text\\\",\\\"DisplayName\\\":\\\"Text\\\",\\\"Description\\\":\\\"Text to display in the button.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Button\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_Text\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_Text_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Icon\\\",\\\"DisplayName\\\":\\\"Icon\\\",\\\"Description\\\":\\\"Icon to display in the button.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_Icon\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_Icon_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Layout\\\",\\\"DisplayName\\\":\\\"Layout\\\",\\\"Description\\\":\\\"Layout of the button\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Icon before\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Icon before\\\",\\\"WebDefaultValue\\\":\\\"Icon before\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"IconBefore\\\",\\\"DisplayName\\\":\\\"Icon before\\\",\\\"Description\\\":\\\"Icon before\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Icon before\\\"},{\\\"Name\\\":\\\"IconAfter\\\",\\\"DisplayName\\\":\\\"Icon after\\\",\\\"Description\\\":\\\"Icon after\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Icon after\\\"},{\\\"Name\\\":\\\"TextOnly\\\",\\\"DisplayName\\\":\\\"Text only\\\",\\\"Description\\\":\\\"Text only\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Text only\\\"},{\\\"Name\\\":\\\"IconOnly\\\",\\\"DisplayName\\\":\\\"Icon only\\\",\\\"Description\\\":\\\"Icon only\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Icon only\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_Layout\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_Layout_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"IconRotation\\\",\\\"DisplayName\\\":\\\"Icon rotation\\\",\\\"Description\\\":\\\"Icon rotation in degrees\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_IconRotation\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_IconRotation_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"IconStyle\\\",\\\"DisplayName\\\":\\\"Icon style\\\",\\\"Description\\\":\\\"Whether the icon's style should be outline or filled.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Outline\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Outline\\\",\\\"WebDefaultValue\\\":\\\"Outline\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Outline\\\",\\\"DisplayName\\\":\\\"Outline\\\",\\\"Description\\\":\\\"Outline\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Outline\\\"},{\\\"Name\\\":\\\"Filled\\\",\\\"DisplayName\\\":\\\"Filled\\\",\\\"Description\\\":\\\"Filled\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Filled\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"ButtonCanvas_IconStyle\\\",\\\"DescriptionResourceString\\\":\\\"ButtonCanvas_IconStyle_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BasePaletteColor\\\",\\\"DisplayName\\\":\\\"Color palette\\\",\\\"Description\\\":\\\"Choose a color palette that's different from the theme.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Base_Palette_Color\\\",\\\"DescriptionResourceString\\\":\\\"Base_Palette_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"Font\\\",\\\"DisplayName\\\":\\\"Font\\\",\\\"Description\\\":\\\"The name of the family of fonts in which text appears\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font\\\",\\\"DescriptionResourceString\\\":\\\"Font_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontSize\\\",\\\"DisplayName\\\":\\\"Font size\\\",\\\"Description\\\":\\\"Set the font size for displayed text.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Size\\\",\\\"DescriptionResourceString\\\":\\\"Font_Size_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontColor\\\",\\\"DisplayName\\\":\\\"Font color\\\",\\\"Description\\\":\\\"The color of text in the control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Color\\\",\\\"DescriptionResourceString\\\":\\\"Font_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontWeight\\\",\\\"DisplayName\\\":\\\"Font weight\\\",\\\"Description\\\":\\\"The weight of the text in a control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Weight\\\",\\\"DescriptionResourceString\\\":\\\"Font_Weight_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontItalic\\\",\\\"DisplayName\\\":\\\"Italic\\\",\\\"Description\\\":\\\"Italic\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Italic\\\",\\\"DescriptionResourceString\\\":\\\"Italic\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontUnderline\\\",\\\"DisplayName\\\":\\\"Underline\\\",\\\"Description\\\":\\\"Underline\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Underline\\\",\\\"DescriptionResourceString\\\":\\\"Underline\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontStrikethrough\\\",\\\"DisplayName\\\":\\\"Strikethrough\\\",\\\"Description\\\":\\\"Strikethrough\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Strikethrough\\\",\\\"DescriptionResourceString\\\":\\\"Strikethrough\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderStyle\\\",\\\"DisplayName\\\":\\\"Border style\\\",\\\"Description\\\":\\\"Style of borders around the control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderStyle\\\",\\\"DescriptionResourceString\\\":\\\"BorderStyle_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderThickness\\\",\\\"DisplayName\\\":\\\"Border thickness\\\",\\\"Description\\\":\\\"Thickness or width of borders around the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderThickness\\\",\\\"DescriptionResourceString\\\":\\\"BorderThickness_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderColor\\\",\\\"DisplayName\\\":\\\"Border color\\\",\\\"Description\\\":\\\"Color of borders around the control.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderColor\\\",\\\"DescriptionResourceString\\\":\\\"BorderColor_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderRadius\\\",\\\"DisplayName\\\":\\\"BorderRadius\\\",\\\"Description\\\":\\\"BorderRadius_Description\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadius\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadius_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusTopLeft\\\",\\\"DisplayName\\\":\\\"Top left border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusTopLeft\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusTopLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusTopRight\\\",\\\"DisplayName\\\":\\\"Top right border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusTopRight\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusTopRight_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusBottomRight\\\",\\\"DisplayName\\\":\\\"Bottom right border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusBottomRight\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusBottomRight_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusBottomLeft\\\",\\\"DisplayName\\\":\\\"Bottom left border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusBottomLeft\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusBottomLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"PaddingTop\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"Padding to apply to the top of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingTop\\\",\\\"DescriptionResourceString\\\":\\\"PaddingTop_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingRight\\\",\\\"DisplayName\\\":\\\"Right\\\",\\\"Description\\\":\\\"Padding to apply to the right of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingRight\\\",\\\"DescriptionResourceString\\\":\\\"PaddingRight_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingBottom\\\",\\\"DisplayName\\\":\\\"Bottom\\\",\\\"Description\\\":\\\"Padding to apply to the bottom of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingBottom\\\",\\\"DescriptionResourceString\\\":\\\"PaddingBottom_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingLeft\\\",\\\"DisplayName\\\":\\\"Left\\\",\\\"Description\\\":\\\"Padding to apply to the left of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingLeft\\\",\\\"DescriptionResourceString\\\":\\\"PaddingLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Align\\\",\\\"DisplayName\\\":\\\"Align\\\",\\\"Description\\\":\\\"Display text using the selected text alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Align\\\",\\\"DescriptionResourceString\\\":\\\"Align_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"VerticalAlign\\\",\\\"DisplayName\\\":\\\"Vertical align\\\",\\\"Description\\\":\\\"Display text using the selected text verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"VerticalAlign\\\",\\\"DescriptionResourceString\\\":\\\"VerticalAlign_Desc\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"TabIndex\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Tooltip\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PCFTeamsTheme\\\",\\\"DisplayName\\\":\\\"PCFTeamsTheme\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":3,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"IncludedProperties\":\"[{\\\"Name\\\":\\\"X\\\",\\\"DisplayName\\\":\\\"CC_X\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_X\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Y\\\",\\\"DisplayName\\\":\\\"CC_Y\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_Y\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Width\\\",\\\"DisplayName\\\":\\\"Width\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"96\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"96\\\",\\\"WebDefaultValue\\\":\\\"96\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Width\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Height\\\",\\\"DisplayName\\\":\\\"Height\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"32\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"32\\\",\\\"WebDefaultValue\\\":\\\"32\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Height\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Visible\\\",\\\"DisplayName\\\":\\\"Visible\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":4,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Visible\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisplayMode\\\",\\\"DisplayName\\\":\\\"DisplayMode\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":27,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"DisplayMode\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"CommonEvents\":\"[{\\\"Name\\\":\\\"OnSelect\\\",\\\"DisplayName\\\":\\\"OnSelect\\\",\\\"Description\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":true}]\",\"SubscribedFunctionalities\":\"{\\\"autoDisabledViewState\\\":\\\"true\\\",\\\"supportSetFocus\\\":\\\"true\\\"}\",\"AuthConfigProperties\":\"[{\\\"Text\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Icon\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":54,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Layout\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"AccessibleLabel\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Visible\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DisplayMode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":27,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Align\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":40,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"VerticalAlign\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":42,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"IconRotation\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"X\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Y\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Width\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Height\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingTop\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingRight\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingBottom\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingLeft\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Appearance\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"IconStyle\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Font\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":33,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontSize\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":31,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontWeight\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":34,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontItalic\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":35,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontUnderline\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":36,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontStrikethrough\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":37,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderStyle\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":30,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderThickness\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":29,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderRadius\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false}}]\"}",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_ButtonCanvas",
+ "IsComponentDefinition": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPremiumPcfControl": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_ButtonCanvas",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Button",
+ "Version": "0.0.43"
+ },
+ "Spinner1": {
+ "CustomGroupControlTemplateName": "",
+ "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"Spinner\",\"DisplayNameKey\":\"Spinner_Display_Key\",\"Resources\":\"[{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/prop-types.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":1,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/react-fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":2,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":3,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela-dom.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":4,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/common/js/container.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":6,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":7,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestTemplate\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"ConstructorName\\\\\\\":\\\\\\\"PowerApps.CoreControls.Spinner\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.Spinner\\\\\\\",\\\\\\\"IsVirtual\\\\\\\":true,\\\\\\\"Properties\\\\\\\":{\\\\\\\"Resources\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/prop-types.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":1,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/react-fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":2,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":3,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela-dom.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":4,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/common/js/container.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":5,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":6,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":7,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null}],\\\\\\\"GroupDefinitions\\\\\\\":null,\\\\\\\"DataSetDefinitions\\\\\\\":{},\\\\\\\"Properties\\\\\\\":{\\\\\\\"Label\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Appearance\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Primary\\\\\\\"},\\\\\\\"LabelPosition\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"After\\\\\\\"},\\\\\\\"SpinnerSize\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Medium\\\\\\\"},\\\\\\\"BasePaletteColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Font\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontSize\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontWeight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontItalic\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontUnderline\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontStrikethrough\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"SpinnerColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TrackColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":null},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":null,\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"Label\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"LabelPosition\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"SpinnerSize\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BasePaletteColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"ColorPalette\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontSize\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontItalic\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Italics\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontUnderline\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontStrikethrough\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"SpinnerColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Color\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"TrackColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Color\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"TabIndex\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Tooltip\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PCFTeamsTheme\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"X\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Y\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Width\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Height\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Visible\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true}]}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":9,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"PowerAppsControlInfo\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"TemplateVersion\\\\\\\":1,\\\\\\\"Version\\\\\\\":\\\\\\\"1.4.3\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/bundle.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"Spinner_Display_Key\\\\\\\":\\\\\\\"Spinner\\\\\\\",\\\\\\\"Spinner_Desc_Key\\\\\\\":\\\\\\\"Let users visualise spinner/loading effect\\\\\\\",\\\\\\\"Spinner_Label_Display_Key\\\\\\\":\\\\\\\"Label\\\\\\\",\\\\\\\"Spinner_Label_Desc_Key\\\\\\\":\\\\\\\"Label for Spinner\\\\\\\",\\\\\\\"Spinner_AccessibleLabel_Display_Key\\\\\\\":\\\\\\\"Accessibility Label\\\\\\\",\\\\\\\"Spinner_AccessibleLabel_Desc_Key\\\\\\\":\\\\\\\"Accessibility Label for Spinner component\\\\\\\",\\\\\\\"Spinner_Appearance_Display_Key\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Spinner_Appearance_Desc_Key\\\\\\\":\\\\\\\"Appearance of Spinner\\\\\\\",\\\\\\\"Spinner_LabelPosition_Display_Key\\\\\\\":\\\\\\\"Label Position\\\\\\\",\\\\\\\"Spinner_LabelPosition_Desc_Key\\\\\\\":\\\\\\\"Define position for the label around the Spinner\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Display_Key\\\\\\\":\\\\\\\"Spinner Size\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Desc_Key\\\\\\\":\\\\\\\"Define size of Spinner\\\\\\\",\\\\\\\"Spinner_LabelPosition_Before\\\\\\\":\\\\\\\"Before\\\\\\\",\\\\\\\"Spinner_LabelPosition_After\\\\\\\":\\\\\\\"After\\\\\\\",\\\\\\\"Spinner_LabelPosition_Above\\\\\\\":\\\\\\\"Above\\\\\\\",\\\\\\\"Spinner_LabelPosition_Below\\\\\\\":\\\\\\\"Below\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Tiny\\\\\\\":\\\\\\\"Tiny\\\\\\\",\\\\\\\"Spinner_SpinnerSize_ExtraSmall\\\\\\\":\\\\\\\"ExtraSmall\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Small\\\\\\\":\\\\\\\"Small\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Medium\\\\\\\":\\\\\\\"Medium\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Large\\\\\\\":\\\\\\\"Large\\\\\\\",\\\\\\\"Spinner_SpinnerSize_ExtraLarge\\\\\\\":\\\\\\\"ExtraLarge\\\\\\\",\\\\\\\"Spinner_SpinnerSize_Huge\\\\\\\":\\\\\\\"Huge\\\\\\\",\\\\\\\"Spinner_Appearance_Primary\\\\\\\":\\\\\\\"Primary\\\\\\\",\\\\\\\"Spinner_Appearance_Inverted\\\\\\\":\\\\\\\"Inverted\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"Font_Size\\\\\\\":\\\\\\\"Font size\\\\\\\",\\\\\\\"Font_Size_description\\\\\\\":\\\\\\\"Set the font size for displayed text.\\\\\\\",\\\\\\\"Font\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Font_description\\\\\\\":\\\\\\\"The name of the family of fonts in which text appears\\\\\\\",\\\\\\\"Font_Color\\\\\\\":\\\\\\\"Font color\\\\\\\",\\\\\\\"Font_Color_description\\\\\\\":\\\\\\\"The color of text in the control\\\\\\\",\\\\\\\"Font_Weight\\\\\\\":\\\\\\\"Font weight\\\\\\\",\\\\\\\"Font_Weight_description\\\\\\\":\\\\\\\"The weight of the text in a control\\\\\\\",\\\\\\\"Italic\\\\\\\":\\\\\\\"Italic\\\\\\\",\\\\\\\"Underline\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"Strikethrough\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"SpinnerColor\\\\\\\":\\\\\\\"Spinner color\\\\\\\",\\\\\\\"SpinnerColor_description\\\\\\\":\\\\\\\"The color of the spinner\\\\\\\",\\\\\\\"TrackColor\\\\\\\":\\\\\\\"Track color\\\\\\\",\\\\\\\"TrackColor_description\\\\\\\":\\\\\\\"The color of the spinner's track\\\\\\\"}}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fluentui-react.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":4,\\\"Path\\\":\\\"React/16.8.6/16.14.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":4,\\\"Path\\\":\\\"Fluent/9.4.0/9.4.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"Label\\\",\\\"DisplayName\\\":\\\"Label\\\",\\\"Description\\\":\\\"Label for Spinner\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Spinner_Label_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"Spinner_Label_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessibility Label\\\",\\\"Description\\\":\\\"Accessibility Label for Spinner component\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Spinner_AccessibleLabel_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"Spinner_AccessibleLabel_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Appearance\\\",\\\"DisplayName\\\":\\\"Appearance\\\",\\\"Description\\\":\\\"Appearance of Spinner\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Primary\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Primary\\\",\\\"WebDefaultValue\\\":\\\"Primary\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Inverted\\\",\\\"DisplayName\\\":\\\"Inverted\\\",\\\"Description\\\":\\\"Inverted\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Inverted\\\"},{\\\"Name\\\":\\\"Primary\\\",\\\"DisplayName\\\":\\\"Primary\\\",\\\"Description\\\":\\\"Primary\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Primary\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Spinner_Appearance_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"Spinner_Appearance_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"LabelPosition\\\",\\\"DisplayName\\\":\\\"Label Position\\\",\\\"Description\\\":\\\"Define position for the label around the Spinner\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"After\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"After\\\",\\\"WebDefaultValue\\\":\\\"After\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Before\\\",\\\"DisplayName\\\":\\\"Before\\\",\\\"Description\\\":\\\"Before\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Before\\\"},{\\\"Name\\\":\\\"After\\\",\\\"DisplayName\\\":\\\"After\\\",\\\"Description\\\":\\\"After\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"After\\\"},{\\\"Name\\\":\\\"Above\\\",\\\"DisplayName\\\":\\\"Above\\\",\\\"Description\\\":\\\"Above\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Above\\\"},{\\\"Name\\\":\\\"Below\\\",\\\"DisplayName\\\":\\\"Below\\\",\\\"Description\\\":\\\"Below\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Below\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Spinner_LabelPosition_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"Spinner_LabelPosition_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"SpinnerSize\\\",\\\"DisplayName\\\":\\\"Spinner Size\\\",\\\"Description\\\":\\\"Define size of Spinner\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Medium\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Medium\\\",\\\"WebDefaultValue\\\":\\\"Medium\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Tiny\\\",\\\"DisplayName\\\":\\\"Tiny\\\",\\\"Description\\\":\\\"Tiny\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Tiny\\\"},{\\\"Name\\\":\\\"ExtraSmall\\\",\\\"DisplayName\\\":\\\"ExtraSmall\\\",\\\"Description\\\":\\\"ExtraSmall\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"ExtraSmall\\\"},{\\\"Name\\\":\\\"Small\\\",\\\"DisplayName\\\":\\\"Small\\\",\\\"Description\\\":\\\"Small\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Small\\\"},{\\\"Name\\\":\\\"Medium\\\",\\\"DisplayName\\\":\\\"Medium\\\",\\\"Description\\\":\\\"Medium\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Medium\\\"},{\\\"Name\\\":\\\"Large\\\",\\\"DisplayName\\\":\\\"Large\\\",\\\"Description\\\":\\\"Large\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Large\\\"},{\\\"Name\\\":\\\"ExtraLarge\\\",\\\"DisplayName\\\":\\\"ExtraLarge\\\",\\\"Description\\\":\\\"ExtraLarge\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"ExtraLarge\\\"},{\\\"Name\\\":\\\"Huge\\\",\\\"DisplayName\\\":\\\"Huge\\\",\\\"Description\\\":\\\"Huge\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Huge\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Spinner_SpinnerSize_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"Spinner_SpinnerSize_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BasePaletteColor\\\",\\\"DisplayName\\\":\\\"Color palette\\\",\\\"Description\\\":\\\"Choose a color palette that's different from the theme.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Base_Palette_Color\\\",\\\"DescriptionResourceString\\\":\\\"Base_Palette_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"Font\\\",\\\"DisplayName\\\":\\\"Font\\\",\\\"Description\\\":\\\"The name of the family of fonts in which text appears\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font\\\",\\\"DescriptionResourceString\\\":\\\"Font_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontSize\\\",\\\"DisplayName\\\":\\\"Font size\\\",\\\"Description\\\":\\\"Set the font size for displayed text.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Size\\\",\\\"DescriptionResourceString\\\":\\\"Font_Size_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontColor\\\",\\\"DisplayName\\\":\\\"Font color\\\",\\\"Description\\\":\\\"The color of text in the control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Color\\\",\\\"DescriptionResourceString\\\":\\\"Font_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontWeight\\\",\\\"DisplayName\\\":\\\"Font weight\\\",\\\"Description\\\":\\\"The weight of the text in a control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Weight\\\",\\\"DescriptionResourceString\\\":\\\"Font_Weight_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontItalic\\\",\\\"DisplayName\\\":\\\"Italic\\\",\\\"Description\\\":\\\"Italic\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Italic\\\",\\\"DescriptionResourceString\\\":\\\"Italic\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontUnderline\\\",\\\"DisplayName\\\":\\\"Underline\\\",\\\"Description\\\":\\\"Underline\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Underline\\\",\\\"DescriptionResourceString\\\":\\\"Underline\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontStrikethrough\\\",\\\"DisplayName\\\":\\\"Strikethrough\\\",\\\"Description\\\":\\\"Strikethrough\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Strikethrough\\\",\\\"DescriptionResourceString\\\":\\\"Strikethrough\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"SpinnerColor\\\",\\\"DisplayName\\\":\\\"Spinner color\\\",\\\"Description\\\":\\\"The color of the spinner\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"SpinnerColor\\\",\\\"DescriptionResourceString\\\":\\\"SpinnerColor_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"TrackColor\\\",\\\"DisplayName\\\":\\\"Track color\\\",\\\"Description\\\":\\\"The color of the spinner's track\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TrackColor\\\",\\\"DescriptionResourceString\\\":\\\"TrackColor_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"TabIndex\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Tooltip\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PCFTeamsTheme\\\",\\\"DisplayName\\\":\\\"PCFTeamsTheme\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":3,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"IncludedProperties\":\"[{\\\"Name\\\":\\\"X\\\",\\\"DisplayName\\\":\\\"CC_X\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_X\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Y\\\",\\\"DisplayName\\\":\\\"CC_Y\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_Y\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Width\\\",\\\"DisplayName\\\":\\\"Width\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"200\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"350\\\",\\\"WebDefaultValue\\\":\\\"112\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Width\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Height\\\",\\\"DisplayName\\\":\\\"Height\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"200\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"350\\\",\\\"WebDefaultValue\\\":\\\"112\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Height\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Visible\\\",\\\"DisplayName\\\":\\\"Visible\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":4,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Visible\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisplayMode\\\",\\\"DisplayName\\\":\\\"DisplayMode\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":27,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"DisplayMode\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"CommonEvents\":\"[{\\\"Name\\\":\\\"OnChange\\\",\\\"DisplayName\\\":\\\"OnChange\\\",\\\"Description\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":false}]\",\"AuthConfigProperties\":\"[{\\\"Label\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"AccessibleLabel\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Visible\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"LabelPosition\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"SpinnerSize\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"X\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Y\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Width\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Height\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Appearance\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Font\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":33,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontSize\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontColor\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":31,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontWeight\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":34,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontItalic\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":35,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontUnderline\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":36,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontStrikethrough\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":37,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"SpinnerColor\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":29,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"TrackColor\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":29,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false}}]\"}",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_Spinner",
+ "IsComponentDefinition": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPremiumPcfControl": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_Spinner",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Spinner",
+ "Version": "1.4.3"
+ },
+ "Table2": {
+ "CustomGroupControlTemplateName": "",
+ "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"Microsoft.PowerApps\",\"ControlConstructor\":\"PowerAppsOneGrid\",\"DisplayNameKey\":\"PowerAppsOneGrid_Override_Name\",\"Resources\":\"[{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/prop-types.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":1,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/react-fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":2,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":3,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela-dom.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":4,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/common/js/container.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":6,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":7,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestTemplate\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"ConstructorName\\\\\\\":\\\\\\\"Microsoft.PowerApps.PowerAppsOneGrid\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"Microsoft.PowerApps.PowerAppsOneGrid\\\\\\\",\\\\\\\"IsVirtual\\\\\\\":true,\\\\\\\"Properties\\\\\\\":{\\\\\\\"Resources\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/prop-types.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":1,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/react-fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":2,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":3,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela-dom.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":4,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/common/js/container.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":5,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":6,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":7,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null}],\\\\\\\"GroupDefinitions\\\\\\\":null,\\\\\\\"DataSetDefinitions\\\\\\\":{\\\\\\\"Items\\\\\\\":{\\\\\\\"DisplayName\\\\\\\":\\\\\\\"Items\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Grid\\\\\\\",\\\\\\\"Columns\\\\\\\":{},\\\\\\\"Primary\\\\\\\":true,\\\\\\\"InitialDataSetFetch\\\\\\\":true,\\\\\\\"CDSDataSetOptions\\\\\\\":null},\\\\\\\"ChildItems\\\\\\\":{\\\\\\\"DisplayName\\\\\\\":\\\\\\\"Child items\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Grid\\\\\\\",\\\\\\\"Columns\\\\\\\":{\\\\\\\"0\\\\\\\":{\\\\\\\"Required\\\\\\\":false,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"Name\\\\\\\":\\\\\\\"ParentId\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Lookup_Simple\\\\\\\"}},\\\\\\\"Primary\\\\\\\":false,\\\\\\\"InitialDataSetFetch\\\\\\\":true,\\\\\\\"CDSDataSetOptions\\\\\\\":null}},\\\\\\\"Properties\\\\\\\":{\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"EnableEditing\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"DisableChildItemsEditing\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableFiltering\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableSorting\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"EnableGrouping\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableAggregation\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableColumnMoving\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableMultipleSelection\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableRangeSelection\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"EnableJumpBar\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnablePagination\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableDropdownColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableStatusIcons\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"EnableTypeIcons\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"no\\\\\\\"},\\\\\\\"NavigationTypesAllowed\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"none\\\\\\\"},\\\\\\\"ReflowBehavior\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Reflow\\\\\\\"},\\\\\\\"ShowAvatar\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"ShowFooter\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"ShowColumnHeaders\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"GridCustomizerControlFullName\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"GridActions\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BasePaletteColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Font\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontSize\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontWeight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"HeaderFont\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"HeaderFontColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"HeaderFontSize\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"HeaderFontWeight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"NoDataText\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"DateTimeFormat\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"none\\\\\\\"},\\\\\\\"DateOnlyFormat\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"none\\\\\\\"},\\\\\\\"EnableStatusColumn\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"yes\\\\\\\"},\\\\\\\"DisableStatusColumn\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"DisableStatusColumnSavingIcons\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Items_FieldProperties\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Items\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Selected\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"SelectedItems\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"ChildItems_Items\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"ChildItems_Selected\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"ChildItems_SelectedItems\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":2,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"ParentId\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":[{\\\\\\\"IsRequired\\\\\\\":true,\\\\\\\"Name\\\\\\\":\\\\\\\"Utility\\\\\\\"},{\\\\\\\"IsRequired\\\\\\\":true,\\\\\\\"Name\\\\\\\":\\\\\\\"ExplicitCommonEvents\\\\\\\"},{\\\\\\\"IsRequired\\\\\\\":true,\\\\\\\"Name\\\\\\\":\\\\\\\"PreventDefaultSort\\\\\\\"}]},\\\\\\\"Events\\\\\\\":{\\\\\\\"onCellValueChange\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"onCellValueChange\\\\\\\"},\\\\\\\"onFilter\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"onFilter\\\\\\\"},\\\\\\\"onNavigate\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"onNavigate\\\\\\\"},\\\\\\\"onRowSelect\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"onRowSelect\\\\\\\"},\\\\\\\"onSave\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"onSave\\\\\\\"},\\\\\\\"OnSelect\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"OnSelect\\\\\\\"}},\\\\\\\"CommonEvents\\\\\\\":null,\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[{\\\\\\\"Input\\\\\\\":\\\\\\\"Items\\\\\\\",\\\\\\\"Output\\\\\\\":\\\\\\\"Selected\\\\\\\",\\\\\\\"RequiredFor\\\\\\\":\\\\\\\"\\\\\\\"},{\\\\\\\"Input\\\\\\\":\\\\\\\"Items\\\\\\\",\\\\\\\"Output\\\\\\\":\\\\\\\"SelectedItems\\\\\\\",\\\\\\\"RequiredFor\\\\\\\":\\\\\\\"\\\\\\\"},{\\\\\\\"Input\\\\\\\":\\\\\\\"ChildItems_Items\\\\\\\",\\\\\\\"Output\\\\\\\":\\\\\\\"ChildItems_Selected\\\\\\\",\\\\\\\"RequiredFor\\\\\\\":\\\\\\\"\\\\\\\"},{\\\\\\\"Input\\\\\\\":\\\\\\\"ChildItems_Items\\\\\\\",\\\\\\\"Output\\\\\\\":\\\\\\\"ChildItems_SelectedItems\\\\\\\",\\\\\\\"RequiredFor\\\\\\\":\\\\\\\"\\\\\\\"}],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableEditing\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisableChildItemsEditing\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableFiltering\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableSorting\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableGrouping\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableAggregation\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableColumnMoving\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableMultipleSelection\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableRangeSelection\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableJumpBar\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnablePagination\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableDropdownColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableStatusIcons\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableTypeIcons\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"NavigationTypesAllowed\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ReflowBehavior\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ShowAvatar\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ShowFooter\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ShowColumnHeaders\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"GridCustomizerControlFullName\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"GridActions\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Object\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BasePaletteColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"ColorPalette\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontSize\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"HeaderFont\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"HeaderFontColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"HeaderFontSize\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"HeaderFontWeight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontWeight\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"NoDataText\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"TabIndex\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"DateTimeFormat\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"DateOnlyFormat\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"EnableStatusColumn\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisableStatusColumn\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisableStatusColumnSavingIcons\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Items_FieldProperties\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Object\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Items\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DataSet\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Selected\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Object\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"SelectedItems\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DataSet\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ChildItems_Items\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DataSet\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ChildItems_Selected\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Object\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ChildItems_SelectedItems\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DataSet\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ParentId\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PCFTeamsTheme\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"X\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Y\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Width\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Height\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Visible\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Tooltip\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true}]}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":9,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"PowerAppsControlInfo\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"TemplateVersion\\\\\\\":1,\\\\\\\"Version\\\\\\\":\\\\\\\"1.0.242\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/PowerAppsOneGrid.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":12,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"PowerAppsOneGrid_AccessibleLabel_Desc_Key\\\\\\\":\\\\\\\"Label read out by screen readers.\\\\\\\",\\\\\\\"PowerAppsOneGrid_AccessibleLabel_Display_Key\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"PowerAppsOneGrid_Name\\\\\\\":\\\\\\\"Power Apps grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_Override_Name\\\\\\\":\\\\\\\"Table\\\\\\\",\\\\\\\"PowerAppsOneGrid_Desc\\\\\\\":\\\\\\\"Grid used for displaying a table of data items.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Items_Name\\\\\\\":\\\\\\\"Items\\\\\\\",\\\\\\\"PowerAppsOneGrid_Items_Desc\\\\\\\":\\\\\\\"Items to use for the grid data\\\\\\\",\\\\\\\"PowerAppsOneGrid_ChildItems_Name\\\\\\\":\\\\\\\"Child items\\\\\\\",\\\\\\\"PowerAppsOneGrid_ChildItems_Desc\\\\\\\":\\\\\\\"Items to use for the child grid data\\\\\\\",\\\\\\\"ChildItems_ParentId_Name\\\\\\\":\\\\\\\"Child Items Parent Id\\\\\\\",\\\\\\\"ChildItems_ParentId_Desc\\\\\\\":\\\\\\\"Parent id to use for child items\\\\\\\",\\\\\\\"PowerAppsOneGrid_No_Columns_Label\\\\\\\":\\\\\\\"No columns selected\\\\\\\",\\\\\\\"PowerAppsOneGrid_No_Columns_Sub_Label\\\\\\\":\\\\\\\"To show data, choose the fields you want from the Properties pane.\\\\\\\",\\\\\\\"PowerAppsOneGrid_No_Data_Label\\\\\\\":\\\\\\\"No data\\\\\\\",\\\\\\\"PowerAppsOneGrid_No_Data_Sub_Label\\\\\\\":\\\\\\\"This table isn't connected to any data yet.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Loading_Data_Label\\\\\\\":\\\\\\\"Loading...\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableEditing_Name\\\\\\\":\\\\\\\"Enable editing\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableEditing_Desc\\\\\\\":\\\\\\\"Enable or disable editing in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableEditing_Yes_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableEditing_Yes_Desc\\\\\\\":\\\\\\\"Enable editing in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReadOnlyMode_No_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReadOnlyMode_No_Desc\\\\\\\":\\\\\\\"Disable editing in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_Name\\\\\\\":\\\\\\\"Disable editing in child items grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_Desc\\\\\\\":\\\\\\\"Disable editing in the child items grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_Yes_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_Yes_Desc\\\\\\\":\\\\\\\"Disable editing in the child items grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_No_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_DisableChildItemsEditing_No_Desc\\\\\\\":\\\\\\\"Allow editing in the child items grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Name\\\\\\\":\\\\\\\"Enable filtering\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Desc\\\\\\\":\\\\\\\"Enable or disable filtering in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Enable_Desc\\\\\\\":\\\\\\\"Enable filtering in grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableFiltering_Disable_Desc\\\\\\\":\\\\\\\"Disable filtering in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Name\\\\\\\":\\\\\\\"Enable sorting\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Desc\\\\\\\":\\\\\\\"Enable or disable sorting in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Enable_Desc\\\\\\\":\\\\\\\"Enable sorting in grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableSorting_Disable_Desc\\\\\\\":\\\\\\\"Disable sorting in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Name\\\\\\\":\\\\\\\"Show footer\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Desc\\\\\\\":\\\\\\\"Show or hide footer in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Enable_Desc\\\\\\\":\\\\\\\"Enable footer in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowFooter_Disable_Desc\\\\\\\":\\\\\\\"Disable footer in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Name\\\\\\\":\\\\\\\"Enable grouping\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Desc\\\\\\\":\\\\\\\"Enable or disable grouping in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Enable_Desc\\\\\\\":\\\\\\\"Enable grouping in grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableGrouping_Disable_Desc\\\\\\\":\\\\\\\"Disable grouping in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Name\\\\\\\":\\\\\\\"Enable aggregation\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Desc\\\\\\\":\\\\\\\"Enable or disable aggregation in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Enable_Desc\\\\\\\":\\\\\\\"Enable aggregation in grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableAggregation_Disable_Desc\\\\\\\":\\\\\\\"Disable aggregation in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Name\\\\\\\":\\\\\\\"Allow column reordering (preview)\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Desc\\\\\\\":\\\\\\\"Allow column reordering\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Enable_Desc\\\\\\\":\\\\\\\"Columns can be reordered\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableColumnMoving_Disable_Desc\\\\\\\":\\\\\\\"Columns cannot be reordered\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Name\\\\\\\":\\\\\\\"Show avatar\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Desc\\\\\\\":\\\\\\\"Show or hide avatars in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Enable_Desc\\\\\\\":\\\\\\\"Show avatars in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowAvatar_Disable_Desc\\\\\\\":\\\\\\\"Hide avatars in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Name\\\\\\\":\\\\\\\"Show column headers\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Desc\\\\\\\":\\\\\\\"Show or hide column headers in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Enable_Desc\\\\\\\":\\\\\\\"Show column headers in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_ShowColumnHeaders_Disable_Desc\\\\\\\":\\\\\\\"Hide column headers in the table\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Name\\\\\\\":\\\\\\\"Allow range selection\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Desc\\\\\\\":\\\\\\\"Determines whether users can select a subset of the grid to copy to the clipboard\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Enable_Desc\\\\\\\":\\\\\\\"Enable range selection in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableRangeSelection_Disable_Desc\\\\\\\":\\\\\\\"Disable range selection in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Name\\\\\\\":\\\\\\\"Enable multi-select\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Desc\\\\\\\":\\\\\\\"Determines whether users can select multiple rows\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Enable_Desc\\\\\\\":\\\\\\\"Enable multiple row selection in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableMultipleSelection_Disable_Desc\\\\\\\":\\\\\\\"Disable multiple row selection in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_SelectionDialog_Title\\\\\\\":\\\\\\\"Selecting rows\\\\\\\",\\\\\\\"PowerAppsOneGrid_SelectionDialog_Subtext\\\\\\\":\\\\\\\"We're working on selecting more rows for you.\\\\\\\",\\\\\\\"PowerAppsOneGrid_SelectionDialog_Cancel_Label\\\\\\\":\\\\\\\"Cancel\\\\\\\",\\\\\\\"PowerAppsOneGrid_NoRowsOverlay_Label\\\\\\\":\\\\\\\"We didn't find anything to show here\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_AriaLabel\\\\\\\":\\\\\\\"Jump bar\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_ABC_Label\\\\\\\":\\\\\\\"ABC\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_All_AriaLabel\\\\\\\":\\\\\\\"Filter to all records\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_All_Label\\\\\\\":\\\\\\\"All\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_Alphabet_AriaLabel\\\\\\\":\\\\\\\"Filter to records starting with {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_Alphabet_Labels\\\\\\\":\\\\\\\"A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_number_AriaLabel\\\\\\\":\\\\\\\"Filter to records starting with a number\\\\\\\",\\\\\\\"PowerAppsOneGrid_JumpBar_Number_Label\\\\\\\":\\\\\\\"#\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Name\\\\\\\":\\\\\\\"Enable jump bar\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Desc\\\\\\\":\\\\\\\"Enable or disable the jump bar footer panel\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Enable_Desc\\\\\\\":\\\\\\\"Enable the jump bar footer panel for the grid control.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Auto_Name\\\\\\\":\\\\\\\"Auto\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Auto_Desc\\\\\\\":\\\\\\\"Show or hide the jump bar automatically for the grid control.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableJumpBar_Disable_Desc\\\\\\\":\\\\\\\"Disable the jump bar footer panel for the grid control.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Name\\\\\\\":\\\\\\\"Enable pagination\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Desc\\\\\\\":\\\\\\\"Enable or disable paging for grid. This will disable infinite scrolling.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Enable_Desc\\\\\\\":\\\\\\\"Enable pagination for the grid control. This will disable infinite scrolling.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnablePagination_Disable_Desc\\\\\\\":\\\\\\\"Disable pagination for the grid control. This will enable infinite scrolling.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Name\\\\\\\":\\\\\\\"Enable OptionSet colors\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Desc\\\\\\\":\\\\\\\"Enable or disable custom colors for OptionSet cells of the grid control.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Enable_Desc\\\\\\\":\\\\\\\"Enable custom colors for OptionSet cells within the grid control.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableDropdownColor_Disable_Desc\\\\\\\":\\\\\\\"Disable custom colors for OptionSet cells within the grid control. It will use default colors provided by the grid.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Name\\\\\\\":\\\\\\\"(Deprecated) Enable status column\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Desc\\\\\\\":\\\\\\\"Determines whether user can hide status column. This is deprecated, please use the allow multiple selection property instead.\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Enable_Desc\\\\\\\":\\\\\\\"Enable status column in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusColumn_Disable_Desc\\\\\\\":\\\\\\\"Disable status column in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_Name\\\\\\\":\\\\\\\"Navigation types allowed\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_Desc\\\\\\\":\\\\\\\"Configure what navigation types are allowed within the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_All_Name\\\\\\\":\\\\\\\"All\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_All_Desc\\\\\\\":\\\\\\\"Allows navigation on primary and lookup columns\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_PrimaryOnly_Name\\\\\\\":\\\\\\\"Primary only\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_PrimaryOnly_Desc\\\\\\\":\\\\\\\"Only allows navigation on the primary column for the entity\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_None_Name\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"PowerAppsOneGrid_NavigationTypesAllowed_None_Desc\\\\\\\":\\\\\\\"Does not allow any entity record navigation\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_Name\\\\\\\":\\\\\\\"Reflow behavior\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_Desc\\\\\\\":\\\\\\\"Define how the grid will reflow (switch display mode) based on its width\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_Reflow_Name\\\\\\\":\\\\\\\"Reflow\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_Reflow_Desc\\\\\\\":\\\\\\\"Allow grid to switch display mode based on its width\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_GridOnly_Name\\\\\\\":\\\\\\\"Grid only\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_GridOnly_Desc\\\\\\\":\\\\\\\"Always display as a grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_ListOnly_Name\\\\\\\":\\\\\\\"List only\\\\\\\",\\\\\\\"PowerAppsOneGrid_ReflowBehavior_ListOnly_Desc\\\\\\\":\\\\\\\"Always display as a list\\\\\\\",\\\\\\\"PowerAppsOneGrid_GridActions_Name\\\\\\\":\\\\\\\"Grid Actions\\\\\\\",\\\\\\\"PowerAppsOneGrid_GridActions_Desc\\\\\\\":\\\\\\\"Grid Actions\\\\\\\",\\\\\\\"PowerAppsOneGrid_onCellValueChange_Name\\\\\\\":\\\\\\\"Cell value changed event\\\\\\\",\\\\\\\"PowerAppsOneGrid_onCellValueChange_Desc\\\\\\\":\\\\\\\"Event fired when a cell value is changed\\\\\\\",\\\\\\\"PowerAppsOneGrid_onFilter_Name\\\\\\\":\\\\\\\"Filter changed event\\\\\\\",\\\\\\\"PowerAppsOneGrid_onFilter_Desc\\\\\\\":\\\\\\\"Event fired when a filter is changed\\\\\\\",\\\\\\\"PowerAppsOneGrid_onNavigate_Name\\\\\\\":\\\\\\\"Cell navigation event\\\\\\\",\\\\\\\"PowerAppsOneGrid_onNavigate_Desc\\\\\\\":\\\\\\\"Event fired when a cell link is executed\\\\\\\",\\\\\\\"PowerAppsOneGrid_onRowSelect_Name\\\\\\\":\\\\\\\"Row select changed event\\\\\\\",\\\\\\\"PowerAppsOneGrid_onRowSelect_Desc\\\\\\\":\\\\\\\"Event fired when a row selection state is changed\\\\\\\",\\\\\\\"PowerAppsOneGrid_onSave_Name\\\\\\\":\\\\\\\"Grid save event\\\\\\\",\\\\\\\"PowerAppsOneGrid_onSave_Desc\\\\\\\":\\\\\\\"Event fired when a save finished\\\\\\\",\\\\\\\"PowerAppsOneGrid_OnSelect_Name\\\\\\\":\\\\\\\"Row select changed event\\\\\\\",\\\\\\\"PowerAppsOneGrid_OnSelect_Desc\\\\\\\":\\\\\\\"Event fired when a row selection state is changed\\\\\\\",\\\\\\\"PowerAppsOneGrid_GridCustomizerControlFullName_Name\\\\\\\":\\\\\\\"Customizer control\\\\\\\",\\\\\\\"PowerAppsOneGrid_GridCustomizerControlFullName_Desc\\\\\\\":\\\\\\\"Full logical name of the control (__) that provides custom cell renders and/or editors for the Power Apps grid control\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Text\\\\\\\":\\\\\\\"Enter text\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Url\\\\\\\":\\\\\\\"https://\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_DateTime\\\\\\\":\\\\\\\"Enter or pick date\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Number\\\\\\\":\\\\\\\"Enter number\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_FloatingNumber\\\\\\\":\\\\\\\"0.00000\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Decimal\\\\\\\":\\\\\\\"Enter decimal\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Lookup\\\\\\\":\\\\\\\"Select lookup\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_OptionSet\\\\\\\":\\\\\\\"Select option\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_File\\\\\\\":\\\\\\\"No file attached\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Media\\\\\\\":\\\\\\\"No media attached\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Email\\\\\\\":\\\\\\\"Enter email\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceHolder_Phone\\\\\\\":\\\\\\\"Enter phone\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_PluralRowErrors\\\\\\\":\\\\\\\"(1){There is {0} error in this row.};(0-inf){There are {0} errors in this row.};\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_RowSaveError\\\\\\\":\\\\\\\"There was an error in saving this record.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_TotalErrorsPlural\\\\\\\":\\\\\\\"Number of errors on this page: {0}. Select to view.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_FixText\\\\\\\":\\\\\\\"Fix.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_DismissText\\\\\\\":\\\\\\\"Dismiss\\\\\\\",\\\\\\\"PowerAppsOneGrid_Error_RowSelectionLimit\\\\\\\":\\\\\\\"You've reached the limit of having {0} rows selected. Any row selection beyond that limit has been ignored.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Footer_PluralRows\\\\\\\":\\\\\\\"(1){{0} row};(0-4999){{0} rows};(5000-inf){{0}+ rows};\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_NowRowsSelected\\\\\\\":\\\\\\\"no rows selected\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_RowSelectionAriaLabel\\\\\\\":\\\\\\\"select or deselect the row\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_SelectedRowCountNotification\\\\\\\":\\\\\\\"Total rows selected: {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_SelectAllRowsAriaLabel\\\\\\\":\\\\\\\"Toggle selection of all rows\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_StatusColumnName\\\\\\\":\\\\\\\"row status\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_GroupHeader\\\\\\\":\\\\\\\"Group\\\\\\\",\\\\\\\"PowerAppsOneGrid_Aria_Description\\\\\\\":\\\\\\\"Press enter to modify editable cells\\\\\\\",\\\\\\\"PowerAppsOneGrid_Base_GroupHeaderTooltip\\\\\\\":\\\\\\\"Grouped by {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_FilterMenu\\\\\\\":\\\\\\\"Filter by\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_ClearFilterMenu\\\\\\\":\\\\\\\"Clear filter\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_MoveLeftMenu\\\\\\\":\\\\\\\"Move left\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_MoveRightMenu\\\\\\\":\\\\\\\"Move right\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_PinLeftMenu\\\\\\\":\\\\\\\"Pin left\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_PinRightMenu\\\\\\\":\\\\\\\"Pin right\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_UnpinMenu\\\\\\\":\\\\\\\"Unpin\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_EditColumn\\\\\\\":\\\\\\\"Edit column\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_HideColumn\\\\\\\":\\\\\\\"Hide\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_InsertColumn\\\\\\\":\\\\\\\"Insert column\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_GroupByLabel\\\\\\\":\\\\\\\"Group by\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_GroupMenu\\\\\\\":\\\\\\\"Group by\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_UngroupMenu\\\\\\\":\\\\\\\"Ungroup\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_SortAscMenu\\\\\\\":\\\\\\\"Ascending\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_SortDescMenu\\\\\\\":\\\\\\\"Descending\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputIsIntegerValidatorErrorMessage\\\\\\\":\\\\\\\"Value must be a valid whole number\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputIsNumberValidatorErrorMessage\\\\\\\":\\\\\\\"Value must be a valid number\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputNumberGreaterThanMaxErrorMessage\\\\\\\":\\\\\\\"Input value is greater than the maximum value allowed for this field ({0})\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputNumberLowerThanMinErrorMessage\\\\\\\":\\\\\\\"Input value is lower than the minimum value allowed for this field ({0})\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputRequiredValidatorErrorMessage\\\\\\\":\\\\\\\"Please enter value\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_RequiredLabel\\\\\\\":\\\\\\\"{0} is required\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_ColumnWidthMenuText\\\\\\\":\\\\\\\"Column width\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_PreferredWidthText\\\\\\\":\\\\\\\"Preferred width\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_IncrementButtonAriaLabel\\\\\\\":\\\\\\\"Increase value by 5\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_DecrementButtonAriaLabel\\\\\\\":\\\\\\\"Decrease value by 5\\\\\\\",\\\\\\\"PowerAppsOneGrid_CommonHeaderCustomization_ClearSorting\\\\\\\":\\\\\\\"Clear sorting\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_TwoOption_SortAsc\\\\\\\":\\\\\\\"Off to on\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_TwoOption_SortDesc\\\\\\\":\\\\\\\"On to off\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_SortGeneric\\\\\\\":\\\\\\\"{0} to {1}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Text_SortAsc\\\\\\\":\\\\\\\"A to Z\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Text_SortDesc\\\\\\\":\\\\\\\"Z to A\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Date_SortAsc\\\\\\\":\\\\\\\"Older to newer\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Date_SortDesc\\\\\\\":\\\\\\\"Newer to older\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Number_SortAsc\\\\\\\":\\\\\\\"Smaller to larger\\\\\\\",\\\\\\\"PowerAppsOneGrid_Sorting_Label_Number_SortDesc\\\\\\\":\\\\\\\"Larger to smaller\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Title\\\\\\\":\\\\\\\"Filter by\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Close_Aria_Label\\\\\\\":\\\\\\\"Close\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Close_Tooltip\\\\\\\":\\\\\\\"Close\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Equal\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Contains\\\\\\\":\\\\\\\"Contains\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Contain\\\\\\\":\\\\\\\"Does not contain\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Begins_With\\\\\\\":\\\\\\\"Begins with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Begins_With\\\\\\\":\\\\\\\"Does not begin with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Ends_With\\\\\\\":\\\\\\\"Ends with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Ends_With\\\\\\\":\\\\\\\"Does not end with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please enter a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Not_Equal\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Greater_Than\\\\\\\":\\\\\\\"Greater than\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Greater_Or_Equal_To\\\\\\\":\\\\\\\"Greater than or equal to\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Less_Than\\\\\\\":\\\\\\\"Less than\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Less_Or_Equal_To\\\\\\\":\\\\\\\"Less than or equal to\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Is_Current_User_Language\\\\\\\":\\\\\\\"Equals current user language\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please enter a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Not_Number\\\\\\\":\\\\\\\"Value must be a valid number\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Not_Whole_Number\\\\\\\":\\\\\\\"Value must be a valid whole number\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Too_Large\\\\\\\":\\\\\\\"Input value is greater than the maximum value allowed for this field ({0})\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Too_Small\\\\\\\":\\\\\\\"Input value is lower than the minimum value allowed for this field ({0})\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Duration_Minutes\\\\\\\":\\\\\\\"minutes\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Value_Missing_Valid_Integer\\\\\\\":\\\\\\\"Value must be a valid integer\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Value_Not_Valid_Integer\\\\\\\":\\\\\\\"Value must be a valid integer\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On\\\\\\\":\\\\\\\"On\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On_Or_After\\\\\\\":\\\\\\\"On or after\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On_Or_Before\\\\\\\":\\\\\\\"On or before\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Today\\\\\\\":\\\\\\\"Today\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Yesterday\\\\\\\":\\\\\\\"Yesterday\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Tomorrow\\\\\\\":\\\\\\\"Tomorrow\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Week\\\\\\\":\\\\\\\"This week\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Month\\\\\\\":\\\\\\\"This month\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Year\\\\\\\":\\\\\\\"This year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Fiscal_Period\\\\\\\":\\\\\\\"This fiscal period\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Fiscal_Year\\\\\\\":\\\\\\\"This fiscal year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Week\\\\\\\":\\\\\\\"Next week\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Month\\\\\\\":\\\\\\\"Next month\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Year\\\\\\\":\\\\\\\"Next year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Period\\\\\\\":\\\\\\\"Next fiscal period\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Year\\\\\\\":\\\\\\\"Next fiscal year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Hours\\\\\\\":\\\\\\\"Next X hours\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Days\\\\\\\":\\\\\\\"Next X days\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Weeks\\\\\\\":\\\\\\\"Next X weeks\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Months\\\\\\\":\\\\\\\"Next X months\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Years\\\\\\\":\\\\\\\"Next X years\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Periods\\\\\\\":\\\\\\\"Next X fiscal periods\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Years\\\\\\\":\\\\\\\"Next X fiscal years\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Week\\\\\\\":\\\\\\\"Last week\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Month\\\\\\\":\\\\\\\"Last month\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Year\\\\\\\":\\\\\\\"Last year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Period\\\\\\\":\\\\\\\"Last fiscal period\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Year\\\\\\\":\\\\\\\"Last fiscal year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Hours\\\\\\\":\\\\\\\"Last X hours\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Days\\\\\\\":\\\\\\\"Last X days\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Weeks\\\\\\\":\\\\\\\"Last X weeks\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Months\\\\\\\":\\\\\\\"Last X months\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Years\\\\\\\":\\\\\\\"Last X years\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Periods\\\\\\\":\\\\\\\"Last X fiscal periods\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Years\\\\\\\":\\\\\\\"Last X fiscal years\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data (any time)\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please enter a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_7_Days\\\\\\\":\\\\\\\"Next 7 days\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_7_days\\\\\\\":\\\\\\\"Last 7 days\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Minutes\\\\\\\":\\\\\\\"Older than X minutes\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Hours\\\\\\\":\\\\\\\"Older than X hours\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Days\\\\\\\":\\\\\\\"Older than X days\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Weeks\\\\\\\":\\\\\\\"Older than X weeks\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Months\\\\\\\":\\\\\\\"Older than X months\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Years\\\\\\\":\\\\\\\"Older than X years\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Year\\\\\\\":\\\\\\\"In fiscal year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Period\\\\\\\":\\\\\\\"In fiscal period\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Period_Year\\\\\\\":\\\\\\\"In fiscal period and year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_After_Fiscal_Period_Year\\\\\\\":\\\\\\\"In or after fiscal period and year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Before_Fiscal_Period_Year\\\\\\\":\\\\\\\"In or before fiscal period and year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Quarter\\\\\\\":\\\\\\\"Quarter {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Fy\\\\\\\":\\\\\\\"FY{0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Today\\\\\\\":\\\\\\\"Go to today\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Month\\\\\\\":\\\\\\\"Previous month\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Month\\\\\\\":\\\\\\\"Next month\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Year\\\\\\\":\\\\\\\"Previous year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Year\\\\\\\":\\\\\\\"Next year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Year_Range\\\\\\\":\\\\\\\"Previous year range\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Year_Range\\\\\\\":\\\\\\\"Next year range\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Close\\\\\\\":\\\\\\\"Close\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Equal\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_No_Value\\\\\\\":\\\\\\\"Please select a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Contains\\\\\\\":\\\\\\\"Contains\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Contains\\\\\\\":\\\\\\\"Does not contain\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Begins_With\\\\\\\":\\\\\\\"Begins with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Begins_With\\\\\\\":\\\\\\\"Does not begin with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Ends_With\\\\\\\":\\\\\\\"Ends with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Ends_With\\\\\\\":\\\\\\\"Does not end with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please select value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Equal\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_No_Value\\\\\\\":\\\\\\\"Please select a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Contains\\\\\\\":\\\\\\\"Contains\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Contains\\\\\\\":\\\\\\\"Does not contain\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Begins_With\\\\\\\":\\\\\\\"Begins with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Begins_With\\\\\\\":\\\\\\\"Does not begin with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Ends_With\\\\\\\":\\\\\\\"Ends with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Ends_With\\\\\\\":\\\\\\\"Does not end with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please select a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Equals\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Contains_Values\\\\\\\":\\\\\\\"Contains values\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Contains_Values\\\\\\\":\\\\\\\"Does not contain values\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please select a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Operator_Selected\\\\\\\":\\\\\\\"Select operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals\\\\\\\":\\\\\\\"Equals\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals\\\\\\\":\\\\\\\"Does not equal\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Contains_Data\\\\\\\":\\\\\\\"Does not contain data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Contains_Data\\\\\\\":\\\\\\\"Contains data\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Contains\\\\\\\":\\\\\\\"Contains\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Contains\\\\\\\":\\\\\\\"Does not contain\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Begins_With\\\\\\\":\\\\\\\"Begins with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Begins_With\\\\\\\":\\\\\\\"Does not begin with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Ends_With\\\\\\\":\\\\\\\"Ends with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Ends_With\\\\\\\":\\\\\\\"Does not end with\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_User\\\\\\\":\\\\\\\"Equals current user\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals_Current_User\\\\\\\":\\\\\\\"Does not equal current user\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_Business_Unit\\\\\\\":\\\\\\\"Equals current business unit\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals_Current_Business_Unit\\\\\\\":\\\\\\\"Does not equal current business unit\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_User_Hierarchy\\\\\\\":\\\\\\\"Equals current user or their reporting hierarchy\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Current_User_Hierarchy_Teams\\\\\\\":\\\\\\\"Equals current user and their teams or their reporting hierarchy and their teams\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_User_Teams\\\\\\\":\\\\\\\"Equals current user's teams\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Users_Teams\\\\\\\":\\\\\\\"Equals current user or user's teams\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Value\\\\\\\":\\\\\\\"Please select a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Missing_Value\\\\\\\":\\\\\\\"Please enter a value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Loading\\\\\\\":\\\\\\\"Loading...\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Filter_By_Value\\\\\\\":\\\\\\\"Filter by value\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Filter_By_Operator\\\\\\\":\\\\\\\"Filter by operator\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Records\\\\\\\":\\\\\\\"No records found\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Submit\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Reset\\\\\\\":\\\\\\\"Clear\\\\\\\",\\\\\\\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Suggestions\\\\\\\":\\\\\\\"Suggestions\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Email\\\\\\\":\\\\\\\"Email\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Phone\\\\\\\":\\\\\\\"Telephone number\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Ticker\\\\\\\":\\\\\\\"Ticker symbol\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Date\\\\\\\":\\\\\\\"Date\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Boolean\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_OptionSet\\\\\\\":\\\\\\\"Option set\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Lookup\\\\\\\":\\\\\\\"Lookup\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Number\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Decimal\\\\\\\":\\\\\\\"Decimal\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_AutoNumber\\\\\\\":\\\\\\\"Number sequence\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Url\\\\\\\":\\\\\\\"URL\\\\\\\",\\\\\\\"PowerAppsOneGrid_DataTypeTooltip_Icon\\\\\\\":\\\\\\\"Image\\\\\\\",\\\\\\\"PowerAppsOneGrid_DateEditor_OpenInstruction\\\\\\\":\\\\\\\"Use Alt+Down to open the date picker\\\\\\\",\\\\\\\"PowerAppsOneGrid_Grouping_GroupBlankValue\\\\\\\":\\\\\\\"blank\\\\\\\",\\\\\\\"PowerAppsOneGrid_Grouping_GroupWeekValue\\\\\\\":\\\\\\\"Week\\\\\\\",\\\\\\\"PowerAppsOneGrid_Grouping_GroupQuarterValue\\\\\\\":\\\\\\\"Q\\\\\\\",\\\\\\\"PowerAppsOneGrid_Grouping_GroupFiscalYearValue\\\\\\\":\\\\\\\"FY\\\\\\\",\\\\\\\"PowerAppsOneGrid_LookupEditor_RemoveButtonAriaLabel\\\\\\\":\\\\\\\"Remove\\\\\\\",\\\\\\\"PowerAppsOneGrid_LookupEditor_NoResultsFound\\\\\\\":\\\\\\\"No records found\\\\\\\",\\\\\\\"PowerAppsOneGrid_LookupEditor_SuggestionsAriaLabel\\\\\\\":\\\\\\\"Possible values\\\\\\\",\\\\\\\"PowerAppsOneGrid_OptionSetEditor_NoneOption\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"PowerAppsOneGrid_OptionSetEditor_SelectOption\\\\\\\":\\\\\\\"Select option\\\\\\\",\\\\\\\"PowerAppsOneGrid_ImageRenderer_DefaultIcon\\\\\\\":\\\\\\\"Default icon\\\\\\\",\\\\\\\"PowerAppsOneGrid_HierarchyIconRenderer_IconTooltip\\\\\\\":\\\\\\\"Has hierarchy\\\\\\\",\\\\\\\"PowerAppsOneGrid_PlaceholderIconRenderer_IconTooltip\\\\\\\":\\\\\\\"Go to record\\\\\\\",\\\\\\\"PowerAppsOneGrid_IconRenderer_IconReadOnlyTooltip\\\\\\\":\\\\\\\"This cell is not editable\\\\\\\",\\\\\\\"PowerAppsOneGrid_PhoneRenderer_EmptyNumber\\\\\\\":\\\\\\\"Empty phone number\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionEditor_OnValue\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionEditor_OffValue\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionEditor_NullValue\\\\\\\":\\\\\\\"Unset\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionRenderer_NullValue\\\\\\\":\\\\\\\"Unset\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionRenderer_OnValue\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_TwoOptionRenderer_OffValue\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_FileRenderer_IconAriaLabel\\\\\\\":\\\\\\\"file\\\\\\\",\\\\\\\"PowerAppsOneGrid_FileRenderer_NoFileFound\\\\\\\":\\\\\\\"No file attached\\\\\\\",\\\\\\\"PowerAppsOneGrid_No_Data\\\\\\\":\\\\\\\"No data available\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_SelectCommand_Label\\\\\\\":\\\\\\\"Select\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_SelectAllCommand_Label\\\\\\\":\\\\\\\"Select all\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_MoreCommands_Label\\\\\\\":\\\\\\\"More commands\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_CancelSelection_Label\\\\\\\":\\\\\\\"Cancel selection\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_First_Page_Label\\\\\\\":\\\\\\\"Load first page\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Next_Page_Label\\\\\\\":\\\\\\\"Next page\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Page_Label\\\\\\\":\\\\\\\"Page {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Prev_Page_Label\\\\\\\":\\\\\\\"Previous page\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Records_Label\\\\\\\":\\\\\\\"{0} - {1} of {2}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Records_Range_Label\\\\\\\":\\\\\\\"{0} - {1}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Row_Count\\\\\\\":\\\\\\\"Rows: {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Selected_Label\\\\\\\":\\\\\\\"Selected: {0}\\\\\\\",\\\\\\\"PowerAppsOneGrid_Paging_Total_Records_Label\\\\\\\":\\\\\\\"{0} of {1}\\\\\\\",\\\\\\\"PowerAppsOneGrid_ErrorBoundaryFallback_ComponentStack_Header\\\\\\\":\\\\\\\"Component Stack\\\\\\\",\\\\\\\"PowerAppsOneGrid_ErrorBoundaryFallback_Message_Header\\\\\\\":\\\\\\\"Error Message\\\\\\\",\\\\\\\"PowerAppsOneGrid_ErrorBoundaryFallback_StackTrace_Header\\\\\\\":\\\\\\\"Stack Trace\\\\\\\",\\\\\\\"PowerAppsOneGrid_ErrorBoundaryFallback_UnknownError_Message\\\\\\\":\\\\\\\"An unknown error has occurred.\\\\\\\",\\\\\\\"PowerAppsOneGrid_NoAccessCell_Details\\\\\\\":\\\\\\\"You do not have permission to access this content. Contact your administrator for access.\\\\\\\",\\\\\\\"PowerAppsOneGrid_NoAccessCell_Label\\\\\\\":\\\\\\\"Access denied\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Name\\\\\\\":\\\\\\\"Show row status icons\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Desc\\\\\\\":\\\\\\\"Show or hide status icons for the rows\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Enable_Desc\\\\\\\":\\\\\\\"Show status icons for the row\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableStatusIcons_Disable_Desc\\\\\\\":\\\\\\\"Disable row status icons for the rows\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Name\\\\\\\":\\\\\\\"Show data type icons\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Desc\\\\\\\":\\\\\\\"Show or hide data type icons in the column headers\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Enable_Name\\\\\\\":\\\\\\\"Yes\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Enable_Desc\\\\\\\":\\\\\\\"Show icons in the column headers\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Disable_Name\\\\\\\":\\\\\\\"No\\\\\\\",\\\\\\\"PowerAppsOneGrid_EnableTypeIcons_Disable_Desc\\\\\\\":\\\\\\\"Disable header data type icons in the grid\\\\\\\",\\\\\\\"PowerAppsOneGrid_Header_Org_Icon_Tooltip\\\\\\\":\\\\\\\"Hierarchy\\\\\\\",\\\\\\\"PowerAppsOneGrid_Header_Placeholder_Icon_Tooltip\\\\\\\":\\\\\\\"Navigate\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Average\\\\\\\":\\\\\\\"Average\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Count\\\\\\\":\\\\\\\"Count\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Maximum\\\\\\\":\\\\\\\"Maximum\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Minimum\\\\\\\":\\\\\\\"Minimum\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Sum\\\\\\\":\\\\\\\"Sum\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_ViewTotals\\\\\\\":\\\\\\\"Totals\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_Day\\\\\\\":\\\\\\\"Day\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_FiscalPeriod\\\\\\\":\\\\\\\"Fiscal period\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_FiscalYear\\\\\\\":\\\\\\\"Fiscal year\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_Month\\\\\\\":\\\\\\\"Month\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_Quarter\\\\\\\":\\\\\\\"Quarter\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_Week\\\\\\\":\\\\\\\"Week\\\\\\\",\\\\\\\"PowerAppsOneGrid_HeaderMenu_Group_Year\\\\\\\":\\\\\\\"Year\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_Offline\\\\\\\":\\\\\\\"Offline\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_Available\\\\\\\":\\\\\\\"Available\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_Away\\\\\\\":\\\\\\\"Away\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_DnD\\\\\\\":\\\\\\\"Do Not Disturb\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_Blocked\\\\\\\":\\\\\\\"Blocked\\\\\\\",\\\\\\\"PowerAppsOneGrid_Persona_Presence_Busy\\\\\\\":\\\\\\\"Busy\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"No_Data_Text\\\\\\\":\\\\\\\"No data text\\\\\\\",\\\\\\\"No_Data_Text_Desc\\\\\\\":\\\\\\\"The message that the user sees when there are no records to show in the Table control.\\\\\\\",\\\\\\\"Font_Size\\\\\\\":\\\\\\\"Font size\\\\\\\",\\\\\\\"Font_Size_description\\\\\\\":\\\\\\\"The default font size for all displayed text\\\\\\\",\\\\\\\"Header_Font_Size\\\\\\\":\\\\\\\"Header font size\\\\\\\",\\\\\\\"Header_Font_Size_description\\\\\\\":\\\\\\\"The font size for the column headers\\\\\\\",\\\\\\\"Font_Weight\\\\\\\":\\\\\\\"Font weight\\\\\\\",\\\\\\\"Font_Weight_description\\\\\\\":\\\\\\\"The weight of the text.\\\\\\\",\\\\\\\"Header_Font_Weight\\\\\\\":\\\\\\\"Header font weight\\\\\\\",\\\\\\\"Header_Font_Weight_description\\\\\\\":\\\\\\\"The weight of the column header text.\\\\\\\",\\\\\\\"Font\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Font_description\\\\\\\":\\\\\\\"The name of the font family for the text.\\\\\\\",\\\\\\\"Header_Font\\\\\\\":\\\\\\\"Header font\\\\\\\",\\\\\\\"Header_Font_description\\\\\\\":\\\\\\\"The name of the font family for the header text.\\\\\\\",\\\\\\\"Font_Color\\\\\\\":\\\\\\\"Font color\\\\\\\",\\\\\\\"Font_Color_description\\\\\\\":\\\\\\\"The color of the text.\\\\\\\",\\\\\\\"Header_Font_Color\\\\\\\":\\\\\\\"Header font color\\\\\\\",\\\\\\\"Header_Font_Color_description\\\\\\\":\\\\\\\"The color of the column header text.\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_Sort_Button\\\\\\\":\\\\\\\"Sort\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_Sort_Menu_Sort_By\\\\\\\":\\\\\\\"Sort by\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_Sort_Menu_Sort_Order\\\\\\\":\\\\\\\"Sort order\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_Sort_Menu_Apply_Button\\\\\\\":\\\\\\\"Apply\\\\\\\",\\\\\\\"PowerAppsOneGrid_List_Sort_Menu_Cancel_Button\\\\\\\":\\\\\\\"Cancel\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnWidth_Name\\\\\\\":\\\\\\\"Width\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnWidth_Desc\\\\\\\":\\\\\\\"The width of the column.\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnVisibility_Name\\\\\\\":\\\\\\\"Visible\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnVisibility_Desc\\\\\\\":\\\\\\\"Whether the column is shown.\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnHeaderText_Name\\\\\\\":\\\\\\\"Header Text\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnHeaderText_Desc\\\\\\\":\\\\\\\"Overrides the field display name for the column header when provided.\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnGrow_Name\\\\\\\":\\\\\\\"Can grow\\\\\\\",\\\\\\\"PowerAppsOneGrid_ColumnGrow_Desc\\\\\\\":\\\\\\\"Whether the column width can grow to fill space as needed.\\\\\\\",\\\\\\\"Date_Time_Format\\\\\\\":\\\\\\\"Date time format\\\\\\\",\\\\\\\"Date_Time_Format_description\\\\\\\":\\\\\\\"The format we want for date time columns.\\\\\\\",\\\\\\\"PowerAppsOneGrid_Format_LongDate\\\\\\\":\\\\\\\"Long date\\\\\\\",\\\\\\\"PowerAppsOneGrid_Format_ShortDate\\\\\\\":\\\\\\\"Short date\\\\\\\",\\\\\\\"PowerAppsOneGrid_Format_ShortDateTime\\\\\\\":\\\\\\\"Short date time\\\\\\\",\\\\\\\"PowerAppsOneGrid_Format_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"Date_Only_Format\\\\\\\":\\\\\\\"Date only format\\\\\\\",\\\\\\\"Date_Only_Format_description\\\\\\\":\\\\\\\"The format we want for date only columns.\\\\\\\",\\\\\\\"PowerAppsOneGrid_DateOnly_Format_LongDate\\\\\\\":\\\\\\\"Long date\\\\\\\",\\\\\\\"PowerAppsOneGrid_DateOnly_Format_ShortDate\\\\\\\":\\\\\\\"Short date\\\\\\\",\\\\\\\"PowerAppsOneGrid_DateOnly_Format_None\\\\\\\":\\\\\\\"None\\\\\\\"}}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fluentui-react.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessible label\\\",\\\"Description\\\":\\\"Label read out by screen readers.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_AccessibleLabel_Display_Key\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_AccessibleLabel_Desc_Key\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableEditing\\\",\\\"DisplayName\\\":\\\"Enable editing\\\",\\\"Description\\\":\\\"Enable or disable editing in the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Yes\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable editing in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"No\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable editing in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableEditing_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableEditing_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisableChildItemsEditing\\\",\\\"DisplayName\\\":\\\"Disable editing in child items grid\\\",\\\"Description\\\":\\\"Disable editing in the child items grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Yes\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Disable editing in the child items grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"No\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Allow editing in the child items grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_DisableChildItemsEditing_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_DisableChildItemsEditing_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableFiltering\\\",\\\"DisplayName\\\":\\\"Enable filtering\\\",\\\"Description\\\":\\\"Enable or disable filtering in the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable filtering in grid control\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable filtering in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableFiltering_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableFiltering_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableSorting\\\",\\\"DisplayName\\\":\\\"Enable sorting\\\",\\\"Description\\\":\\\"Enable or disable sorting in the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable sorting in grid control\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable sorting in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableSorting_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableSorting_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableGrouping\\\",\\\"DisplayName\\\":\\\"Enable grouping\\\",\\\"Description\\\":\\\"Enable or disable grouping in the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable grouping in grid control\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable grouping in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableGrouping_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableGrouping_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableAggregation\\\",\\\"DisplayName\\\":\\\"Enable aggregation\\\",\\\"Description\\\":\\\"Enable or disable aggregation in the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable aggregation in grid control\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable aggregation in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableAggregation_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableAggregation_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableColumnMoving\\\",\\\"DisplayName\\\":\\\"Allow column reordering (preview)\\\",\\\"Description\\\":\\\"Allow column reordering\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Columns can be reordered\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Columns cannot be reordered\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableColumnMoving_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableColumnMoving_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableMultipleSelection\\\",\\\"DisplayName\\\":\\\"Enable multi-select\\\",\\\"Description\\\":\\\"Determines whether users can select multiple rows\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable multiple row selection in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable multiple row selection in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableMultipleSelection_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableMultipleSelection_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableRangeSelection\\\",\\\"DisplayName\\\":\\\"Allow range selection\\\",\\\"Description\\\":\\\"Determines whether users can select a subset of the grid to copy to the clipboard\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable range selection in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable range selection in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableRangeSelection_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableRangeSelection_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableJumpBar\\\",\\\"DisplayName\\\":\\\"Enable jump bar\\\",\\\"Description\\\":\\\"Enable or disable the jump bar footer panel\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable the jump bar footer panel for the grid control.\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Auto\\\",\\\"DisplayName\\\":\\\"Auto\\\",\\\"Description\\\":\\\"Show or hide the jump bar automatically for the grid control.\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"auto\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable the jump bar footer panel for the grid control.\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableJumpBar_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableJumpBar_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnablePagination\\\",\\\"DisplayName\\\":\\\"Enable pagination\\\",\\\"Description\\\":\\\"Enable or disable paging for grid. This will disable infinite scrolling.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable pagination for the grid control. This will disable infinite scrolling.\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable pagination for the grid control. This will enable infinite scrolling.\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnablePagination_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnablePagination_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableDropdownColor\\\",\\\"DisplayName\\\":\\\"Enable OptionSet colors\\\",\\\"Description\\\":\\\"Enable or disable custom colors for OptionSet cells of the grid control.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable custom colors for OptionSet cells within the grid control.\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable custom colors for OptionSet cells within the grid control. It will use default colors provided by the grid.\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableDropdownColor_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableDropdownColor_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableStatusIcons\\\",\\\"DisplayName\\\":\\\"Show row status icons\\\",\\\"Description\\\":\\\"Show or hide status icons for the rows\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Show status icons for the row\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable row status icons for the rows\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableStatusIcons_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableStatusIcons_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableTypeIcons\\\",\\\"DisplayName\\\":\\\"Show data type icons\\\",\\\"Description\\\":\\\"Show or hide data type icons in the column headers\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"no\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"no\\\",\\\"WebDefaultValue\\\":\\\"no\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Show icons in the column headers\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable header data type icons in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableTypeIcons_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableTypeIcons_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"NavigationTypesAllowed\\\",\\\"DisplayName\\\":\\\"Navigation types allowed\\\",\\\"Description\\\":\\\"Configure what navigation types are allowed within the grid\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"none\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"none\\\",\\\"WebDefaultValue\\\":\\\"none\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"All\\\",\\\"DisplayName\\\":\\\"All\\\",\\\"Description\\\":\\\"Allows navigation on primary and lookup columns\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"all\\\"},{\\\"Name\\\":\\\"PrimaryOnly\\\",\\\"DisplayName\\\":\\\"Primary only\\\",\\\"Description\\\":\\\"Only allows navigation on the primary column for the entity\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"primaryOnly\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"Does not allow any entity record navigation\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"none\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_NavigationTypesAllowed_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_NavigationTypesAllowed_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ReflowBehavior\\\",\\\"DisplayName\\\":\\\"Reflow behavior\\\",\\\"Description\\\":\\\"Define how the grid will reflow (switch display mode) based on its width\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Reflow\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Reflow\\\",\\\"WebDefaultValue\\\":\\\"Reflow\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Reflow\\\",\\\"DisplayName\\\":\\\"Reflow\\\",\\\"Description\\\":\\\"Allow grid to switch display mode based on its width\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Reflow\\\"},{\\\"Name\\\":\\\"GridOnly\\\",\\\"DisplayName\\\":\\\"Grid only\\\",\\\"Description\\\":\\\"Always display as a grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"GridOnly\\\"},{\\\"Name\\\":\\\"ListOnly\\\",\\\"DisplayName\\\":\\\"List only\\\",\\\"Description\\\":\\\"Always display as a list\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"ListOnly\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_ReflowBehavior_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_ReflowBehavior_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ShowAvatar\\\",\\\"DisplayName\\\":\\\"Show avatar\\\",\\\"Description\\\":\\\"Show or hide avatars in the table\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Show avatars in the table\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Hide avatars in the table\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_ShowAvatar_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_ShowAvatar_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ShowFooter\\\",\\\"DisplayName\\\":\\\"Show footer\\\",\\\"Description\\\":\\\"Show or hide footer in the table\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable footer in the table\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable footer in the table\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_ShowFooter_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_ShowFooter_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ShowColumnHeaders\\\",\\\"DisplayName\\\":\\\"Show column headers\\\",\\\"Description\\\":\\\"Show or hide column headers in the table\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Show column headers in the table\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Hide column headers in the table\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_ShowColumnHeaders_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_ShowColumnHeaders_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"GridCustomizerControlFullName\\\",\\\"DisplayName\\\":\\\"Customizer control\\\",\\\"Description\\\":\\\"Full logical name of the control (__) that provides custom cell renders and/or editors for the Power Apps grid control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_GridCustomizerControlFullName_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_GridCustomizerControlFullName_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"GridActions\\\",\\\"DisplayName\\\":\\\"Grid Actions\\\",\\\"Description\\\":\\\"Grid Actions\\\",\\\"Type\\\":5,\\\"Usage\\\":1,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_GridActions_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_GridActions_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BasePaletteColor\\\",\\\"DisplayName\\\":\\\"Color palette\\\",\\\"Description\\\":\\\"Choose a color palette that's different from the theme.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Base_Palette_Color\\\",\\\"DescriptionResourceString\\\":\\\"Base_Palette_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"Font\\\",\\\"DisplayName\\\":\\\"Font\\\",\\\"Description\\\":\\\"The name of the font family for the text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font\\\",\\\"DescriptionResourceString\\\":\\\"Font_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontColor\\\",\\\"DisplayName\\\":\\\"Font color\\\",\\\"Description\\\":\\\"The color of the text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Color\\\",\\\"DescriptionResourceString\\\":\\\"Font_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontSize\\\",\\\"DisplayName\\\":\\\"Font size\\\",\\\"Description\\\":\\\"The default font size for all displayed text\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Size\\\",\\\"DescriptionResourceString\\\":\\\"Font_Size_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontWeight\\\",\\\"DisplayName\\\":\\\"Font weight\\\",\\\"Description\\\":\\\"The weight of the text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Weight\\\",\\\"DescriptionResourceString\\\":\\\"Font_Weight_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"HeaderFont\\\",\\\"DisplayName\\\":\\\"Header font\\\",\\\"Description\\\":\\\"The name of the font family for the header text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Header_Font\\\",\\\"DescriptionResourceString\\\":\\\"Header_Font_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"HeaderFontColor\\\",\\\"DisplayName\\\":\\\"Header font color\\\",\\\"Description\\\":\\\"The color of the column header text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Header_Font_Color\\\",\\\"DescriptionResourceString\\\":\\\"Header_Font_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"HeaderFontSize\\\",\\\"DisplayName\\\":\\\"Header font size\\\",\\\"Description\\\":\\\"The font size for the column headers\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Header_Font_Size\\\",\\\"DescriptionResourceString\\\":\\\"Header_Font_Size_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"HeaderFontWeight\\\",\\\"DisplayName\\\":\\\"Header font weight\\\",\\\"Description\\\":\\\"The weight of the column header text.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Header_Font_Weight\\\",\\\"DescriptionResourceString\\\":\\\"Header_Font_Weight_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"NoDataText\\\",\\\"DisplayName\\\":\\\"No data text\\\",\\\"Description\\\":\\\"The message that the user sees when there are no records to show in the Table control.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"No_Data_Text\\\",\\\"DescriptionResourceString\\\":\\\"No_Data_Text_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"TabIndex\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DateTimeFormat\\\",\\\"DisplayName\\\":\\\"Date time format\\\",\\\"Description\\\":\\\"The format we want for date time columns.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"none\\\",\\\"PfxDefaultValue\\\":\\\"'PowerAppsOneGrid.DateTimeFormat'.ShortDateTime\\\",\\\"PhoneDefaultValue\\\":\\\"ShortDateTime\\\",\\\"WebDefaultValue\\\":\\\"ShortDateTime\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"LongDate\\\",\\\"DisplayName\\\":\\\"Long date\\\",\\\"Description\\\":\\\"Long date\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"longDate\\\"},{\\\"Name\\\":\\\"ShortDate\\\",\\\"DisplayName\\\":\\\"Short date\\\",\\\"Description\\\":\\\"Short date\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"shortDate\\\"},{\\\"Name\\\":\\\"ShortDateTime\\\",\\\"DisplayName\\\":\\\"Short date time\\\",\\\"Description\\\":\\\"Short date time\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"shortDateTime\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"None\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"none\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Date_Time_Format\\\",\\\"DescriptionResourceString\\\":\\\"Date_Time_Format_description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DateOnlyFormat\\\",\\\"DisplayName\\\":\\\"Date only format\\\",\\\"Description\\\":\\\"The format we want for date only columns.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"none\\\",\\\"PfxDefaultValue\\\":\\\"'PowerAppsOneGrid.DateOnlyFormat'.ShortDate\\\",\\\"PhoneDefaultValue\\\":\\\"ShortDate\\\",\\\"WebDefaultValue\\\":\\\"ShortDate\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"LongDate\\\",\\\"DisplayName\\\":\\\"Long date\\\",\\\"Description\\\":\\\"Long date\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"longDate\\\"},{\\\"Name\\\":\\\"ShortDate\\\",\\\"DisplayName\\\":\\\"Short date\\\",\\\"Description\\\":\\\"Short date\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"shortDate\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"None\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"none\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Date_Only_Format\\\",\\\"DescriptionResourceString\\\":\\\"Date_Only_Format_description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"EnableStatusColumn\\\",\\\"DisplayName\\\":\\\"(Deprecated) Enable status column\\\",\\\"Description\\\":\\\"Determines whether user can hide status column. This is deprecated, please use the allow multiple selection property instead.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"yes\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"yes\\\",\\\"WebDefaultValue\\\":\\\"yes\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"Yes\\\",\\\"Description\\\":\\\"Enable status column in the grid\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"No\\\",\\\"Description\\\":\\\"Disable status column in the grid\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PowerAppsOneGrid_EnableStatusColumn_Name\\\",\\\"DescriptionResourceString\\\":\\\"PowerAppsOneGrid_EnableStatusColumn_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisableStatusColumn\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisableStatusColumnSavingIcons\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Enable\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"yes\\\"},{\\\"Name\\\":\\\"Disable\\\",\\\"DisplayName\\\":\\\"\\\",\\\"Description\\\":\\\"\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"no\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Items_FieldProperties\\\",\\\"DisplayName\\\":\\\"Items_FieldProperties\\\",\\\"Description\\\":\\\"Items_FieldProperties\\\",\\\"Type\\\":5,\\\"Usage\\\":2,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Items_FieldProperties\\\",\\\"DescriptionResourceString\\\":\\\"Items_FieldProperties\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Items\\\",\\\"DisplayName\\\":\\\"Items(##PCFDatasetItems##)\\\",\\\"Description\\\":\\\"Items to use for the grid data\\\",\\\"Type\\\":26,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":true,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Selected\\\",\\\"DisplayName\\\":\\\"Items(##PCFDatasetSelected##)\\\",\\\"Description\\\":\\\"Items to use for the grid data\\\",\\\"Type\\\":5,\\\"Usage\\\":1,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":true,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"Items\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"SelectedItems\\\",\\\"DisplayName\\\":\\\"Items(##PCFDatasetSelectedItems##)\\\",\\\"Description\\\":\\\"Items to use for the grid data\\\",\\\"Type\\\":26,\\\"Usage\\\":1,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":true,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"Items\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ChildItems_Items\\\",\\\"DisplayName\\\":\\\"Child items(##PCFDatasetItems##)\\\",\\\"Description\\\":\\\"Items to use for the child grid data\\\",\\\"Type\\\":26,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Child items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the child grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ChildItems_Selected\\\",\\\"DisplayName\\\":\\\"Child items(##PCFDatasetSelected##)\\\",\\\"Description\\\":\\\"Items to use for the child grid data\\\",\\\"Type\\\":5,\\\"Usage\\\":1,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"ChildItems_Items\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Child items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the child grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ChildItems_SelectedItems\\\",\\\"DisplayName\\\":\\\"Child items(##PCFDatasetSelectedItems##)\\\",\\\"Description\\\":\\\"Items to use for the child grid data\\\",\\\"Type\\\":26,\\\"Usage\\\":1,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"ChildItems_Items\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Child items\\\",\\\"DescriptionResourceString\\\":\\\"Items to use for the child grid data\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ParentId\\\",\\\"DisplayName\\\":\\\"Child Items Parent Id\\\",\\\"Description\\\":\\\"Parent id to use for child items\\\",\\\"Type\\\":3,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"ChildItems_Items\\\",\\\"DisplayNameResourceString\\\":\\\"ChildItems_ParentId_Name\\\",\\\"DescriptionResourceString\\\":\\\"ChildItems_ParentId_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PCFTeamsTheme\\\",\\\"DisplayName\\\":\\\"PCFTeamsTheme\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":3,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"IncludedProperties\":\"[{\\\"Name\\\":\\\"X\\\",\\\"DisplayName\\\":\\\"CC_X\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_X\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Y\\\",\\\"DisplayName\\\":\\\"CC_Y\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_Y\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Width\\\",\\\"DisplayName\\\":\\\"Width\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"800\\\",\\\"PfxDefaultValue\\\":\\\"If(Self.X + 800 > Parent.Width, Parent.Width - Self.X, 800)\\\",\\\"PhoneDefaultValue\\\":\\\"800\\\",\\\"WebDefaultValue\\\":\\\"800\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Width\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Height\\\",\\\"DisplayName\\\":\\\"Height\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"500\\\",\\\"PfxDefaultValue\\\":\\\"If(Self.Y + 500 > Parent.Height, Parent.Height - Self.Y, 500)\\\",\\\"PhoneDefaultValue\\\":\\\"500\\\",\\\"WebDefaultValue\\\":\\\"500\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Height\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Visible\\\",\\\"DisplayName\\\":\\\"Visible\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":4,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Visible\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisplayMode\\\",\\\"DisplayName\\\":\\\"DisplayMode\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":27,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"DisplayMode\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Tooltip\\\",\\\"DisplayName\\\":\\\"Tooltip\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":3,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Tooltip\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"Events\":\"[{\\\"Name\\\":\\\"onCellValueChange\\\",\\\"DisplayName\\\":\\\"Cell value changed event\\\",\\\"Description\\\":\\\"Event fired when a cell value is changed\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":true,\\\"IsPrimaryInput\\\":false},{\\\"Name\\\":\\\"onFilter\\\",\\\"DisplayName\\\":\\\"Filter changed event\\\",\\\"Description\\\":\\\"Event fired when a filter is changed\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":true,\\\"IsPrimaryInput\\\":false},{\\\"Name\\\":\\\"onNavigate\\\",\\\"DisplayName\\\":\\\"Cell navigation event\\\",\\\"Description\\\":\\\"Event fired when a cell link is executed\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":true,\\\"IsPrimaryInput\\\":false},{\\\"Name\\\":\\\"onRowSelect\\\",\\\"DisplayName\\\":\\\"Row select changed event\\\",\\\"Description\\\":\\\"Event fired when a row selection state is changed\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":true,\\\"IsPrimaryInput\\\":false},{\\\"Name\\\":\\\"onSave\\\",\\\"DisplayName\\\":\\\"Grid save event\\\",\\\"Description\\\":\\\"Event fired when a save finished\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":true,\\\"IsPrimaryInput\\\":false},{\\\"Name\\\":\\\"OnSelect\\\",\\\"DisplayName\\\":\\\"Row select changed event\\\",\\\"Description\\\":\\\"Event fired when a row selection state is changed\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":false}]\",\"PropertyDependencies\":\"[{\\\"Input\\\":\\\"Items\\\",\\\"Output\\\":\\\"Selected\\\",\\\"RequiredFor\\\":\\\"\\\"},{\\\"Input\\\":\\\"Items\\\",\\\"Output\\\":\\\"SelectedItems\\\",\\\"RequiredFor\\\":\\\"\\\"},{\\\"Input\\\":\\\"ChildItems_Items\\\",\\\"Output\\\":\\\"ChildItems_Selected\\\",\\\"RequiredFor\\\":\\\"\\\"},{\\\"Input\\\":\\\"ChildItems_Items\\\",\\\"Output\\\":\\\"ChildItems_SelectedItems\\\",\\\"RequiredFor\\\":\\\"\\\"}]\",\"AuthConfigProperties\":\"[{\\\"Items\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":true},\\\"NoDataText\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Visible\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DateTimeFormat\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DateOnlyFormat\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"ReflowBehavior\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"EnableSorting\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"EnableRangeSelection\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"EnableMultipleSelection\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"X\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Y\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Width\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Height\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"HeaderFont\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":33,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"HeaderFontSize\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"HeaderFontColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":31,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"HeaderFontWeight\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":34,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Font\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":33,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontSize\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":31,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontWeight\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":34,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false}}]\"}",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerAppsOneGrid",
+ "IsComponentDefinition": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPremiumPcfControl": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerAppsOneGrid",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Table",
+ "Version": "1.0.242"
+ },
+ "TextCanvas1": {
+ "CustomGroupControlTemplateName": "",
+ "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"TextCanvas\",\"DisplayNameKey\":\"TextCanvas\",\"Resources\":\"[{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/prop-types.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":1,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/react-fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":2,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":3,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fela-dom.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":4,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/common/js/container.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":6,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":7,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestTemplate\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"ConstructorName\\\\\\\":\\\\\\\"PowerApps.CoreControls.TextCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.TextCanvas\\\\\\\",\\\\\\\"IsVirtual\\\\\\\":true,\\\\\\\"Properties\\\\\\\":{\\\\\\\"Resources\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/prop-types.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":1,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/react-fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":2,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":3,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/PCF/fela-dom.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":4,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/common/js/container.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":5,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PCFControls/js/PCFControlWrapper.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":6,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null},{\\\\\\\"Name\\\\\\\":\\\\\\\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\\\\\\\",\\\\\\\"LoadOrder\\\\\\\":7,\\\\\\\"Type\\\\\\\":0,\\\\\\\"LibraryName\\\\\\\":null}],\\\\\\\"GroupDefinitions\\\\\\\":null,\\\\\\\"DataSetDefinitions\\\\\\\":{},\\\\\\\"Properties\\\\\\\":{\\\\\\\"Text\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Text\\\\\\\"},\\\\\\\"Size\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"14\\\\\\\"},\\\\\\\"Weight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Regular\\\\\\\"},\\\\\\\"Align\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Start\\\\\\\"},\\\\\\\"VerticalAlign\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Middle\\\\\\\"},\\\\\\\"AutoHeight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"Height\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"32\\\\\\\"},\\\\\\\"Font\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"FontItalic\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontStrikethrough\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"FontUnderline\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"Wrap\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"true\\\\\\\"},\\\\\\\"Fill\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderThickness\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadius\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusTopLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusTopRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusBottomRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadiusBottomLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingTop\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingRight\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingBottom\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"PaddingLeft\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":[{\\\\\\\"IsRequired\\\\\\\":true,\\\\\\\"Name\\\\\\\":\\\\\\\"ExplicitCommonEvents\\\\\\\"}]},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":null,\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Size\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Weight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AutoHeight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Height\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FontColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontItalic\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Italics\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontStrikethrough\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"FontUnderline\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Wrap\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"ColorPalette\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderStyle\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"BorderStyle\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderThickness\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Color\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadius\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusTopLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusTopRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusBottomRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"BorderRadiusBottomLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingTop\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingRight\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingBottom\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PaddingLeft\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"TabIndex\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Tooltip\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"PCFTeamsTheme\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"String\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"X\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Y\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Width\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Number\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"Visible\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true},{\\\\\\\"Name\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"DisplayMode\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":true}]}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":9,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"PowerAppsControlInfo\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"TemplateVersion\\\\\\\":1,\\\\\\\"Version\\\\\\\":\\\\\\\"0.0.47\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/TextCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"TextCanvas\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"TextCanvas_Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"TextCanvas_Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextCanvas_Align_Start\\\\\\\":\\\\\\\"Start\\\\\\\",\\\\\\\"TextCanvas_Align_End\\\\\\\":\\\\\\\"End\\\\\\\",\\\\\\\"TextCanvas_Align_Center\\\\\\\":\\\\\\\"Center\\\\\\\",\\\\\\\"TextCanvas_Align_Justify\\\\\\\":\\\\\\\"Justify\\\\\\\",\\\\\\\"TextCanvas_AutoHeight\\\\\\\":\\\\\\\"Auto height\\\\\\\",\\\\\\\"TextCanvas_AutoHeight_Desc\\\\\\\":\\\\\\\"Container height will adjust to text content.\\\\\\\",\\\\\\\"TextCanvas_Desc\\\\\\\":\\\\\\\"Display text\\\\\\\",\\\\\\\"TextCanvas_Height\\\\\\\":\\\\\\\"Text height\\\\\\\",\\\\\\\"TextCanvas_Height_Desc\\\\\\\":\\\\\\\"The height of the control.\\\\\\\",\\\\\\\"TextCanvas_Italic\\\\\\\":\\\\\\\"Italic\\\\\\\",\\\\\\\"TextCanvas_Italic_Desc\\\\\\\":\\\\\\\"Display text using the italic font style.\\\\\\\",\\\\\\\"TextCanvas_Size\\\\\\\":\\\\\\\"Font size\\\\\\\",\\\\\\\"TextCanvas_Size_Desc\\\\\\\":\\\\\\\"Display text using the selected font sizes.\\\\\\\",\\\\\\\"TextCanvas_Strikethrough\\\\\\\":\\\\\\\"Strikethrough\\\\\\\",\\\\\\\"TextCanvas_Strikethrough_Desc\\\\\\\":\\\\\\\"Display text using the strikethrough font style.\\\\\\\",\\\\\\\"TextCanvas_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"TextCanvas_Text_Desc\\\\\\\":\\\\\\\"Text that appears on a control.\\\\\\\",\\\\\\\"TextCanvas_Underline\\\\\\\":\\\\\\\"Underline\\\\\\\",\\\\\\\"TextCanvas_Underline_Desc\\\\\\\":\\\\\\\"Display text using the underline font style.\\\\\\\",\\\\\\\"TextCanvas_VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"TextCanvas_VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text vertical alignment.\\\\\\\",\\\\\\\"TextCanvas_VerticalAlign_Top\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"TextCanvas_VerticalAlign_Middle\\\\\\\":\\\\\\\"Middle\\\\\\\",\\\\\\\"TextCanvas_VerticalAlign_Bottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"TextCanvas_Weight\\\\\\\":\\\\\\\"Font weight\\\\\\\",\\\\\\\"TextCanvas_Weight_Desc\\\\\\\":\\\\\\\"Display text using the selected font weights.\\\\\\\",\\\\\\\"TextCanvas_Weight_Medium\\\\\\\":\\\\\\\"Medium\\\\\\\",\\\\\\\"TextCanvas_Weight_Regular\\\\\\\":\\\\\\\"Regular\\\\\\\",\\\\\\\"TextCanvas_Weight_Semibold\\\\\\\":\\\\\\\"Semibold\\\\\\\",\\\\\\\"TextCanvas_Weight_Bold\\\\\\\":\\\\\\\"Bold\\\\\\\",\\\\\\\"TextCanvas_Wrap\\\\\\\":\\\\\\\"Wrap\\\\\\\",\\\\\\\"TextCanvas_Wrap_Desc\\\\\\\":\\\\\\\"Display overflow text as wrapped.\\\\\\\",\\\\\\\"Font\\\\\\\":\\\\\\\"Font\\\\\\\",\\\\\\\"Font_description\\\\\\\":\\\\\\\"The name of the family of fonts in which text appears\\\\\\\",\\\\\\\"Font_Color\\\\\\\":\\\\\\\"Font color\\\\\\\",\\\\\\\"Font_Color_description\\\\\\\":\\\\\\\"The color of text in the control\\\\\\\",\\\\\\\"Fill\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Fill_Description\\\\\\\":\\\\\\\"Background color fo the control.\\\\\\\",\\\\\\\"BorderStyle\\\\\\\":\\\\\\\"Border style\\\\\\\",\\\\\\\"BorderStyle_Description\\\\\\\":\\\\\\\"Style of borders around the control\\\\\\\",\\\\\\\"BorderStyle_Dashed\\\\\\\":\\\\\\\"Dashed\\\\\\\",\\\\\\\"BorderStyle_Dotted\\\\\\\":\\\\\\\"Dotted\\\\\\\",\\\\\\\"BorderStyle_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"BorderStyle_Solid\\\\\\\":\\\\\\\"Solid\\\\\\\",\\\\\\\"BorderThickness\\\\\\\":\\\\\\\"Border thickness\\\\\\\",\\\\\\\"BorderThickness_Description\\\\\\\":\\\\\\\"Thickness or width of borders around the control.\\\\\\\",\\\\\\\"BorderColor\\\\\\\":\\\\\\\"Border color\\\\\\\",\\\\\\\"BorderColor_Description\\\\\\\":\\\\\\\"Color of borders around the control.\\\\\\\",\\\\\\\"BorderRadiusTopLeft\\\\\\\":\\\\\\\"Top left border radius\\\\\\\",\\\\\\\"BorderRadiusTopLeft_Description\\\\\\\":\\\\\\\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusTopRight\\\\\\\":\\\\\\\"Top right border radius\\\\\\\",\\\\\\\"BorderRadiusTopRight_Description\\\\\\\":\\\\\\\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusBottomRight\\\\\\\":\\\\\\\"Bottom right border radius\\\\\\\",\\\\\\\"BorderRadiusBottomRight_Description\\\\\\\":\\\\\\\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadiusBottomLeft\\\\\\\":\\\\\\\"Bottom left border radius\\\\\\\",\\\\\\\"BorderRadiusBottomLeft_Description\\\\\\\":\\\\\\\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"BorderRadius\\\\\\\":\\\\\\\"Border radius\\\\\\\",\\\\\\\"BorderRadius_Description\\\\\\\":\\\\\\\"Roundedness of the control's corners. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"Padding to apply to the top of the control.\\\\\\\",\\\\\\\"PaddingBottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"PaddingBottom_Description\\\\\\\":\\\\\\\"Padding to apply to the bottom of the control.\\\\\\\",\\\\\\\"PaddingLeft\\\\\\\":\\\\\\\"Left\\\\\\\",\\\\\\\"PaddingLeft_Description\\\\\\\":\\\\\\\"Padding to apply to the left of the control.\\\\\\\",\\\\\\\"PaddingRight\\\\\\\":\\\\\\\"Right\\\\\\\",\\\\\\\"PaddingRight_Description\\\\\\\":\\\\\\\"Padding to apply to the right of the control.\\\\\\\"}}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCF/fluentui-react.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":5,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":4,\\\"Path\\\":\\\"Fluent/9.4.0/9.4.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"Text\\\",\\\"DisplayName\\\":\\\"Text\\\",\\\"Description\\\":\\\"Text that appears on a control.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Text\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":true,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":true,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Text\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Text_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Size\\\",\\\"DisplayName\\\":\\\"Font size\\\",\\\"Description\\\":\\\"Display text using the selected font sizes.\\\",\\\"Type\\\":16,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"14\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Size\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Size_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Weight\\\",\\\"DisplayName\\\":\\\"Font weight\\\",\\\"Description\\\":\\\"Display text using the selected font weights.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Regular\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Regular\\\",\\\"WebDefaultValue\\\":\\\"Regular\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Medium\\\",\\\"DisplayName\\\":\\\"Medium\\\",\\\"Description\\\":\\\"Medium\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Medium\\\"},{\\\"Name\\\":\\\"Regular\\\",\\\"DisplayName\\\":\\\"Regular\\\",\\\"Description\\\":\\\"Regular\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Regular\\\"},{\\\"Name\\\":\\\"Semibold\\\",\\\"DisplayName\\\":\\\"Semibold\\\",\\\"Description\\\":\\\"Semibold\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Semibold\\\"},{\\\"Name\\\":\\\"Bold\\\",\\\"DisplayName\\\":\\\"Bold\\\",\\\"Description\\\":\\\"Bold\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Bold\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Weight\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Weight_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Align\\\",\\\"DisplayName\\\":\\\"Align\\\",\\\"Description\\\":\\\"Display text using the selected text alignment.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Start\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Start\\\",\\\"WebDefaultValue\\\":\\\"Start\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Start\\\",\\\"DisplayName\\\":\\\"Start\\\",\\\"Description\\\":\\\"Start\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Start\\\"},{\\\"Name\\\":\\\"End\\\",\\\"DisplayName\\\":\\\"End\\\",\\\"Description\\\":\\\"End\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"End\\\"},{\\\"Name\\\":\\\"Center\\\",\\\"DisplayName\\\":\\\"Center\\\",\\\"Description\\\":\\\"Center\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Center\\\"},{\\\"Name\\\":\\\"Justify\\\",\\\"DisplayName\\\":\\\"Justify\\\",\\\"Description\\\":\\\"Justify\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Justify\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Align\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Align_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"VerticalAlign\\\",\\\"DisplayName\\\":\\\"Vertical align\\\",\\\"Description\\\":\\\"Display text using the selected text vertical alignment.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Middle\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Middle\\\",\\\"WebDefaultValue\\\":\\\"Middle\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Top\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"Top\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Top\\\"},{\\\"Name\\\":\\\"Middle\\\",\\\"DisplayName\\\":\\\"Middle\\\",\\\"Description\\\":\\\"Middle\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Middle\\\"},{\\\"Name\\\":\\\"Bottom\\\",\\\"DisplayName\\\":\\\"Bottom\\\",\\\"Description\\\":\\\"Bottom\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Bottom\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_VerticalAlign\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_VerticalAlign_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"AutoHeight\\\",\\\"DisplayName\\\":\\\"Auto height\\\",\\\"Description\\\":\\\"Container height will adjust to text content.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_AutoHeight\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_AutoHeight_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Height\\\",\\\"DisplayName\\\":\\\"Text height\\\",\\\"Description\\\":\\\"The height of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"32\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Height\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Height_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Font\\\",\\\"DisplayName\\\":\\\"Font\\\",\\\"Description\\\":\\\"The name of the family of fonts in which text appears\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font\\\",\\\"DescriptionResourceString\\\":\\\"Font_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontColor\\\",\\\"DisplayName\\\":\\\"Font color\\\",\\\"Description\\\":\\\"The color of text in the control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Font_Color\\\",\\\"DescriptionResourceString\\\":\\\"Font_Color_description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"FontItalic\\\",\\\"DisplayName\\\":\\\"Italic\\\",\\\"Description\\\":\\\"Display text using the italic font style.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Italic\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Italic_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontStrikethrough\\\",\\\"DisplayName\\\":\\\"Strikethrough\\\",\\\"Description\\\":\\\"Display text using the strikethrough font style.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Strikethrough\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Strikethrough_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"FontUnderline\\\",\\\"DisplayName\\\":\\\"Underline\\\",\\\"Description\\\":\\\"Display text using the underline font style.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Underline\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Underline_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Wrap\\\",\\\"DisplayName\\\":\\\"Wrap\\\",\\\"Description\\\":\\\"Display overflow text as wrapped.\\\",\\\"Type\\\":20,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextCanvas_Wrap\\\",\\\"DescriptionResourceString\\\":\\\"TextCanvas_Wrap_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Fill\\\",\\\"DisplayName\\\":\\\"Fill\\\",\\\"Description\\\":\\\"Background color fo the control.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Fill\\\",\\\"DescriptionResourceString\\\":\\\"Fill_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderStyle\\\",\\\"DisplayName\\\":\\\"Border style\\\",\\\"Description\\\":\\\"Style of borders around the control\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderStyle\\\",\\\"DescriptionResourceString\\\":\\\"BorderStyle_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderThickness\\\",\\\"DisplayName\\\":\\\"Border thickness\\\",\\\"Description\\\":\\\"Thickness or width of borders around the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderThickness\\\",\\\"DescriptionResourceString\\\":\\\"BorderThickness_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderColor\\\",\\\"DisplayName\\\":\\\"Border color\\\",\\\"Description\\\":\\\"Color of borders around the control.\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"color\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderColor\\\",\\\"DescriptionResourceString\\\":\\\"BorderColor_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"BorderRadius\\\",\\\"DisplayName\\\":\\\"Border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's corners. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadius\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadius_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusTopLeft\\\",\\\"DisplayName\\\":\\\"Top left border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusTopLeft\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusTopLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusTopRight\\\",\\\"DisplayName\\\":\\\"Top right border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusTopRight\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusTopRight_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusBottomRight\\\",\\\"DisplayName\\\":\\\"Bottom right border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusBottomRight\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusBottomRight_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"BorderRadiusBottomLeft\\\",\\\"DisplayName\\\":\\\"Bottom left border radius\\\",\\\"Description\\\":\\\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"BorderRadiusBottomLeft\\\",\\\"DescriptionResourceString\\\":\\\"BorderRadiusBottomLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":true,\\\"IsLinkableToParentTheme\\\":true},{\\\"Name\\\":\\\"PaddingTop\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"Padding to apply to the top of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingTop\\\",\\\"DescriptionResourceString\\\":\\\"PaddingTop_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingRight\\\",\\\"DisplayName\\\":\\\"Right\\\",\\\"Description\\\":\\\"Padding to apply to the right of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingRight\\\",\\\"DescriptionResourceString\\\":\\\"PaddingRight_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingBottom\\\",\\\"DisplayName\\\":\\\"Bottom\\\",\\\"Description\\\":\\\"Padding to apply to the bottom of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingBottom\\\",\\\"DescriptionResourceString\\\":\\\"PaddingBottom_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PaddingLeft\\\",\\\"DisplayName\\\":\\\"Left\\\",\\\"Description\\\":\\\"Padding to apply to the left of the control.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"PaddingLeft\\\",\\\"DescriptionResourceString\\\":\\\"PaddingLeft_Description\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"TabIndex\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Tooltip\\\",\\\"DisplayName\\\":\\\"NA\\\",\\\"Description\\\":\\\"NA\\\",\\\"Type\\\":6,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"NA\\\",\\\"DescriptionResourceString\\\":\\\"NA\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"PCFTeamsTheme\\\",\\\"DisplayName\\\":\\\"PCFTeamsTheme\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":3,\\\"Usage\\\":0,\\\"Hidden\\\":true,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"IncludedProperties\":\"[{\\\"Name\\\":\\\"X\\\",\\\"DisplayName\\\":\\\"CC_X\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_X\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Y\\\",\\\"DisplayName\\\":\\\"CC_Y\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"CC_Y\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Width\\\",\\\"DisplayName\\\":\\\"Width\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":2,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"96\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"96\\\",\\\"WebDefaultValue\\\":\\\"96\\\",\\\"NullDefaultValue\\\":\\\"0\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Width\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Visible\\\",\\\"DisplayName\\\":\\\"Visible\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":4,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"true\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Visible\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"DisplayMode\\\",\\\"DisplayName\\\":\\\"DisplayMode\\\",\\\"Description\\\":\\\"\\\",\\\"Type\\\":27,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":\\\"\\\",\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"design\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":null,\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"DisplayMode\\\",\\\"DescriptionResourceString\\\":\\\"\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false}]\",\"AuthConfigProperties\":\"[{\\\"Text\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Visible\\\":{\\\"SectionIndex\\\":0,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"GeneralSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Wrap\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Align\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"VerticalAlign\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"AutoHeight\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"X\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Y\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Position\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Width\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Height\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Size\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingTop\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingRight\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingBottom\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingLeft\\\":{\\\"SectionIndex\\\":2,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Fill\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Font\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":33,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Size\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":31,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Weight\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontItalic\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":35,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontUnderline\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":36,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"FontStrikethrough\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Style\\\",\\\"SectionName\\\":null,\\\"Type\\\":37,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderStyle\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":30,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderThickness\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":\\\"color\\\",\\\"PropertyGroupName\\\":\\\"Border\\\",\\\"SectionName\\\":null,\\\"Type\\\":29,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"BorderRadius\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false}}]\"}",
+ "FirstParty": true,
+ "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_TextCanvas",
+ "IsComponentDefinition": false,
+ "IsCustomGroupControlTemplate": false,
+ "IsPremiumPcfControl": false,
+ "LastModifiedTimestamp": "0",
+ "Name": "PowerApps_CoreControls_TextCanvas",
+ "OverridableProperties": {},
+ "TemplateDisplayName": "Text",
+ "Version": "0.0.47"
+ }
+ },
+ "PublishOrderIndices": {
+ "App": 0,
+ "ButtonCanvas1": 5,
+ "Host": 0,
+ "LeftContainer1": 1,
+ "name1": 4,
+ "RightContainer1": 6,
+ "Screen1": 0,
+ "ScreenContainer2": 0,
+ "Spinner1": 8,
+ "Table2": 2,
+ "TextCanvas1": 7,
+ "value1": 3
+ },
+ "ResourcesJsonIndices": {
+ "Image-SampleImage": 0
+ },
+ "RuleScreenIdWithoutScreen": {},
+ "TemplateVersions": {},
+ "VolatileProperties": {
+ "AnalysisLoadTime": 0.22568060000000001,
+ "ControlCount": {
+ "groupContainer": 3,
+ "PowerApps_CoreControls_ButtonCanvas": 1,
+ "PowerApps_CoreControls_Spinner": 1,
+ "PowerApps_CoreControls_TextCanvas": 1,
+ "PowerAppsOneGrid": 1,
+ "PowerAppsOneGridTemplate_dataField": 2,
+ "screen": 1
+ },
+ "DeserializationLoadTime": 0.89849049999999997
+ },
+ "WasLocalDatabaseReferencesEmpty": true
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/checksum.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/checksum.json
new file mode 100644
index 00000000..149f435e
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Entropy/checksum.json
@@ -0,0 +1,17 @@
+{
+ "ClientPerFileChecksums": {
+ ".gitignore": "C8_VaC8EcEG56Ufcy1DFyC8Ky19iV9xSsXMDIAcmF2GTj8=",
+ "AppCheckerResult.sarif": "C8_iYotKPCgUXgVOPsfYEcExskVwtHMBAKAXxbI65ZFoqg=",
+ "Controls\\1.json": "C8_pThn10o8Cks4gFhLLhd7sqo8IU/T1Fs8JfThsXOA9fA=",
+ "Controls\\4.json": "C8_KORhBCMPJodKsTIsT/v3F4dVc8S+iVnpWBitXF24rWE=",
+ "Header.json": "C8_hdPYrVEUmTN3z1FTeBV1pTmzuyorOBQ8twxeBxJyBhk=",
+ "Properties.json": "C8_pA624XTH1UYdYuoSzWorM45fFqnmPUrOdKzSNmN8N0E=",
+ "References\\DataSources.json": "C8_aaodGgLdtwnOZHG8CHstRdwcWk+HQOyPjBywECOgbqk=",
+ "References\\ModernThemes.json": "C8_KDQJ/3t27vgKx25iCQB/PGqxkWE34ZB7Eyb+RxNxY0k=",
+ "References\\Resources.json": "C8_s+se9qfOYnCKwfIt6gbv1FGBHW47JCt5d/CkUpqbcjk=",
+ "References\\Templates.json": "C8_pbAnlWHatH+crumeSr9NtNZRlGStiCdHoPpG07zJh3k=",
+ "References\\Themes.json": "C8_DwkkMNV1j+tD94nbLPmC4Lq2wvPVfUT0BRPDe6aP2rM=",
+ "Resources\\PublishInfo.json": "C8_Smu8hRKu0mD12jIgK5wBMmLglOwXHh81e8cfYfTBjuM="
+ },
+ "ClientStampedChecksum": "C8_3FoVqsa+NZCfAMG4houqa/+2exW0P1dAC3MpFUqTMHw="
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/.gitignore b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/.gitignore
new file mode 100644
index 00000000..6d99c528
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/.gitignore
@@ -0,0 +1,5 @@
+## MsApp specific overrides
+/[Cc]ontrols/
+/[Cc]hecksum.json
+/[Hh]eader.json
+/[Aa]pp[Cc]hecker[Rr]esult.sarif
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/References/ModernThemes.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/References/ModernThemes.json
new file mode 100644
index 00000000..b809c455
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Other/References/ModernThemes.json
@@ -0,0 +1,8 @@
+{
+ "Themes": [
+ {
+ "EntityName": "PowerAppsTheme",
+ "ThemeName": "PowerAppsTheme"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/App.fx.yaml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/App.fx.yaml
new file mode 100644
index 00000000..cc225622
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/App.fx.yaml
@@ -0,0 +1,20 @@
+App As appinfo:
+ BackEnabled: =true
+ OnStart: |-
+ =
+ ClearCollect(contextInfo,[
+ { name:"channelId",value: Param("channelId") },
+ { name:"channelType",value: Param("channelType") },
+ { name:"teamId",value: Param("teamId") },
+ { name:"teamType",value: Param("teamType") },
+ { name:"groupId",value: Param("groupId") }
+ ])
+ Theme: =PowerAppsTheme
+
+ Host As hostControl.DefaultHostControlVariant:
+ OnCancel: =false
+ OnEdit: =false
+ OnNew: =false
+ OnSave: =false
+ OnView: =false
+
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/App.editorstate.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/App.editorstate.json
new file mode 100644
index 00000000..21ada579
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/App.editorstate.json
@@ -0,0 +1,127 @@
+{
+ "ControlStates": {
+ "App": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "MinScreenHeight",
+ "MinScreenWidth",
+ "ConfirmExit",
+ "SizeBreakpoints",
+ "BackEnabled",
+ "Theme",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "OnStart",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "App",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "ConfirmExit",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "BackEnabled",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MinScreenHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "MinScreenWidth",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Theme",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnStart",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "ConstantData",
+ "PropertyName": "SizeBreakpoints",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Host": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "OnNew",
+ "OnEdit",
+ "OnView",
+ "OnSave",
+ "OnCancel"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": true,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Host",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnNew",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnEdit",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnView",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSave",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnCancel",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "App"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/Screen1.editorstate.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/Screen1.editorstate.json
new file mode 100644
index 00000000..c26b7c53
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/EditorState/Screen1.editorstate.json
@@ -0,0 +1,1580 @@
+{
+ "ControlStates": {
+ "ButtonCanvas1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "false",
+ "InvariantPropertyName": "OnSelect",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Appearance",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Icon",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": "FillPortions",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": "AlignInContainer",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "ButtonCanvas1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Appearance",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Icon",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "LeftContainer1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Height",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisplayMode",
+ "ChildTabPriority",
+ "LayoutMode",
+ "LayoutDirection",
+ "LayoutAlignItems",
+ "LayoutJustifyContent",
+ "LayoutGap",
+ "LayoutOverflowX",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "LayoutOverflowY",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "LayoutWrap",
+ "DropShadow",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight"
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FillPortions",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": "AlignInContainer",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%LeftContainer.ID%",
+ "Name": "LeftContainer1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ChildTabPriority",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutDirection",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutAlignItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutJustifyContent",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutGap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowX",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowY",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutWrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DropShadow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultGroupContainerStyle",
+ "Type": "ControlInfo"
+ },
+ "name1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "FieldName",
+ "Order",
+ "FieldVariantName",
+ "FieldDisplayName",
+ "FieldType",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "name1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "FieldName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Order",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldVariantName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldDisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldType",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "RightContainer1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ChildTabPriority",
+ "LayoutMode",
+ "LayoutDirection",
+ "LayoutAlignItems",
+ "LayoutJustifyContent",
+ "LayoutGap",
+ "LayoutOverflowX",
+ "LayoutOverflowY",
+ "LayoutWrap",
+ "DropShadow",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "Visible"
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FillPortions",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": "AlignInContainer",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%RightContainer.ID%",
+ "Name": "RightContainer1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 2,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ChildTabPriority",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutDirection",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutAlignItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutJustifyContent",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutGap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowX",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowY",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutWrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DropShadow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "defaultGroupContainerStyle",
+ "Type": "ControlInfo"
+ },
+ "Screen1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Fill",
+ "ImagePosition",
+ "Height",
+ "Width",
+ "Size",
+ "Orientation",
+ "LoadingSpinner",
+ "LoadingSpinnerColor"
+ ],
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Screen1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ImagePosition",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Size",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Orientation",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinner",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LoadingSpinnerColor",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultScreenStyle",
+ "Type": "ControlInfo"
+ },
+ "ScreenContainer2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "BorderColor",
+ "BorderStyle",
+ "Fill",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ChildTabPriority",
+ "LayoutMode",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "LayoutDirection",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "LayoutAlignItems",
+ "LayoutJustifyContent",
+ "LayoutGap",
+ "LayoutOverflowX",
+ "LayoutOverflowY",
+ "LayoutWrap",
+ "DropShadow",
+ "ZIndex",
+ "RadiusTopLeft",
+ "RadiusTopRight",
+ "RadiusBottomLeft",
+ "RadiusBottomRight",
+ "PaddingLeft",
+ "PaddingRight",
+ "PaddingTop",
+ "PaddingBottom"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": true,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "%ScreenContainer.ID%",
+ "Name": "ScreenContainer2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Design",
+ "PropertyName": "BorderColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "BorderStyle",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Fill",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ChildTabPriority",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutDirection",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutAlignItems",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutJustifyContent",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutGap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowX",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutOverflowY",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "LayoutWrap",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DropShadow",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusTopRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "RadiusBottomRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingLeft",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingRight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingTop",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "PaddingBottom",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "defaultGroupContainerStyle",
+ "Type": "ControlInfo"
+ },
+ "Spinner1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "DisplayMode",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"\"",
+ "InvariantPropertyName": "Label",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "BasePaletteColor",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FontSize",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": "FillPortions",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "AlignInContainer",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Spinner1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 1,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "Label",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "BasePaletteColor",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FontSize",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "Table2": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "DateTimeFormat",
+ "DateOnlyFormat",
+ "X",
+ "Y",
+ "Width",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Height",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "DisplayMode",
+ "onCellValueChange",
+ "onFilter",
+ "onNavigate",
+ "onRowSelect",
+ "onSave",
+ "OnSelect",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "Items",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"yes\"",
+ "InvariantPropertyName": "ShowAvatar",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "HeaderFontSize",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "EnableSorting",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "EnableRangeSelection",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"yes\"",
+ "InvariantPropertyName": "ShowFooter",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"yes\"",
+ "InvariantPropertyName": "ShowColumnHeaders",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FillPortions",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "AlignInContainer",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "Table2",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "DateTimeFormat",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "DateOnlyFormat",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Items",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "ShowAvatar",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "HeaderFontSize",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "EnableSorting",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "EnableRangeSelection",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "ShowFooter",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "ShowColumnHeaders",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "onCellValueChange",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "onFilter",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "onNavigate",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "onRowSelect",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "onSave",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Behavior",
+ "PropertyName": "OnSelect",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "TextCanvas1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "Height",
+ "X",
+ "Y",
+ "Width",
+ "DisplayMode",
+ "ZIndex",
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "AutoHeight",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "VerticalAlign",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "\"Text\"",
+ "InvariantPropertyName": "Text",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "true",
+ "InvariantPropertyName": "Visible",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ }
+ ],
+ "DynamicProperties": [
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "FillPortions",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "FillPortions",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "FillPortions"
+ },
+ {
+ "ControlPropertyState": {
+ "AFDDataSourceName": "",
+ "AutoRuleBindingEnabled": false,
+ "AutoRuleBindingString": "",
+ "InvariantPropertyName": "AlignInContainer",
+ "IsLockable": false,
+ "NameMapSourceSchema": "?"
+ },
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "AlignInContainer",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "AlignInContainer"
+ },
+ {
+ "ControlPropertyState": "LayoutMinWidth",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinWidth",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinWidth"
+ },
+ {
+ "ControlPropertyState": "LayoutMinHeight",
+ "Property": {
+ "Category": "Design",
+ "PropertyName": "LayoutMinHeight",
+ "RuleProviderType": "Unknown"
+ },
+ "PropertyName": "LayoutMinHeight"
+ }
+ ],
+ "HasDynamicProperties": true,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": false,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "TextCanvas1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "AutoHeight",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "VerticalAlign",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Text",
+ "RuleProviderType": "User"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "DisplayMode",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Visible",
+ "RuleProviderType": "User"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ },
+ "value1": {
+ "AllowAccessToGlobals": true,
+ "ControlPropertyState": [
+ "FieldName",
+ "Order",
+ "FieldVariantName",
+ "FieldDisplayName",
+ "FieldType",
+ "X",
+ "Y",
+ "Width",
+ "Height",
+ "ZIndex"
+ ],
+ "HasDynamicProperties": false,
+ "IsAutoGenerated": false,
+ "IsComponentDefinition": false,
+ "IsDataControl": false,
+ "IsFromScreenLayout": false,
+ "IsGroupControl": false,
+ "IsLocked": true,
+ "LayoutName": "",
+ "MetaDataIDKey": "",
+ "Name": "value1",
+ "OptimizeForDevices": "Off",
+ "ParentIndex": 0,
+ "PersistMetaDataIDKey": false,
+ "Properties": [
+ {
+ "Category": "Data",
+ "PropertyName": "FieldName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "Order",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldVariantName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldDisplayName",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Data",
+ "PropertyName": "FieldType",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "X",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Y",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Width",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "Height",
+ "RuleProviderType": "Unknown"
+ },
+ {
+ "Category": "Design",
+ "PropertyName": "ZIndex",
+ "RuleProviderType": "Unknown"
+ }
+ ],
+ "StyleName": "",
+ "Type": "ControlInfo"
+ }
+ },
+ "TopParentName": "Screen1"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Screen1.fx.yaml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Screen1.fx.yaml
new file mode 100644
index 00000000..e5458b79
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Screen1.fx.yaml
@@ -0,0 +1,143 @@
+"Screen1 As screen.'autoLayout_SplitScreen_ver1.0'":
+
+ ScreenContainer2 As groupContainer.horizontalAutoLayoutContainer:
+ Fill: =RGBA(245, 245, 245, 1)
+ Height: =Parent.Height
+ LayoutAlignItems: =LayoutAlignItems.Stretch
+ LayoutDirection: =LayoutDirection.Vertical
+ LayoutGap: =16
+ LayoutMode: =LayoutMode.Auto
+ LayoutWrap: =true
+ PaddingBottom: =16
+ PaddingLeft: =16
+ PaddingRight: =16
+ PaddingTop: =16
+ Width: =Parent.Width
+ ZIndex: =1
+
+ LeftContainer1 As groupContainer.verticalAutoLayoutContainer:
+ Fill: =RGBA(255, 255, 255, 1)
+ FillPortions: =0
+ Height: =215
+ LayoutDirection: =LayoutDirection.Vertical
+ LayoutMinHeight: =100
+ LayoutMinWidth: =250
+ LayoutMode: =LayoutMode.Auto
+ LayoutOverflowY: =LayoutOverflow.Scroll
+ RadiusBottomLeft: =8
+ RadiusBottomRight: =8
+ RadiusTopLeft: =8
+ RadiusTopRight: =8
+ ZIndex: =1
+
+ Table2 As Table.pcfdataset:
+ AlignInContainer: =AlignInContainer.Stretch
+ DateOnlyFormat: ='PowerAppsOneGrid.DateOnlyFormat'.ShortDate
+ DateTimeFormat: ='PowerAppsOneGrid.DateTimeFormat'.ShortDateTime
+ DisplayMode: =DisplayMode.Edit
+ EnableRangeSelection: ='PowerAppsOneGrid.EnableRangeSelection'.Disable
+ EnableSorting: ='PowerAppsOneGrid.EnableSorting'.Disable
+ HeaderFontSize: =10.5
+ Height: =CountRows(contextInfo)*40+15
+ Items: =contextInfo
+ LayoutMinHeight: =If(Self.Y + 500 > Parent.Height, Parent.Height - Self.Y, 500)
+ LayoutMinWidth: =If(Self.X + 800 > Parent.Width, Parent.Width - Self.X, 800)
+ onCellValueChange: =false
+ onFilter: =false
+ onNavigate: =false
+ onRowSelect: =false
+ onSave: =false
+ OnSelect: =false
+ ShowAvatar: ="no"
+ ShowColumnHeaders: ="no"
+ ShowFooter: ="no"
+ Width: =If(Self.X + 800 > Parent.Width, Parent.Width - Self.X, 800)
+ X: =0
+ Y: =0
+ ZIndex: =1
+
+ value1 As PowerAppsOneGridTemplate_dataField.textualColumn:
+ FieldDisplayName: ="value"
+ FieldName: ="value"
+ FieldType: ="s"
+ FieldVariantName: ="textualColumn"
+ Order: =2
+ Width: =0
+ ZIndex: =4
+
+ name1 As PowerAppsOneGridTemplate_dataField.textualColumn:
+ FieldDisplayName: ="name"
+ FieldName: ="name"
+ FieldType: ="s"
+ FieldVariantName: ="textualColumn"
+ Order: =1
+ Width: =0
+ ZIndex: =5
+
+ ButtonCanvas1 As Button:
+ Appearance: ='ButtonCanvas.Appearance'.Secondary
+ DisplayMode: =DisplayMode.Edit
+ Height: =32
+ Icon: ="ArrowClockwise"
+ LayoutMinHeight: =32
+ LayoutMinWidth: =96
+ OnSelect: |
+ =Set(isLoading,true);
+ Set(
+ rResult,
+ GetTeamsChannelLibraryInfo.Run(
+ Param("teamId"),
+ Param("channelId")
+ )
+ );
+ Set(isLoading,false);
+ Text: ="Fetch folder information"
+ Width: =96
+ X: =0
+ Y: =0
+ ZIndex: =2
+
+ RightContainer1 As groupContainer.verticalAutoLayoutContainer:
+ Fill: =RGBA(255, 255, 255, 1)
+ LayoutDirection: =LayoutDirection.Vertical
+ LayoutMinHeight: =100
+ LayoutMinWidth: =250
+ LayoutMode: =LayoutMode.Auto
+ RadiusBottomLeft: =8
+ RadiusBottomRight: =8
+ RadiusTopLeft: =8
+ RadiusTopRight: =8
+ ZIndex: =3
+
+ TextCanvas1 As Text:
+ AlignInContainer: =AlignInContainer.Stretch
+ AutoHeight: =true
+ DisplayMode: =DisplayMode.Edit
+ FillPortions: =1
+ Height: =32
+ LayoutMinHeight: =32
+ LayoutMinWidth: =96
+ Text: |
+ =If(IsBlank(rResult),"",JSON(rResult,JSONFormat.IndentFour))
+ VerticalAlign: ='TextCanvas.VerticalAlign'.Top
+ Visible: =!isLoading
+ Width: =96
+ X: =0
+ Y: =0
+ ZIndex: =2
+
+ Spinner1 As Spinner:
+ AlignInContainer: =AlignInContainer.Stretch
+ BasePaletteColor: =RGBA(5, 102, 178, 1)
+ DisplayMode: =DisplayMode.Edit
+ FontSize: =10.5
+ Height: =200
+ Label: ="Please wait, we are fetching the folder, library and site information"
+ LayoutMinHeight: =200
+ LayoutMinWidth: =200
+ Visible: =isLoading
+ Width: =200
+ X: =0
+ Y: =0
+ ZIndex: =3
+
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Themes.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Themes.json
new file mode 100644
index 00000000..5a6f4d5a
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/Src/Themes.json
@@ -0,0 +1,4986 @@
+{
+ "CurrentTheme": "defaultTheme",
+ "CustomThemes": [
+ {
+ "name": "defaultTheme",
+ "palette": [
+ {
+ "name": "ScreenBkgColor",
+ "type": "c",
+ "value": "%Color.RESERVED%.White"
+ },
+ {
+ "name": "InvertedBkgColor",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor1",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, 1)"
+ },
+ {
+ "name": "PrimaryColor2",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 1)"
+ },
+ {
+ "name": "PrimaryColor3",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "name": "PrimaryColor1Light",
+ "type": "c",
+ "value": "RGBA(56, 96, 178, .2)"
+ },
+ {
+ "name": "PrimaryColor2Light",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, .2)"
+ },
+ {
+ "name": "PrimaryColor3Light",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, .2)"
+ },
+ {
+ "name": "PrimaryColor3Fade",
+ "type": "c",
+ "value": "ColorFade(RGBA(186, 202, 226, 1), 70%)"
+ },
+ {
+ "name": "Transparency",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "name": "TextMainColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "TextMainColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "TextLinkColor",
+ "type": "c",
+ "value": "RGBA(0, 134, 208, 1)"
+ },
+ {
+ "name": "TextFooterFontColor",
+ "type": "c",
+ "value": "RGBA(117, 117, 117, 1)"
+ },
+ {
+ "name": "InputBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "InputTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "InputBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 18, 107, 1)"
+ },
+ {
+ "name": "RailBkgColor",
+ "type": "c",
+ "value": "RGBA(128, 130, 133, 1)"
+ },
+ {
+ "name": "HandleBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "InnerCircleBkgColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "DisabledBorderColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledTextMainColor",
+ "type": "c",
+ "value": "RGBA(166, 166, 166, 1)"
+ },
+ {
+ "name": "DisabledInputBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "DisabledButtonBkgColor",
+ "type": "c",
+ "value": "RGBA(244, 244, 244, 1)"
+ },
+ {
+ "name": "HoverButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(56, 96, 178, 1), -20%)"
+ },
+ {
+ "name": "HoverCancelButtonBkgColor",
+ "type": "c",
+ "value": "ColorFade(RGBA(62, 96, 170, 1), 20%)"
+ },
+ {
+ "name": "HoverInputBkgColor",
+ "type": "c",
+ "value": "RGBA(186, 202, 226, 1)"
+ },
+ {
+ "name": "OverlayBkgColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 0.4)"
+ },
+ {
+ "name": "ReservedInfoColor",
+ "type": "c",
+ "value": "RGBA(0, 134, 208, 1)"
+ },
+ {
+ "name": "ReservedSuccessColor",
+ "type": "c",
+ "value": "RGBA(141, 198, 63, 1)"
+ },
+ {
+ "name": "ReservedWarningColor",
+ "type": "c",
+ "value": "RGBA(252, 219, 2, 1)"
+ },
+ {
+ "name": "ReservedErrorColor",
+ "type": "c",
+ "value": "RGBA(246, 88, 16, 1)"
+ },
+ {
+ "name": "ReservedCriticalErrorColor",
+ "type": "c",
+ "value": "RGBA(168, 0, 0, 1)"
+ },
+ {
+ "name": "ReservedDisabledStatusColor",
+ "type": "c",
+ "value": "RGBA(193, 193, 193, 1)"
+ },
+ {
+ "name": "ReservedWhiteColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "ReservedGrayColor",
+ "type": "c",
+ "value": "RGBA(240, 240, 240, 1)"
+ },
+ {
+ "name": "ReservedBlackColor",
+ "type": "c",
+ "value": "RGBA(47, 41, 43, 1)"
+ },
+ {
+ "name": "ReservedChartColorSet",
+ "type": "![]",
+ "value": "[RGBA(49, 130, 93, 1),RGBA(48,166,103, 1), RGBA(94,193,108,1), RGBA(246,199,144,1), RGBA(247,199,114,1), RGBA(247,180,91,1), RGBA(246,143,100,1), RGBA(212,96,104,1), RGBA(148, 110, 176, 1), RGBA(118, 154, 204, 1), RGBA(96, 197, 234, 1)]"
+ },
+ {
+ "name": "TextBodyFontWeight",
+ "type": "e",
+ "value": "%FontWeight.RESERVED%.Normal"
+ },
+ {
+ "name": "TextEmphasisFontWeight",
+ "type": "e",
+ "value": "%FontWeight.RESERVED%.Semibold"
+ },
+ {
+ "name": "TextBodyFontFace",
+ "type": "e",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "name": "InputBorderThickness",
+ "type": "n",
+ "value": "2"
+ },
+ {
+ "name": "InputFocusedBorderThickness",
+ "type": "n",
+ "value": "4"
+ },
+ {
+ "name": "TextHeaderFontSize",
+ "phoneValue": "27",
+ "type": "n",
+ "value": "18"
+ },
+ {
+ "name": "TextTitleFontSize",
+ "type": "n",
+ "value": "20"
+ },
+ {
+ "name": "TextSubtitleFontSize",
+ "type": "n",
+ "value": "18"
+ },
+ {
+ "name": "TextContentFontSize",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "TextTitleFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "14"
+ },
+ {
+ "name": "TextSubtitleFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "TextContentFontSize_galleryLayouts_ver5",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "DividerColor2020",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "TextTitleColor_galleryLayouts_ver5",
+ "type": "c",
+ "value": "RGBA(50, 49, 48, 1)"
+ },
+ {
+ "name": "TableNameLabelPadding_copilotAppSinglePage",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "SearchContainerFill_copilotAppPage",
+ "type": "c",
+ "value": "RGBA(245, 245, 245, 1)"
+ },
+ {
+ "name": "ContainerRadius",
+ "type": "n",
+ "value": "4"
+ },
+ {
+ "name": "TextHeaderFontSize2020",
+ "type": "n",
+ "value": "16"
+ },
+ {
+ "name": "TextEmphasisFontSize",
+ "phoneValue": "24",
+ "type": "n",
+ "value": "15"
+ },
+ {
+ "name": "TextBodyFontSize",
+ "phoneValue": "21",
+ "type": "n",
+ "value": "13"
+ },
+ {
+ "name": "TextFooterFontSize",
+ "phoneValue": "18",
+ "type": "n",
+ "value": "11"
+ },
+ {
+ "name": "TextMiniFontSize",
+ "phoneValue": "15",
+ "type": "n",
+ "value": "9"
+ },
+ {
+ "name": "IconFillColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 1)"
+ },
+ {
+ "name": "IconPressedFillColorInverted",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 0.3)"
+ },
+ {
+ "name": "DatePickerSelectedColor",
+ "type": "c",
+ "value": "RGBA(37, 70, 148, 1)"
+ },
+ {
+ "name": "DatePickerHeaderColor",
+ "type": "c",
+ "value": "RGBA(68, 97, 165, 1)"
+ },
+ {
+ "name": "NoAttachmentPaddingLeft",
+ "phoneValue": "20",
+ "type": "n",
+ "value": "12"
+ },
+ {
+ "name": "DefaultSize",
+ "phoneValue": "24",
+ "type": "n",
+ "value": "14"
+ },
+ {
+ "name": "DefaultSize2",
+ "type": "n",
+ "value": "13"
+ },
+ {
+ "name": "DropTargetBorderColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBackgroundColor",
+ "type": "c",
+ "value": "RGBA(255, 255, 255, 0.8)"
+ },
+ {
+ "name": "DropTargetTextColor",
+ "type": "c",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "name": "DropTargetBorderThickness",
+ "type": "n",
+ "value": "2"
+ }
+ ],
+ "styles": [
+ {
+ "controlTemplateName": "screen",
+ "name": "defaultScreenStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "LoadingSpinnerColor",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "defaultLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeInvertedBkgLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "basicNoSizeWeightColorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "invertedBkgHeaderLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextHeaderFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "invertedBkgTitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "linkLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "headerLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextHeaderFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subHeaderLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "titleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "overlayTitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subtitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "overlaySubtitleLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "contentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextContentFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "titleLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextTitleColor_galleryLayouts_ver5%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextTitleFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "subtitleLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextSubtitleFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "contentLabelStyle_galleryLayouts_ver5",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextContentFontSize_galleryLayouts_ver5%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "dividerStyle2020",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.DividerColor2020%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "tableNameLabelStyle_copilotAppSinglePage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "%Palette.TableNameLabelPadding_copilotAppSinglePage%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "groupContainer",
+ "name": "containerStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "DropShadow",
+ "value": "%DropShadow.RESERVED%.None"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "groupContainer",
+ "name": "searchContainerStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.SearchContainerFill_copilotAppPage%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "searchInputStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.None"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.Transparency%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.Transparency%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.Transparency%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "searchIconStyle_copilotAppPage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.Transparency%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "headerIconStyle_copilotAppSinglePage",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "accentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisWithAccentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "pickerEmphasisSecondaryLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextFooterFontColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "footerAccentLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "footerLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextFooterFontColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "5"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "5"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "miniLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextMiniFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "miniInvertedBkgLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextMiniFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "disabledLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedDisabledStatusColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "infoLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "successLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedSuccessColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "warningLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWarningColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "errorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedErrorColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "label",
+ "name": "criticalErrorLabelStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedCriticalErrorColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "LineHeight",
+ "value": "1.2"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "Overflow",
+ "value": "%Overflow.RESERVED%.Hidden"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "toggleSwitch",
+ "name": "defaultToggleSwitchStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "HandleFill",
+ "value": "%Palette.HandleBkgColor%"
+ },
+ {
+ "property": "FalseFill",
+ "value": "%Palette.RailBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "TrueFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "FalseHoverFill",
+ "value": "ColorFade(Self.FalseFill, 15%)"
+ },
+ {
+ "property": "TrueHoverFill",
+ "value": "ColorFade(Self.TrueFill, 15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rating",
+ "name": "defaultRatingStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RatingFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "checkbox",
+ "name": "defaultCheckboxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "CheckboxBackgroundFill",
+ "value": "%Palette.InnerCircleBkgColor%"
+ },
+ {
+ "property": "CheckboxBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "CheckmarkFill",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "RGBA(70, 68, 64, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -30%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 30%)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "radio",
+ "name": "defaultRadioStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioBackgroundFill",
+ "value": "%Palette.InnerCircleBkgColor%"
+ },
+ {
+ "property": "RadioBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "RadioSelectionFill",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "listbox",
+ "name": "defaultListboxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledSelectionColor",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledSelectionFill",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(242, 242, 242, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dropdown",
+ "name": "defaultDropdownStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "combobox",
+ "name": "defaultComboBoxStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "MoreItemsButtonColor",
+ "value": "Self.ChevronBackground"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "attachments",
+ "name": "defaultAttachmentsStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "ItemColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ItemFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ItemHoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ItemHoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "ItemSpacing",
+ "value": "0"
+ },
+ {
+ "property": "NoAttachmentsColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "NoAttachmentsPaddingLeft",
+ "value": "%Palette.NoAttachmentPaddingLeft%"
+ },
+ {
+ "property": "DropTargetBorderThickness",
+ "value": "%Palette.DropTargetBorderThickness%"
+ },
+ {
+ "property": "DropTargetBorderStyle",
+ "value": "%BorderStyle.RESERVED%.Dotted"
+ },
+ {
+ "property": "DropTargetBorderColor",
+ "value": "%Palette.DropTargetBorderColor%"
+ },
+ {
+ "property": "DropTargetBackgroundColor",
+ "value": "%Palette.DropTargetBackgroundColor%"
+ },
+ {
+ "property": "DropTargetTextColor",
+ "value": "%Palette.DropTargetTextColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "datepicker",
+ "name": "defaultDatePickerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "IconFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "IconBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "SelectedDateFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverDateFill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "CalendarHeaderFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize%"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "5"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "5"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "12"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lookup",
+ "name": "defaultLookupStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "ChevronBackground",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "ChevronFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronHoverBackground",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "ChevronHoverFill",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "ChevronDisabledBackground",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ChevronDisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "SelectionColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "SelectionFill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "10"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "10"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "10"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "10"
+ },
+ {
+ "property": "FooterSize",
+ "value": "Self.Size - 3"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "defaultTextStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "5"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "5"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.HoverBorderColor"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Left"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "text",
+ "name": "searchTextStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.None"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "%Palette.InputBorderThickness%"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "%Palette.InputFocusedBorderThickness%"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "slider",
+ "name": "defaultSliderStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "HandleFill",
+ "value": "%Palette.HandleBkgColor%"
+ },
+ {
+ "property": "RailFill",
+ "value": "%Palette.RailBkgColor%"
+ },
+ {
+ "property": "ValueFill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "HandleHoverFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "HandleActiveFill",
+ "value": "Self.HandleFill"
+ },
+ {
+ "property": "RailHoverFill",
+ "value": "ColorFade(Self.RailFill, 15%)"
+ },
+ {
+ "property": "ValueHoverFill",
+ "value": "ColorFade(Self.ValueFill, 15%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "defaultButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "cancelButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "rezervedOkButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedInfoColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "button",
+ "name": "rezervedCancelButtonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.ReservedInfoColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedWhiteColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lineChart",
+ "name": "defaultLineChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "lineChart",
+ "name": "monochromeAccentLineChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pieChart",
+ "name": "defaultPieChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pieChart",
+ "name": "monochromeAccentPieChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barChart",
+ "name": "defaultBarChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "%Palette.ReservedChartColorSet%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -30%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 30%)"
+ },
+ {
+ "property": "Size",
+ "value": "10"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barChart",
+ "name": "monochromeAccentBarChartStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "ItemColorSet",
+ "value": "[%Palette.PrimaryColor1%]"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "legend",
+ "name": "defaultLegendStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextFooterFontSize%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "RGBA(0, 0, 0, 1)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "Self.BorderColor"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "separatorShapeStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "videoPlayback",
+ "name": "defaultVideoPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "timer",
+ "name": "defaultTimerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "ColorFade(Self.BorderColor, 70%)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "ColorFade(Self.Fill, 90%)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "ColorFade(Self.Fill, 70%)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.DefaultSize2%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "triangle",
+ "name": "defaultTriangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "star",
+ "name": "defaultStarStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pentagon",
+ "name": "defaultPentagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "partialCircle",
+ "name": "defaultPartialCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "octagon",
+ "name": "defaultOctagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "defaultHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary2HexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary3HexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "primary3FadeHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "hexagon",
+ "name": "screenHexagonStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "defaultCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary2CircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary3CircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "circle",
+ "name": "primary3FadeCircleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "arrow",
+ "name": "defaultArrowStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "defaultIconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "PressedColor",
+ "value": "ColorFade(Self.Color, -20%)"
+ },
+ {
+ "property": "HoverColor",
+ "value": "ColorFade(Self.Color, 20%)"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "primary1IconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "primary3IconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "icon",
+ "name": "invertedBkgHeaderIconStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.IconFillColorInverted%"
+ },
+ {
+ "property": "PressedFill",
+ "value": "%Palette.IconPressedFillColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "microphone",
+ "name": "defaultMicrophoneStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -15%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 15%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -15%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcode",
+ "name": "defaultBarcodeStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "groupContainer",
+ "name": "defaultGroupContainerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "RadiusTopLeft",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "%Palette.ContainerRadius%"
+ },
+ {
+ "property": "DropShadow",
+ "value": "%DropShadow.RESERVED%.Light"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "barcodeScanner",
+ "name": "defaultBarcodeScannerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Color"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "camera",
+ "name": "defaultCameraStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "inkControl",
+ "name": "defaultInkControlStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "Size",
+ "value": "2"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "import",
+ "name": "defaultImportStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "image",
+ "name": "defaultImageStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledButtonBkgColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "RGBA(0, 0, 0, 0)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "0"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "0"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "PaddingTop",
+ "value": "0"
+ },
+ {
+ "property": "PaddingRight",
+ "value": "0"
+ },
+ {
+ "property": "PaddingBottom",
+ "value": "0"
+ },
+ {
+ "property": "PaddingLeft",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "htmlviewer",
+ "name": "defaultHtmlViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "htmlviewer",
+ "name": "typedDataCardHtmlViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "DisabledBorderColor",
+ "value": "%Palette.DisabledBorderColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextLinkColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "export",
+ "name": "defaultExportStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextEmphasisFontWeight%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "%Palette.DisabledInputBkgColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.HoverButtonBkgColor%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextEmphasisFontSize%"
+ },
+ {
+ "property": "RadiusTopLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusTopRight",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomLeft",
+ "value": "10"
+ },
+ {
+ "property": "RadiusBottomRight",
+ "value": "10"
+ },
+ {
+ "property": "BorderColor",
+ "value": "ColorFade(Self.Fill, -15%)"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "4"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "addMedia",
+ "name": "defaultAddMediaStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Color",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "Size",
+ "value": "11"
+ },
+ {
+ "property": "Italic",
+ "value": "false"
+ },
+ {
+ "property": "Underline",
+ "value": "false"
+ },
+ {
+ "property": "Strikethrough",
+ "value": "false"
+ },
+ {
+ "property": "DisabledBorderColor",
+ "value": "RGBA(56, 56, 56, 1)"
+ },
+ {
+ "property": "PressedBorderColor",
+ "value": "ColorFade(Self.BorderColor, -20%)"
+ },
+ {
+ "property": "HoverBorderColor",
+ "value": "ColorFade(Self.BorderColor, 20%)"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "RGBA(186, 186, 186, 1)"
+ },
+ {
+ "property": "PressedColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "HoverColor",
+ "value": "Self.Color"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "RGBA(119, 119, 119, 1)"
+ },
+ {
+ "property": "PressedFill",
+ "value": "ColorFade(Self.Fill, -20%)"
+ },
+ {
+ "property": "HoverFill",
+ "value": "ColorFade(Self.Fill, 20%)"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Semibold"
+ },
+ {
+ "property": "Align",
+ "value": "%Align.RESERVED%.Center"
+ },
+ {
+ "property": "VerticalAlign",
+ "value": "%VerticalAlign.RESERVED%.Middle"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "audioPlayback",
+ "name": "defaultAudioPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "defaultRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "DisabledFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "PressedFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "HoverFill",
+ "value": "Self.Fill"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "FocusedBorderThickness",
+ "value": "2"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary2RectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary3RectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "primary3FadeRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.PrimaryColor3Fade%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "grayRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ReservedGrayColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "invertedBackgroundRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.InvertedBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "rectangle",
+ "name": "overlayRectangleStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.OverlayBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "typedDataCard",
+ "name": "defaultTypedDataCardStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "entityForm",
+ "name": "defaultEntityFormStyle",
+ "propertyValuesMap": [
+ {
+ "property": "TextColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InputTextColor",
+ "value": "%Palette.InputTextColor%"
+ },
+ {
+ "property": "DisabledTextColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputBackgroundColor",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Font",
+ "value": "%Font.RESERVED%.'Open Sans'"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%FontWeight.RESERVED%.Normal"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dataGrid",
+ "name": "defaultDataGridStyle",
+ "propertyValuesMap": [
+ {
+ "property": "LinkColor",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InvertedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "SelectedFill",
+ "value": "%Palette.PrimaryColor1Light%"
+ },
+ {
+ "property": "SelectedColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.PrimaryColor3Light%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputFill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingFont",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HeadingFontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HeadingSize",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HeadingFill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "powerbi",
+ "name": "defaultPowerbiStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "microsoftStreamPlayback",
+ "name": "defaultMicrosoftStreamPlaybackStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "BorderStyle",
+ "value": "%BorderStyle.RESERVED%.Solid"
+ },
+ {
+ "property": "BorderThickness",
+ "value": "0"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "form",
+ "name": "defaultFormStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "formViewer",
+ "name": "defaultFormViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "pdfViewer",
+ "name": "defaultPdfViewerStyle",
+ "propertyValuesMap": [
+ {
+ "property": "Fill",
+ "value": "%Palette.ScreenBkgColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "gallery",
+ "name": "defaultGalleryStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "richTextEditor",
+ "name": "defaultRichTextEditorStyle",
+ "propertyValuesMap": [
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ }
+ ]
+ },
+ {
+ "controlTemplateName": "dataTable",
+ "name": "defaultDataTableStyle",
+ "propertyValuesMap": [
+ {
+ "property": "LinkColor",
+ "value": "%Palette.TextLinkColor%"
+ },
+ {
+ "property": "PrimaryColor1",
+ "value": "%Palette.PrimaryColor1%"
+ },
+ {
+ "property": "PrimaryColor2",
+ "value": "%Palette.PrimaryColor2%"
+ },
+ {
+ "property": "PrimaryColor3",
+ "value": "%Palette.PrimaryColor3%"
+ },
+ {
+ "property": "Color",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "InvertedColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "DisabledColor",
+ "value": "%Palette.DisabledTextMainColor%"
+ },
+ {
+ "property": "SelectedFill",
+ "value": "%Palette.PrimaryColor1Light%"
+ },
+ {
+ "property": "SelectedColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "HoverFill",
+ "value": "%Palette.PrimaryColor3Light%"
+ },
+ {
+ "property": "HoverColor",
+ "value": "%Palette.TextMainColor%"
+ },
+ {
+ "property": "BorderColor",
+ "value": "%Palette.InputBorderColor%"
+ },
+ {
+ "property": "InputFill",
+ "value": "%Palette.InputBkgColor%"
+ },
+ {
+ "property": "Font",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "FontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "Size",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingFont",
+ "value": "%Palette.TextBodyFontFace%"
+ },
+ {
+ "property": "HeadingFontWeight",
+ "value": "%Palette.TextBodyFontWeight%"
+ },
+ {
+ "property": "HeadingSize",
+ "value": "%Palette.TextBodyFontSize%"
+ },
+ {
+ "property": "HeadingColor",
+ "value": "%Palette.TextMainColorInverted%"
+ },
+ {
+ "property": "HeadingFill",
+ "value": "%Palette.PrimaryColor1%"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Button_0.0.43.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Button_0.0.43.json
new file mode 100644
index 00000000..a67430f3
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Button_0.0.43.json
@@ -0,0 +1,2043 @@
+{
+ "AuthConfigProperties": [
+ {
+ "AccessibleLabel": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Align": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 40,
+ "WizardStep": null
+ },
+ "Appearance": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "BasePaletteColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 53,
+ "WizardStep": null
+ },
+ "BorderColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 29,
+ "WizardStep": null
+ },
+ "BorderRadius": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "BorderStyle": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 30,
+ "WizardStep": null
+ },
+ "BorderThickness": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "DisplayMode": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 27,
+ "WizardStep": null
+ },
+ "Font": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 33,
+ "WizardStep": null
+ },
+ "FontColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 31,
+ "WizardStep": null
+ },
+ "FontItalic": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 35,
+ "WizardStep": null
+ },
+ "FontSize": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "FontStrikethrough": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 37,
+ "WizardStep": null
+ },
+ "FontUnderline": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 36,
+ "WizardStep": null
+ },
+ "FontWeight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 34,
+ "WizardStep": null
+ },
+ "Height": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Icon": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 54,
+ "WizardStep": null
+ },
+ "IconRotation": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "IconStyle": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Layout": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingBottom": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingLeft": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingRight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingTop": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Text": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "VerticalAlign": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 42,
+ "WizardStep": null
+ },
+ "Visible": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Width": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "X": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Y": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ }
+ }
+ ],
+ "CommonEvents": [
+ {
+ "Description": "",
+ "DisplayName": "OnSelect",
+ "Hidden": false,
+ "IsPrimaryInput": true,
+ "Name": "OnSelect",
+ "PfxDefaultValue": null
+ }
+ ],
+ "ControlConstructor": "ButtonCanvas",
+ "ControlNamespace": "PowerApps.CoreControls",
+ "DisplayNameKey": "ButtonCanvas",
+ "IncludedProperties": [
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_X",
+ "DisplayNameResourceString": "CC_X",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "X",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_Y",
+ "DisplayNameResourceString": "CC_Y",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Y",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "96",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Width",
+ "DisplayNameResourceString": "Width",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Width",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "96",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "96"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "32",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Height",
+ "DisplayNameResourceString": "Height",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Height",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "32",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "32"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "true",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Visible",
+ "DisplayNameResourceString": "Visible",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Visible",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 4,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "DisplayMode",
+ "DisplayNameResourceString": "DisplayMode",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisplayMode",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 27,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Name": "Button",
+ "Properties": [
+ {
+ "Category": "data",
+ "DefaultValue": "true",
+ "Description": "Whether this field can be reached with Tab key.",
+ "DescriptionResourceString": "ButtonCanvas_AcceptsFocus_Desc",
+ "DisplayName": "Accepts focus",
+ "DisplayNameResourceString": "ButtonCanvas_AcceptsFocus",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "AcceptsFocus",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Label read out by screen readers.",
+ "DescriptionResourceString": "ButtonCanvas_AccessibleLabel_Desc",
+ "DisplayName": "Accessible label",
+ "DisplayNameResourceString": "ButtonCanvas_AccessibleLabel",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "AccessibleLabel",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Primary",
+ "Description": "Display as one of button types.",
+ "DescriptionResourceString": "ButtonCanvas_Appearance_Desc",
+ "DisplayName": "Type",
+ "DisplayNameResourceString": "ButtonCanvas_Appearance",
+ "EnumValues": [
+ {
+ "Description": "Primary",
+ "DisplayName": "Primary",
+ "IsDefaultValue": true,
+ "Name": "Primary",
+ "Value": "Primary"
+ },
+ {
+ "Description": "Secondary",
+ "DisplayName": "Secondary",
+ "IsDefaultValue": false,
+ "Name": "Secondary",
+ "Value": "Secondary"
+ },
+ {
+ "Description": "Outline",
+ "DisplayName": "Outline",
+ "IsDefaultValue": false,
+ "Name": "Outline",
+ "Value": "Outline"
+ },
+ {
+ "Description": "Subtle",
+ "DisplayName": "Subtle",
+ "IsDefaultValue": false,
+ "Name": "Subtle",
+ "Value": "Subtle"
+ },
+ {
+ "Description": "Transparent",
+ "DisplayName": "Transparent",
+ "IsDefaultValue": false,
+ "Name": "Transparent",
+ "Value": "Transparent"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Appearance",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Primary",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 2,
+ "WebDefaultValue": "Primary"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Button",
+ "Description": "Text to display in the button.",
+ "DescriptionResourceString": "ButtonCanvas_Text_Desc",
+ "DisplayName": "Text",
+ "DisplayNameResourceString": "ButtonCanvas_Text",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Text",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Icon to display in the button.",
+ "DescriptionResourceString": "ButtonCanvas_Icon_Desc",
+ "DisplayName": "Icon",
+ "DisplayNameResourceString": "ButtonCanvas_Icon",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Icon",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Icon before",
+ "Description": "Layout of the button",
+ "DescriptionResourceString": "ButtonCanvas_Layout_Desc",
+ "DisplayName": "Layout",
+ "DisplayNameResourceString": "ButtonCanvas_Layout",
+ "EnumValues": [
+ {
+ "Description": "Icon before",
+ "DisplayName": "Icon before",
+ "IsDefaultValue": true,
+ "Name": "IconBefore",
+ "Value": "Icon before"
+ },
+ {
+ "Description": "Icon after",
+ "DisplayName": "Icon after",
+ "IsDefaultValue": false,
+ "Name": "IconAfter",
+ "Value": "Icon after"
+ },
+ {
+ "Description": "Text only",
+ "DisplayName": "Text only",
+ "IsDefaultValue": false,
+ "Name": "TextOnly",
+ "Value": "Text only"
+ },
+ {
+ "Description": "Icon only",
+ "DisplayName": "Icon only",
+ "IsDefaultValue": false,
+ "Name": "IconOnly",
+ "Value": "Icon only"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Layout",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Icon before",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "Icon before"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Icon rotation in degrees",
+ "DescriptionResourceString": "ButtonCanvas_IconRotation_Desc",
+ "DisplayName": "Icon rotation",
+ "DisplayNameResourceString": "ButtonCanvas_IconRotation",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "IconRotation",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Outline",
+ "Description": "Whether the icon's style should be outline or filled.",
+ "DescriptionResourceString": "ButtonCanvas_IconStyle_Desc",
+ "DisplayName": "Icon style",
+ "DisplayNameResourceString": "ButtonCanvas_IconStyle",
+ "EnumValues": [
+ {
+ "Description": "Outline",
+ "DisplayName": "Outline",
+ "IsDefaultValue": true,
+ "Name": "Outline",
+ "Value": "Outline"
+ },
+ {
+ "Description": "Filled",
+ "DisplayName": "Filled",
+ "IsDefaultValue": false,
+ "Name": "Filled",
+ "Value": "Filled"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "IconStyle",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Outline",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "Outline"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Choose a color palette that's different from the theme.",
+ "DescriptionResourceString": "Base_Palette_Color_description",
+ "DisplayName": "Color palette",
+ "DisplayNameResourceString": "Base_Palette_Color",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BasePaletteColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The name of the family of fonts in which text appears",
+ "DescriptionResourceString": "Font_description",
+ "DisplayName": "Font",
+ "DisplayNameResourceString": "Font",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "Font",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Set the font size for displayed text.",
+ "DescriptionResourceString": "Font_Size_description",
+ "DisplayName": "Font size",
+ "DisplayNameResourceString": "Font_Size",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontSize",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of text in the control",
+ "DescriptionResourceString": "Font_Color_description",
+ "DisplayName": "Font color",
+ "DisplayNameResourceString": "Font_Color",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The weight of the text in a control",
+ "DescriptionResourceString": "Font_Weight_description",
+ "DisplayName": "Font weight",
+ "DisplayNameResourceString": "Font_Weight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontWeight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Italic",
+ "DescriptionResourceString": "Italic",
+ "DisplayName": "Italic",
+ "DisplayNameResourceString": "Italic",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontItalic",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Underline",
+ "DescriptionResourceString": "Underline",
+ "DisplayName": "Underline",
+ "DisplayNameResourceString": "Underline",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontUnderline",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Strikethrough",
+ "DescriptionResourceString": "Strikethrough",
+ "DisplayName": "Strikethrough",
+ "DisplayNameResourceString": "Strikethrough",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontStrikethrough",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Style of borders around the control",
+ "DescriptionResourceString": "BorderStyle_Description",
+ "DisplayName": "Border style",
+ "DisplayNameResourceString": "BorderStyle",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderStyle",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Thickness or width of borders around the control.",
+ "DescriptionResourceString": "BorderThickness_Description",
+ "DisplayName": "Border thickness",
+ "DisplayNameResourceString": "BorderThickness",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderThickness",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Color of borders around the control.",
+ "DescriptionResourceString": "BorderColor_Description",
+ "DisplayName": "Border color",
+ "DisplayNameResourceString": "BorderColor",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "BorderRadius_Description",
+ "DescriptionResourceString": "BorderRadius_Description",
+ "DisplayName": "BorderRadius",
+ "DisplayNameResourceString": "BorderRadius",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadius",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's top left corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusTopLeft_Description",
+ "DisplayName": "Top left border radius",
+ "DisplayNameResourceString": "BorderRadiusTopLeft",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusTopLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's top right corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusTopRight_Description",
+ "DisplayName": "Top right border radius",
+ "DisplayNameResourceString": "BorderRadiusTopRight",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusTopRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's bottom right corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusBottomRight_Description",
+ "DisplayName": "Bottom right border radius",
+ "DisplayNameResourceString": "BorderRadiusBottomRight",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusBottomRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's bottom left corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusBottomLeft_Description",
+ "DisplayName": "Bottom left border radius",
+ "DisplayNameResourceString": "BorderRadiusBottomLeft",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusBottomLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the top of the control.",
+ "DescriptionResourceString": "PaddingTop_Description",
+ "DisplayName": "Top",
+ "DisplayNameResourceString": "PaddingTop",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingTop",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the right of the control.",
+ "DescriptionResourceString": "PaddingRight_Description",
+ "DisplayName": "Right",
+ "DisplayNameResourceString": "PaddingRight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the bottom of the control.",
+ "DescriptionResourceString": "PaddingBottom_Description",
+ "DisplayName": "Bottom",
+ "DisplayNameResourceString": "PaddingBottom",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingBottom",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the left of the control.",
+ "DescriptionResourceString": "PaddingLeft_Description",
+ "DisplayName": "Left",
+ "DisplayNameResourceString": "PaddingLeft",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Display text using the selected text alignment.",
+ "DescriptionResourceString": "Align_Desc",
+ "DisplayName": "Align",
+ "DisplayNameResourceString": "Align",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Align",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Display text using the selected text verlitcal alignment.",
+ "DescriptionResourceString": "VerticalAlign_Desc",
+ "DisplayName": "Vertical align",
+ "DisplayNameResourceString": "VerticalAlign",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "VerticalAlign",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "TabIndex",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Tooltip",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "PCFTeamsTheme",
+ "DisplayNameResourceString": "",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PCFTeamsTheme",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Resources": [
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 1,
+ "ModifiedPath": "",
+ "Path": "/PCF/prop-types.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 2,
+ "ModifiedPath": "",
+ "Path": "/PCF/react-fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 3,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 4,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela-dom.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/common/js/container.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 6,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PCFControls/js/PCFControlWrapper.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 7,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PcfControlProxy/js/PcfControlProxy.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 8,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestTemplate\",\"Data\":{\"ConstructorName\":\"PowerApps.CoreControls.ButtonCanvas\",\"CustomControlId\":\"PowerApps.CoreControls.ButtonCanvas\",\"IsVirtual\":true,\"Properties\":{\"Resources\":[{\"Name\":\"/PCF/prop-types.js\",\"LoadOrder\":1,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/react-fela.js\",\"LoadOrder\":2,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela.js\",\"LoadOrder\":3,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela-dom.js\",\"LoadOrder\":4,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/common/js/container.js\",\"LoadOrder\":5,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PCFControls/js/PCFControlWrapper.js\",\"LoadOrder\":6,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\",\"LoadOrder\":7,\"Type\":0,\"LibraryName\":null}],\"GroupDefinitions\":null,\"DataSetDefinitions\":{},\"Properties\":{\"AcceptsFocus\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"true\"},\"AccessibleLabel\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Appearance\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Primary\"},\"Text\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Button\"},\"Icon\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Layout\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Icon before\"},\"IconRotation\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"IconStyle\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Outline\"},\"BasePaletteColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Font\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontSize\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontWeight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontItalic\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"FontUnderline\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"FontStrikethrough\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"BorderStyle\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderThickness\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadius\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusTopLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusTopRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusBottomRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusBottomLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingTop\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingBottom\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Align\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"VerticalAlign\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"TabIndex\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Tooltip\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"}},\"FeatureUsage\":[{\"IsRequired\":true,\"Name\":\"ExplicitCommonEvents\"}]},\"Events\":null,\"CommonEvents\":{\"OnSelect\":{\"EventName\":\"OnSelect\"}},\"DesignMap\":null,\"PropertyDependencies\":[],\"Children\":null}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 9,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestPropertyTypes\",\"Data\":{\"Properties\":[{\"Name\":\"AcceptsFocus\",\"Type\":\"TwoOptions\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"AccessibleLabel\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Appearance\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Text\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Icon\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FluentIcon\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Layout\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"IconRotation\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"IconStyle\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BasePaletteColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"ColorPalette\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Font\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Font\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontSize\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontWeight\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontWeight\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontItalic\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Italics\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontUnderline\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Underline\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontStrikethrough\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Strikethrough\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderStyle\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"BorderStyle\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderThickness\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Color\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadius\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusTopLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusTopRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusBottomRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusBottomLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingTop\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingBottom\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Align\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Align\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"VerticalAlign\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"VerticalAlign\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"TabIndex\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Tooltip\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PCFTeamsTheme\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"X\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Y\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Width\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Height\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Visible\",\"Type\":\"Boolean\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"DisplayMode\",\"Type\":\"DisplayMode\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true}]}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"PowerAppsControlInfo\",\"Data\":{\"TemplateVersion\":1,\"Version\":\"0.0.43\",\"IsFirstParty\":true}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 12,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/ButtonCanvas.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 11,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/libs/PowerAppsFluentIcons.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1033.resx",
+ "Type": 2
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1025.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1026.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1027.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1028.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1029.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1030.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1031.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1032.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1033.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1035.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1036.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1037.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1038.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1040.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1041.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1042.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1043.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1044.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1045.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1046.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1048.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1049.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1050.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1051.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1053.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1054.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1055.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1057.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1058.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1060.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1061.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1062.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1063.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1066.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1069.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1081.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1086.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1087.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.1110.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2052.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2070.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.2074.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3076.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3082.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_ButtonCanvas/strings/ButtonCanvas.3098.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 14,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"ButtonCanvas\":\"Button\",\"ButtonCanvas_Desc\":\"Let users to click or tap to perform an action.\",\"ButtonCanvas_Appearance\":\"Type\",\"ButtonCanvas_Appearance_Desc\":\"Display as one of button types.\",\"ButtonCanvas_Appearance_Secondary\":\"Secondary\",\"ButtonCanvas_Appearance_Primary\":\"Primary\",\"ButtonCanvas_Appearance_Outline\":\"Outline\",\"ButtonCanvas_Appearance_Subtle\":\"Subtle\",\"ButtonCanvas_Appearance_Transparent\":\"Transparent\",\"ButtonCanvas_Text\":\"Text\",\"ButtonCanvas_Text_Desc\":\"Text to display in the button.\",\"ButtonCanvas_Icon\":\"Icon\",\"ButtonCanvas_Icon_Desc\":\"Icon to display in the button.\",\"ButtonCanvas_Layout\":\"Layout\",\"ButtonCanvas_Layout_Desc\":\"Layout of the button\",\"ButtonCanvas_Layout_IconBefore\":\"Icon before\",\"ButtonCanvas_Layout_IconAfter\":\"Icon after\",\"ButtonCanvas_Layout_TextOnly\":\"Text only\",\"ButtonCanvas_Layout_IconOnly\":\"Icon only\",\"ButtonCanvas_IconRotation\":\"Icon rotation\",\"ButtonCanvas_IconRotation_Desc\":\"Icon rotation in degrees\",\"ButtonCanvas_IconStyle\":\"Icon style\",\"ButtonCanvas_IconStyle_Desc\":\"Whether the icon's style should be outline or filled.\",\"ButtonCanvas_IconStyle_Outline\":\"Outline\",\"ButtonCanvas_IconStyle_Filled\":\"Filled\",\"ButtonCanvas_AcceptsFocus\":\"Accepts focus\",\"ButtonCanvas_AcceptsFocus_Desc\":\"Whether this field can be reached with Tab key.\",\"ButtonCanvas_AccessibleLabel\":\"Accessible label\",\"ButtonCanvas_AccessibleLabel_Desc\":\"Label read out by screen readers.\",\"Base_Palette_Color\":\"Color palette\",\"Base_Palette_Color_description\":\"Choose a color palette that's different from the theme.\",\"Font_Size\":\"Font size\",\"Font_Size_description\":\"Set the font size for displayed text.\",\"Font\":\"Font\",\"Font_description\":\"The name of the family of fonts in which text appears\",\"Font_Color\":\"Font color\",\"Font_Color_description\":\"The color of text in the control\",\"Font_Weight\":\"Font weight\",\"Font_Weight_description\":\"The weight of the text in a control\",\"Italic\":\"Italic\",\"Underline\":\"Underline\",\"Strikethrough\":\"Strikethrough\",\"BorderStyle\":\"Border style\",\"BorderStyle_Description\":\"Style of borders around the control\",\"BorderStyle_Dashed\":\"Dashed\",\"BorderStyle_Dotted\":\"Dotted\",\"BorderStyle_None\":\"None\",\"BorderStyle_Solid\":\"Solid\",\"BorderThickness\":\"Border thickness\",\"BorderThickness_Description\":\"Thickness or width of borders around the control.\",\"BorderColor\":\"Border color\",\"BorderColor_Description\":\"Color of borders around the control.\",\"BorderRadiusTopLeft\":\"Top left border radius\",\"BorderRadiusTopLeft_Description\":\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\",\"BorderRadiusTopRight\":\"Top right border radius\",\"BorderRadiusTopRight_Description\":\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\",\"BorderRadiusBottomRight\":\"Bottom right border radius\",\"BorderRadiusBottomRight_Description\":\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\",\"BorderRadiusBottomLeft\":\"Bottom left border radius\",\"BorderRadiusBottomLeft_Description\":\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\",\"PaddingTop\":\"Top\",\"PaddingTop_Description\":\"Padding to apply to the top of the control.\",\"PaddingBottom\":\"Bottom\",\"PaddingBottom_Description\":\"Padding to apply to the bottom of the control.\",\"PaddingLeft\":\"Left\",\"PaddingLeft_Description\":\"Padding to apply to the left of the control.\",\"PaddingRight\":\"Right\",\"PaddingRight_Description\":\"Padding to apply to the right of the control.\",\"VerticalAlign\":\"Vertical align\",\"VerticalAlign_Desc\":\"Display text using the selected text verlitcal alignment.\",\"VerticalAlign_Top\":\"Top\",\"VerticalAlign_Middle\":\"Middle\",\"VerticalAlign_Bottom\":\"Bottom\",\"Align\":\"Align\",\"Align_Desc\":\"Display text using the selected text alignment.\",\"Align_Start\":\"Start\",\"Align_End\":\"End\",\"Align_Center\":\"Center\",\"Align_Justify\":\"Justify\",\"HoverBorderColor\":\"HoverBorderColor\",\"HoverBorderColor_Description\":\"Display border for hover state with selected color.\",\"PressedBorderColor\":\"PressedBorderColor\",\"PressedBorderColor_Description\":\"Display border for pressed state with selected color.\",\"DisabledBorderColor\":\"DisabledBorderColor\",\"DisabledBorderColor_Description\":\"Display border for disabled state with selected color.\",\"FocusedBorderColor\":\"FocusedBorderColor\",\"FocusedBorderColor_Description\":\"Display border for focused state with selected color.\"}}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/PCF/fluentui-react.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 0,
+ "ModifiedPath": "",
+ "Path": "Fluent/9.4.0/9.4.0",
+ "Type": 4
+ }
+ ],
+ "SubscribedFunctionalities": {
+ "autoDisabledViewState": "true",
+ "supportSetFocus": "true"
+ },
+ "Version": "0.0.43"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Spinner_1.4.3.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Spinner_1.4.3.json
new file mode 100644
index 00000000..05cc5d5f
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Spinner_1.4.3.json
@@ -0,0 +1,1480 @@
+{
+ "AuthConfigProperties": [
+ {
+ "AccessibleLabel": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Appearance": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "BasePaletteColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 53,
+ "WizardStep": null
+ },
+ "Font": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 33,
+ "WizardStep": null
+ },
+ "FontColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 31,
+ "WizardStep": null
+ },
+ "FontItalic": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 35,
+ "WizardStep": null
+ },
+ "FontSize": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "FontStrikethrough": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 37,
+ "WizardStep": null
+ },
+ "FontUnderline": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 36,
+ "WizardStep": null
+ },
+ "FontWeight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 34,
+ "WizardStep": null
+ },
+ "Height": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Label": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "LabelPosition": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "SpinnerColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 29,
+ "WizardStep": null
+ },
+ "SpinnerSize": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "TrackColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 29,
+ "WizardStep": null
+ },
+ "Visible": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Width": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "X": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Y": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ }
+ }
+ ],
+ "CommonEvents": [
+ {
+ "Description": "",
+ "DisplayName": "OnChange",
+ "Hidden": false,
+ "IsPrimaryInput": false,
+ "Name": "OnChange",
+ "PfxDefaultValue": null
+ }
+ ],
+ "ControlConstructor": "Spinner",
+ "ControlNamespace": "PowerApps.CoreControls",
+ "DisplayNameKey": "Spinner_Display_Key",
+ "IncludedProperties": [
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_X",
+ "DisplayNameResourceString": "CC_X",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "X",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_Y",
+ "DisplayNameResourceString": "CC_Y",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Y",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "200",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Width",
+ "DisplayNameResourceString": "Width",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Width",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "350",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "112"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "200",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Height",
+ "DisplayNameResourceString": "Height",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Height",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "350",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "112"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "true",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Visible",
+ "DisplayNameResourceString": "Visible",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Visible",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 4,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "DisplayMode",
+ "DisplayNameResourceString": "DisplayMode",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisplayMode",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 27,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Name": "Spinner",
+ "Properties": [
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Label for Spinner",
+ "DescriptionResourceString": "Spinner_Label_Desc_Key",
+ "DisplayName": "Label",
+ "DisplayNameResourceString": "Spinner_Label_Display_Key",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Label",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Accessibility Label for Spinner component",
+ "DescriptionResourceString": "Spinner_AccessibleLabel_Desc_Key",
+ "DisplayName": "Accessibility Label",
+ "DisplayNameResourceString": "Spinner_AccessibleLabel_Display_Key",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "AccessibleLabel",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Primary",
+ "Description": "Appearance of Spinner",
+ "DescriptionResourceString": "Spinner_Appearance_Desc_Key",
+ "DisplayName": "Appearance",
+ "DisplayNameResourceString": "Spinner_Appearance_Display_Key",
+ "EnumValues": [
+ {
+ "Description": "Inverted",
+ "DisplayName": "Inverted",
+ "IsDefaultValue": false,
+ "Name": "Inverted",
+ "Value": "Inverted"
+ },
+ {
+ "Description": "Primary",
+ "DisplayName": "Primary",
+ "IsDefaultValue": true,
+ "Name": "Primary",
+ "Value": "Primary"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Appearance",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Primary",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "Primary"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "After",
+ "Description": "Define position for the label around the Spinner",
+ "DescriptionResourceString": "Spinner_LabelPosition_Desc_Key",
+ "DisplayName": "Label Position",
+ "DisplayNameResourceString": "Spinner_LabelPosition_Display_Key",
+ "EnumValues": [
+ {
+ "Description": "Before",
+ "DisplayName": "Before",
+ "IsDefaultValue": false,
+ "Name": "Before",
+ "Value": "Before"
+ },
+ {
+ "Description": "After",
+ "DisplayName": "After",
+ "IsDefaultValue": true,
+ "Name": "After",
+ "Value": "After"
+ },
+ {
+ "Description": "Above",
+ "DisplayName": "Above",
+ "IsDefaultValue": false,
+ "Name": "Above",
+ "Value": "Above"
+ },
+ {
+ "Description": "Below",
+ "DisplayName": "Below",
+ "IsDefaultValue": false,
+ "Name": "Below",
+ "Value": "Below"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "LabelPosition",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "After",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "After"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Medium",
+ "Description": "Define size of Spinner",
+ "DescriptionResourceString": "Spinner_SpinnerSize_Desc_Key",
+ "DisplayName": "Spinner Size",
+ "DisplayNameResourceString": "Spinner_SpinnerSize_Display_Key",
+ "EnumValues": [
+ {
+ "Description": "Tiny",
+ "DisplayName": "Tiny",
+ "IsDefaultValue": false,
+ "Name": "Tiny",
+ "Value": "Tiny"
+ },
+ {
+ "Description": "ExtraSmall",
+ "DisplayName": "ExtraSmall",
+ "IsDefaultValue": false,
+ "Name": "ExtraSmall",
+ "Value": "ExtraSmall"
+ },
+ {
+ "Description": "Small",
+ "DisplayName": "Small",
+ "IsDefaultValue": false,
+ "Name": "Small",
+ "Value": "Small"
+ },
+ {
+ "Description": "Medium",
+ "DisplayName": "Medium",
+ "IsDefaultValue": true,
+ "Name": "Medium",
+ "Value": "Medium"
+ },
+ {
+ "Description": "Large",
+ "DisplayName": "Large",
+ "IsDefaultValue": false,
+ "Name": "Large",
+ "Value": "Large"
+ },
+ {
+ "Description": "ExtraLarge",
+ "DisplayName": "ExtraLarge",
+ "IsDefaultValue": false,
+ "Name": "ExtraLarge",
+ "Value": "ExtraLarge"
+ },
+ {
+ "Description": "Huge",
+ "DisplayName": "Huge",
+ "IsDefaultValue": false,
+ "Name": "Huge",
+ "Value": "Huge"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "SpinnerSize",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Medium",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "Medium"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Choose a color palette that's different from the theme.",
+ "DescriptionResourceString": "Base_Palette_Color_description",
+ "DisplayName": "Color palette",
+ "DisplayNameResourceString": "Base_Palette_Color",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BasePaletteColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The name of the family of fonts in which text appears",
+ "DescriptionResourceString": "Font_description",
+ "DisplayName": "Font",
+ "DisplayNameResourceString": "Font",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "Font",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Set the font size for displayed text.",
+ "DescriptionResourceString": "Font_Size_description",
+ "DisplayName": "Font size",
+ "DisplayNameResourceString": "Font_Size",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontSize",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of text in the control",
+ "DescriptionResourceString": "Font_Color_description",
+ "DisplayName": "Font color",
+ "DisplayNameResourceString": "Font_Color",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The weight of the text in a control",
+ "DescriptionResourceString": "Font_Weight_description",
+ "DisplayName": "Font weight",
+ "DisplayNameResourceString": "Font_Weight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontWeight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Italic",
+ "DescriptionResourceString": "Italic",
+ "DisplayName": "Italic",
+ "DisplayNameResourceString": "Italic",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontItalic",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Underline",
+ "DescriptionResourceString": "Underline",
+ "DisplayName": "Underline",
+ "DisplayNameResourceString": "Underline",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontUnderline",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Strikethrough",
+ "DescriptionResourceString": "Strikethrough",
+ "DisplayName": "Strikethrough",
+ "DisplayNameResourceString": "Strikethrough",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontStrikethrough",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of the spinner",
+ "DescriptionResourceString": "SpinnerColor_description",
+ "DisplayName": "Spinner color",
+ "DisplayNameResourceString": "SpinnerColor",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "SpinnerColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of the spinner's track",
+ "DescriptionResourceString": "TrackColor_description",
+ "DisplayName": "Track color",
+ "DisplayNameResourceString": "TrackColor",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "TrackColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "TabIndex",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Tooltip",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "PCFTeamsTheme",
+ "DisplayNameResourceString": "",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PCFTeamsTheme",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Resources": [
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 1,
+ "ModifiedPath": "",
+ "Path": "/PCF/prop-types.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 2,
+ "ModifiedPath": "",
+ "Path": "/PCF/react-fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 3,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 4,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela-dom.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/common/js/container.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 6,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PCFControls/js/PCFControlWrapper.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 7,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PcfControlProxy/js/PcfControlProxy.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 8,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestTemplate\",\"Data\":{\"ConstructorName\":\"PowerApps.CoreControls.Spinner\",\"CustomControlId\":\"PowerApps.CoreControls.Spinner\",\"IsVirtual\":true,\"Properties\":{\"Resources\":[{\"Name\":\"/PCF/prop-types.js\",\"LoadOrder\":1,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/react-fela.js\",\"LoadOrder\":2,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela.js\",\"LoadOrder\":3,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela-dom.js\",\"LoadOrder\":4,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/common/js/container.js\",\"LoadOrder\":5,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PCFControls/js/PCFControlWrapper.js\",\"LoadOrder\":6,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\",\"LoadOrder\":7,\"Type\":0,\"LibraryName\":null}],\"GroupDefinitions\":null,\"DataSetDefinitions\":{},\"Properties\":{\"Label\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"AccessibleLabel\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Appearance\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Primary\"},\"LabelPosition\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"After\"},\"SpinnerSize\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Medium\"},\"BasePaletteColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Font\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontSize\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontWeight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontItalic\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"FontUnderline\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"FontStrikethrough\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"SpinnerColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"TrackColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"TabIndex\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Tooltip\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"}},\"FeatureUsage\":null},\"Events\":null,\"CommonEvents\":null,\"DesignMap\":null,\"PropertyDependencies\":[],\"Children\":null}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 9,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestPropertyTypes\",\"Data\":{\"Properties\":[{\"Name\":\"Label\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"AccessibleLabel\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Appearance\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"LabelPosition\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"SpinnerSize\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BasePaletteColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"ColorPalette\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Font\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Font\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontSize\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontWeight\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontWeight\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontItalic\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Italics\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontUnderline\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Underline\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontStrikethrough\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Strikethrough\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"SpinnerColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Color\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"TrackColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Color\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"TabIndex\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Tooltip\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PCFTeamsTheme\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"X\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Y\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Width\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Height\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Visible\",\"Type\":\"Boolean\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"DisplayMode\",\"Type\":\"DisplayMode\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true}]}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"PowerAppsControlInfo\",\"Data\":{\"TemplateVersion\":1,\"Version\":\"1.4.3\",\"IsFirstParty\":true}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 11,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/bundle.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1033.resx",
+ "Type": 2
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1025.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1026.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1027.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1028.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1029.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1030.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1031.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1032.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1033.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1035.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1036.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1037.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1038.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1040.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1041.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1042.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1043.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1044.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1045.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1046.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1048.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1049.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1050.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1051.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1053.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1054.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1055.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1057.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1058.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1060.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1061.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1062.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1063.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1066.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1069.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1081.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1086.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1087.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.1110.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2052.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2070.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.2074.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3076.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3082.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_Spinner/strings/Spinner.3098.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"Spinner_Display_Key\":\"Spinner\",\"Spinner_Desc_Key\":\"Let users visualise spinner/loading effect\",\"Spinner_Label_Display_Key\":\"Label\",\"Spinner_Label_Desc_Key\":\"Label for Spinner\",\"Spinner_AccessibleLabel_Display_Key\":\"Accessibility Label\",\"Spinner_AccessibleLabel_Desc_Key\":\"Accessibility Label for Spinner component\",\"Spinner_Appearance_Display_Key\":\"Appearance\",\"Spinner_Appearance_Desc_Key\":\"Appearance of Spinner\",\"Spinner_LabelPosition_Display_Key\":\"Label Position\",\"Spinner_LabelPosition_Desc_Key\":\"Define position for the label around the Spinner\",\"Spinner_SpinnerSize_Display_Key\":\"Spinner Size\",\"Spinner_SpinnerSize_Desc_Key\":\"Define size of Spinner\",\"Spinner_LabelPosition_Before\":\"Before\",\"Spinner_LabelPosition_After\":\"After\",\"Spinner_LabelPosition_Above\":\"Above\",\"Spinner_LabelPosition_Below\":\"Below\",\"Spinner_SpinnerSize_Tiny\":\"Tiny\",\"Spinner_SpinnerSize_ExtraSmall\":\"ExtraSmall\",\"Spinner_SpinnerSize_Small\":\"Small\",\"Spinner_SpinnerSize_Medium\":\"Medium\",\"Spinner_SpinnerSize_Large\":\"Large\",\"Spinner_SpinnerSize_ExtraLarge\":\"ExtraLarge\",\"Spinner_SpinnerSize_Huge\":\"Huge\",\"Spinner_Appearance_Primary\":\"Primary\",\"Spinner_Appearance_Inverted\":\"Inverted\",\"Base_Palette_Color\":\"Color palette\",\"Base_Palette_Color_description\":\"Choose a color palette that's different from the theme.\",\"Font_Size\":\"Font size\",\"Font_Size_description\":\"Set the font size for displayed text.\",\"Font\":\"Font\",\"Font_description\":\"The name of the family of fonts in which text appears\",\"Font_Color\":\"Font color\",\"Font_Color_description\":\"The color of text in the control\",\"Font_Weight\":\"Font weight\",\"Font_Weight_description\":\"The weight of the text in a control\",\"Italic\":\"Italic\",\"Underline\":\"Underline\",\"Strikethrough\":\"Strikethrough\",\"SpinnerColor\":\"Spinner color\",\"SpinnerColor_description\":\"The color of the spinner\",\"TrackColor\":\"Track color\",\"TrackColor_description\":\"The color of the spinner's track\"}}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/PCF/fluentui-react.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 0,
+ "ModifiedPath": "",
+ "Path": "React/16.8.6/16.14.0",
+ "Type": 4
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 0,
+ "ModifiedPath": "",
+ "Path": "Fluent/9.4.0/9.4.0",
+ "Type": 4
+ }
+ ],
+ "Version": "1.4.3"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Table_1.0.242.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Table_1.0.242.json
new file mode 100644
index 00000000..09906a06
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Table_1.0.242.json
@@ -0,0 +1,2702 @@
+{
+ "AuthConfigProperties": [
+ {
+ "BasePaletteColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 53,
+ "WizardStep": null
+ },
+ "DateOnlyFormat": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "DateTimeFormat": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "EnableMultipleSelection": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "EnableRangeSelection": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "EnableSorting": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Font": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 33,
+ "WizardStep": null
+ },
+ "FontColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 31,
+ "WizardStep": null
+ },
+ "FontSize": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "FontWeight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 34,
+ "WizardStep": null
+ },
+ "HeaderFont": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 33,
+ "WizardStep": null
+ },
+ "HeaderFontColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 31,
+ "WizardStep": null
+ },
+ "HeaderFontSize": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "HeaderFontWeight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 34,
+ "WizardStep": null
+ },
+ "Height": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Items": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": true,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "NoDataText": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "ReflowBehavior": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Visible": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Width": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "X": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Y": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ }
+ }
+ ],
+ "ControlConstructor": "PowerAppsOneGrid",
+ "ControlNamespace": "Microsoft.PowerApps",
+ "DisplayNameKey": "PowerAppsOneGrid_Override_Name",
+ "Events": [
+ {
+ "Description": "Event fired when a cell value is changed",
+ "DisplayName": "Cell value changed event",
+ "Hidden": true,
+ "IsPrimaryInput": false,
+ "Name": "onCellValueChange",
+ "PfxDefaultValue": null
+ },
+ {
+ "Description": "Event fired when a filter is changed",
+ "DisplayName": "Filter changed event",
+ "Hidden": true,
+ "IsPrimaryInput": false,
+ "Name": "onFilter",
+ "PfxDefaultValue": null
+ },
+ {
+ "Description": "Event fired when a cell link is executed",
+ "DisplayName": "Cell navigation event",
+ "Hidden": true,
+ "IsPrimaryInput": false,
+ "Name": "onNavigate",
+ "PfxDefaultValue": null
+ },
+ {
+ "Description": "Event fired when a row selection state is changed",
+ "DisplayName": "Row select changed event",
+ "Hidden": true,
+ "IsPrimaryInput": false,
+ "Name": "onRowSelect",
+ "PfxDefaultValue": null
+ },
+ {
+ "Description": "Event fired when a save finished",
+ "DisplayName": "Grid save event",
+ "Hidden": true,
+ "IsPrimaryInput": false,
+ "Name": "onSave",
+ "PfxDefaultValue": null
+ },
+ {
+ "Description": "Event fired when a row selection state is changed",
+ "DisplayName": "Row select changed event",
+ "Hidden": false,
+ "IsPrimaryInput": false,
+ "Name": "OnSelect",
+ "PfxDefaultValue": null
+ }
+ ],
+ "IncludedProperties": [
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_X",
+ "DisplayNameResourceString": "CC_X",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "X",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_Y",
+ "DisplayNameResourceString": "CC_Y",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Y",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "800",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Width",
+ "DisplayNameResourceString": "Width",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Width",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "If(Self.X + 800 > Parent.Width, Parent.Width - Self.X, 800)",
+ "PhoneDefaultValue": "800",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "800"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "500",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Height",
+ "DisplayNameResourceString": "Height",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Height",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "If(Self.Y + 500 > Parent.Height, Parent.Height - Self.Y, 500)",
+ "PhoneDefaultValue": "500",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "500"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "true",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Visible",
+ "DisplayNameResourceString": "Visible",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Visible",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 4,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "DisplayMode",
+ "DisplayNameResourceString": "DisplayMode",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisplayMode",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 27,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Tooltip",
+ "DisplayNameResourceString": "Tooltip",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Tooltip",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Name": "Table",
+ "Properties": [
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Label read out by screen readers.",
+ "DescriptionResourceString": "PowerAppsOneGrid_AccessibleLabel_Desc_Key",
+ "DisplayName": "Accessible label",
+ "DisplayNameResourceString": "PowerAppsOneGrid_AccessibleLabel_Display_Key",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "AccessibleLabel",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable editing in the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableEditing_Desc",
+ "DisplayName": "Enable editing",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableEditing_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable editing in the grid",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Yes",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable editing in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "No",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableEditing",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Disable editing in the child items grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_DisableChildItemsEditing_Desc",
+ "DisplayName": "Disable editing in child items grid",
+ "DisplayNameResourceString": "PowerAppsOneGrid_DisableChildItemsEditing_Name",
+ "EnumValues": [
+ {
+ "Description": "Disable editing in the child items grid",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Yes",
+ "Value": "yes"
+ },
+ {
+ "Description": "Allow editing in the child items grid",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "No",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisableChildItemsEditing",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable filtering in the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableFiltering_Desc",
+ "DisplayName": "Enable filtering",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableFiltering_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable filtering in grid control",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable filtering in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableFiltering",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Enable or disable sorting in the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableSorting_Desc",
+ "DisplayName": "Enable sorting",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableSorting_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable sorting in grid control",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable sorting in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableSorting",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable grouping in the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableGrouping_Desc",
+ "DisplayName": "Enable grouping",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableGrouping_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable grouping in grid control",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable grouping in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableGrouping",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable aggregation in the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableAggregation_Desc",
+ "DisplayName": "Enable aggregation",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableAggregation_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable aggregation in grid control",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable aggregation in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableAggregation",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Allow column reordering",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableColumnMoving_Desc",
+ "DisplayName": "Allow column reordering (preview)",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableColumnMoving_Name",
+ "EnumValues": [
+ {
+ "Description": "Columns can be reordered",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Columns cannot be reordered",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableColumnMoving",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Determines whether users can select multiple rows",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableMultipleSelection_Desc",
+ "DisplayName": "Enable multi-select",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableMultipleSelection_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable multiple row selection in the grid",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable multiple row selection in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableMultipleSelection",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Determines whether users can select a subset of the grid to copy to the clipboard",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableRangeSelection_Desc",
+ "DisplayName": "Allow range selection",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableRangeSelection_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable range selection in the grid",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable range selection in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableRangeSelection",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable the jump bar footer panel",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableJumpBar_Desc",
+ "DisplayName": "Enable jump bar",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableJumpBar_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable the jump bar footer panel for the grid control.",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Show or hide the jump bar automatically for the grid control.",
+ "DisplayName": "Auto",
+ "IsDefaultValue": false,
+ "Name": "Auto",
+ "Value": "auto"
+ },
+ {
+ "Description": "Disable the jump bar footer panel for the grid control.",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableJumpBar",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable paging for grid. This will disable infinite scrolling.",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnablePagination_Desc",
+ "DisplayName": "Enable pagination",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnablePagination_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable pagination for the grid control. This will disable infinite scrolling.",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable pagination for the grid control. This will enable infinite scrolling.",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnablePagination",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Enable or disable custom colors for OptionSet cells of the grid control.",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableDropdownColor_Desc",
+ "DisplayName": "Enable OptionSet colors",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableDropdownColor_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable custom colors for OptionSet cells within the grid control.",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable custom colors for OptionSet cells within the grid control. It will use default colors provided by the grid.",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableDropdownColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Show or hide status icons for the rows",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableStatusIcons_Desc",
+ "DisplayName": "Show row status icons",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableStatusIcons_Name",
+ "EnumValues": [
+ {
+ "Description": "Show status icons for the row",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable row status icons for the rows",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableStatusIcons",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "no",
+ "Description": "Show or hide data type icons in the column headers",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableTypeIcons_Desc",
+ "DisplayName": "Show data type icons",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableTypeIcons_Name",
+ "EnumValues": [
+ {
+ "Description": "Show icons in the column headers",
+ "DisplayName": "Yes",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable header data type icons in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": true,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableTypeIcons",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "no",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "no"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "none",
+ "Description": "Configure what navigation types are allowed within the grid",
+ "DescriptionResourceString": "PowerAppsOneGrid_NavigationTypesAllowed_Desc",
+ "DisplayName": "Navigation types allowed",
+ "DisplayNameResourceString": "PowerAppsOneGrid_NavigationTypesAllowed_Name",
+ "EnumValues": [
+ {
+ "Description": "Allows navigation on primary and lookup columns",
+ "DisplayName": "All",
+ "IsDefaultValue": true,
+ "Name": "All",
+ "Value": "all"
+ },
+ {
+ "Description": "Only allows navigation on the primary column for the entity",
+ "DisplayName": "Primary only",
+ "IsDefaultValue": false,
+ "Name": "PrimaryOnly",
+ "Value": "primaryOnly"
+ },
+ {
+ "Description": "Does not allow any entity record navigation",
+ "DisplayName": "None",
+ "IsDefaultValue": false,
+ "Name": "None",
+ "Value": "none"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "NavigationTypesAllowed",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "none",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "none"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Reflow",
+ "Description": "Define how the grid will reflow (switch display mode) based on its width",
+ "DescriptionResourceString": "PowerAppsOneGrid_ReflowBehavior_Desc",
+ "DisplayName": "Reflow behavior",
+ "DisplayNameResourceString": "PowerAppsOneGrid_ReflowBehavior_Name",
+ "EnumValues": [
+ {
+ "Description": "Allow grid to switch display mode based on its width",
+ "DisplayName": "Reflow",
+ "IsDefaultValue": true,
+ "Name": "Reflow",
+ "Value": "Reflow"
+ },
+ {
+ "Description": "Always display as a grid",
+ "DisplayName": "Grid only",
+ "IsDefaultValue": false,
+ "Name": "GridOnly",
+ "Value": "GridOnly"
+ },
+ {
+ "Description": "Always display as a list",
+ "DisplayName": "List only",
+ "IsDefaultValue": false,
+ "Name": "ListOnly",
+ "Value": "ListOnly"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ReflowBehavior",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Reflow",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "Reflow"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Show or hide avatars in the table",
+ "DescriptionResourceString": "PowerAppsOneGrid_ShowAvatar_Desc",
+ "DisplayName": "Show avatar",
+ "DisplayNameResourceString": "PowerAppsOneGrid_ShowAvatar_Name",
+ "EnumValues": [
+ {
+ "Description": "Show avatars in the table",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Hide avatars in the table",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ShowAvatar",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Show or hide footer in the table",
+ "DescriptionResourceString": "PowerAppsOneGrid_ShowFooter_Desc",
+ "DisplayName": "Show footer",
+ "DisplayNameResourceString": "PowerAppsOneGrid_ShowFooter_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable footer in the table",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable footer in the table",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ShowFooter",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Show or hide column headers in the table",
+ "DescriptionResourceString": "PowerAppsOneGrid_ShowColumnHeaders_Desc",
+ "DisplayName": "Show column headers",
+ "DisplayNameResourceString": "PowerAppsOneGrid_ShowColumnHeaders_Name",
+ "EnumValues": [
+ {
+ "Description": "Show column headers in the table",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Hide column headers in the table",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ShowColumnHeaders",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Full logical name of the control (__) that provides custom cell renders and/or editors for the Power Apps grid control",
+ "DescriptionResourceString": "PowerAppsOneGrid_GridCustomizerControlFullName_Desc",
+ "DisplayName": "Customizer control",
+ "DisplayNameResourceString": "PowerAppsOneGrid_GridCustomizerControlFullName_Name",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "GridCustomizerControlFullName",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Grid Actions",
+ "DescriptionResourceString": "PowerAppsOneGrid_GridActions_Desc",
+ "DisplayName": "Grid Actions",
+ "DisplayNameResourceString": "PowerAppsOneGrid_GridActions_Name",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "GridActions",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 5,
+ "Usage": 1,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Choose a color palette that's different from the theme.",
+ "DescriptionResourceString": "Base_Palette_Color_description",
+ "DisplayName": "Color palette",
+ "DisplayNameResourceString": "Base_Palette_Color",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BasePaletteColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The name of the font family for the text.",
+ "DescriptionResourceString": "Font_description",
+ "DisplayName": "Font",
+ "DisplayNameResourceString": "Font",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "Font",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of the text.",
+ "DescriptionResourceString": "Font_Color_description",
+ "DisplayName": "Font color",
+ "DisplayNameResourceString": "Font_Color",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The default font size for all displayed text",
+ "DescriptionResourceString": "Font_Size_description",
+ "DisplayName": "Font size",
+ "DisplayNameResourceString": "Font_Size",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontSize",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The weight of the text.",
+ "DescriptionResourceString": "Font_Weight_description",
+ "DisplayName": "Font weight",
+ "DisplayNameResourceString": "Font_Weight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontWeight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The name of the font family for the header text.",
+ "DescriptionResourceString": "Header_Font_description",
+ "DisplayName": "Header font",
+ "DisplayNameResourceString": "Header_Font",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "HeaderFont",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of the column header text.",
+ "DescriptionResourceString": "Header_Font_Color_description",
+ "DisplayName": "Header font color",
+ "DisplayNameResourceString": "Header_Font_Color",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "HeaderFontColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The font size for the column headers",
+ "DescriptionResourceString": "Header_Font_Size_description",
+ "DisplayName": "Header font size",
+ "DisplayNameResourceString": "Header_Font_Size",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "HeaderFontSize",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The weight of the column header text.",
+ "DescriptionResourceString": "Header_Font_Weight_description",
+ "DisplayName": "Header font weight",
+ "DisplayNameResourceString": "Header_Font_Weight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "HeaderFontWeight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The message that the user sees when there are no records to show in the Table control.",
+ "DescriptionResourceString": "No_Data_Text_Desc",
+ "DisplayName": "No data text",
+ "DisplayNameResourceString": "No_Data_Text",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "NoDataText",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "TabIndex",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "none",
+ "Description": "The format we want for date time columns.",
+ "DescriptionResourceString": "Date_Time_Format_description",
+ "DisplayName": "Date time format",
+ "DisplayNameResourceString": "Date_Time_Format",
+ "EnumValues": [
+ {
+ "Description": "Long date",
+ "DisplayName": "Long date",
+ "IsDefaultValue": false,
+ "Name": "LongDate",
+ "Value": "longDate"
+ },
+ {
+ "Description": "Short date",
+ "DisplayName": "Short date",
+ "IsDefaultValue": false,
+ "Name": "ShortDate",
+ "Value": "shortDate"
+ },
+ {
+ "Description": "Short date time",
+ "DisplayName": "Short date time",
+ "IsDefaultValue": false,
+ "Name": "ShortDateTime",
+ "Value": "shortDateTime"
+ },
+ {
+ "Description": "None",
+ "DisplayName": "None",
+ "IsDefaultValue": true,
+ "Name": "None",
+ "Value": "none"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DateTimeFormat",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "'PowerAppsOneGrid.DateTimeFormat'.ShortDateTime",
+ "PhoneDefaultValue": "ShortDateTime",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "ShortDateTime"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "none",
+ "Description": "The format we want for date only columns.",
+ "DescriptionResourceString": "Date_Only_Format_description",
+ "DisplayName": "Date only format",
+ "DisplayNameResourceString": "Date_Only_Format",
+ "EnumValues": [
+ {
+ "Description": "Long date",
+ "DisplayName": "Long date",
+ "IsDefaultValue": false,
+ "Name": "LongDate",
+ "Value": "longDate"
+ },
+ {
+ "Description": "Short date",
+ "DisplayName": "Short date",
+ "IsDefaultValue": false,
+ "Name": "ShortDate",
+ "Value": "shortDate"
+ },
+ {
+ "Description": "None",
+ "DisplayName": "None",
+ "IsDefaultValue": true,
+ "Name": "None",
+ "Value": "none"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DateOnlyFormat",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "'PowerAppsOneGrid.DateOnlyFormat'.ShortDate",
+ "PhoneDefaultValue": "ShortDate",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "ShortDate"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "yes",
+ "Description": "Determines whether user can hide status column. This is deprecated, please use the allow multiple selection property instead.",
+ "DescriptionResourceString": "PowerAppsOneGrid_EnableStatusColumn_Desc",
+ "DisplayName": "(Deprecated) Enable status column",
+ "DisplayNameResourceString": "PowerAppsOneGrid_EnableStatusColumn_Name",
+ "EnumValues": [
+ {
+ "Description": "Enable status column in the grid",
+ "DisplayName": "Yes",
+ "IsDefaultValue": true,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "Disable status column in the grid",
+ "DisplayName": "No",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "EnableStatusColumn",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "yes",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": "yes"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "",
+ "DisplayNameResourceString": "",
+ "EnumValues": [
+ {
+ "Description": "",
+ "DisplayName": "",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "",
+ "DisplayName": "",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisableStatusColumn",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "",
+ "DisplayNameResourceString": "",
+ "EnumValues": [
+ {
+ "Description": "",
+ "DisplayName": "",
+ "IsDefaultValue": false,
+ "Name": "Enable",
+ "Value": "yes"
+ },
+ {
+ "Description": "",
+ "DisplayName": "",
+ "IsDefaultValue": false,
+ "Name": "Disable",
+ "Value": "no"
+ }
+ ],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisableStatusColumnSavingIcons",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items_FieldProperties",
+ "DescriptionResourceString": "Items_FieldProperties",
+ "DisplayName": "Items_FieldProperties",
+ "DisplayNameResourceString": "Items_FieldProperties",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Items_FieldProperties",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 5,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the grid data",
+ "DescriptionResourceString": "Items to use for the grid data",
+ "DisplayName": "Items(##PCFDatasetItems##)",
+ "DisplayNameResourceString": "Items",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": true,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": true,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Items",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 26,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the grid data",
+ "DescriptionResourceString": "Items to use for the grid data",
+ "DisplayName": "Items(##PCFDatasetSelected##)",
+ "DisplayNameResourceString": "Items",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": true,
+ "IsResettableToManifestDefault": false,
+ "Name": "Selected",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "Items",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 5,
+ "Usage": 1,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the grid data",
+ "DescriptionResourceString": "Items to use for the grid data",
+ "DisplayName": "Items(##PCFDatasetSelectedItems##)",
+ "DisplayNameResourceString": "Items",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": true,
+ "IsResettableToManifestDefault": false,
+ "Name": "SelectedItems",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "Items",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 26,
+ "Usage": 1,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the child grid data",
+ "DescriptionResourceString": "Items to use for the child grid data",
+ "DisplayName": "Child items(##PCFDatasetItems##)",
+ "DisplayNameResourceString": "Child items",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ChildItems_Items",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 26,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the child grid data",
+ "DescriptionResourceString": "Items to use for the child grid data",
+ "DisplayName": "Child items(##PCFDatasetSelected##)",
+ "DisplayNameResourceString": "Child items",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ChildItems_Selected",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "ChildItems_Items",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 5,
+ "Usage": 1,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Items to use for the child grid data",
+ "DescriptionResourceString": "Items to use for the child grid data",
+ "DisplayName": "Child items(##PCFDatasetSelectedItems##)",
+ "DisplayNameResourceString": "Child items",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ChildItems_SelectedItems",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "ChildItems_Items",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 26,
+ "Usage": 1,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Parent id to use for child items",
+ "DescriptionResourceString": "ChildItems_ParentId_Desc",
+ "DisplayName": "Child Items Parent Id",
+ "DisplayNameResourceString": "ChildItems_ParentId_Name",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "ParentId",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "ChildItems_Items",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "PCFTeamsTheme",
+ "DisplayNameResourceString": "",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PCFTeamsTheme",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ }
+ ],
+ "PropertyDependencies": [
+ {
+ "Input": "Items",
+ "Output": "Selected",
+ "RequiredFor": ""
+ },
+ {
+ "Input": "Items",
+ "Output": "SelectedItems",
+ "RequiredFor": ""
+ },
+ {
+ "Input": "ChildItems_Items",
+ "Output": "ChildItems_Selected",
+ "RequiredFor": ""
+ },
+ {
+ "Input": "ChildItems_Items",
+ "Output": "ChildItems_SelectedItems",
+ "RequiredFor": ""
+ }
+ ],
+ "Resources": [
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 1,
+ "ModifiedPath": "",
+ "Path": "/PCF/prop-types.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 2,
+ "ModifiedPath": "",
+ "Path": "/PCF/react-fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 3,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 4,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela-dom.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/common/js/container.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 6,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PCFControls/js/PCFControlWrapper.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 7,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PcfControlProxy/js/PcfControlProxy.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 8,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestTemplate\",\"Data\":{\"ConstructorName\":\"Microsoft.PowerApps.PowerAppsOneGrid\",\"CustomControlId\":\"Microsoft.PowerApps.PowerAppsOneGrid\",\"IsVirtual\":true,\"Properties\":{\"Resources\":[{\"Name\":\"/PCF/prop-types.js\",\"LoadOrder\":1,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/react-fela.js\",\"LoadOrder\":2,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela.js\",\"LoadOrder\":3,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela-dom.js\",\"LoadOrder\":4,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/common/js/container.js\",\"LoadOrder\":5,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PCFControls/js/PCFControlWrapper.js\",\"LoadOrder\":6,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\",\"LoadOrder\":7,\"Type\":0,\"LibraryName\":null}],\"GroupDefinitions\":null,\"DataSetDefinitions\":{\"Items\":{\"DisplayName\":\"Items\",\"Type\":\"Grid\",\"Columns\":{},\"Primary\":true,\"InitialDataSetFetch\":true,\"CDSDataSetOptions\":null},\"ChildItems\":{\"DisplayName\":\"Child items\",\"Type\":\"Grid\",\"Columns\":{\"0\":{\"Required\":false,\"Usage\":2,\"Name\":\"ParentId\",\"Type\":\"Lookup_Simple\"}},\"Primary\":false,\"InitialDataSetFetch\":true,\"CDSDataSetOptions\":null}},\"Properties\":{\"AccessibleLabel\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"EnableEditing\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"DisableChildItemsEditing\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableFiltering\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableSorting\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"EnableGrouping\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableAggregation\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableColumnMoving\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableMultipleSelection\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableRangeSelection\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"EnableJumpBar\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnablePagination\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableDropdownColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableStatusIcons\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"EnableTypeIcons\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"no\"},\"NavigationTypesAllowed\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"none\"},\"ReflowBehavior\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Reflow\"},\"ShowAvatar\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"ShowFooter\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"ShowColumnHeaders\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"GridCustomizerControlFullName\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"GridActions\":{\"Required\":true,\"Usage\":2,\"DefaultValue\":\"\"},\"BasePaletteColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Font\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontSize\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontWeight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"HeaderFont\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"HeaderFontColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"HeaderFontSize\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"HeaderFontWeight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"NoDataText\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"TabIndex\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"DateTimeFormat\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"none\"},\"DateOnlyFormat\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"none\"},\"EnableStatusColumn\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"yes\"},\"DisableStatusColumn\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"DisableStatusColumnSavingIcons\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Items_FieldProperties\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"\"},\"Items\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Selected\":{\"Required\":true,\"Usage\":2,\"DefaultValue\":\"\"},\"SelectedItems\":{\"Required\":true,\"Usage\":2,\"DefaultValue\":\"\"},\"ChildItems_Items\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"ChildItems_Selected\":{\"Required\":true,\"Usage\":2,\"DefaultValue\":\"\"},\"ChildItems_SelectedItems\":{\"Required\":true,\"Usage\":2,\"DefaultValue\":\"\"},\"ParentId\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"\"}},\"FeatureUsage\":[{\"IsRequired\":true,\"Name\":\"Utility\"},{\"IsRequired\":true,\"Name\":\"ExplicitCommonEvents\"},{\"IsRequired\":true,\"Name\":\"PreventDefaultSort\"}]},\"Events\":{\"onCellValueChange\":{\"EventName\":\"onCellValueChange\"},\"onFilter\":{\"EventName\":\"onFilter\"},\"onNavigate\":{\"EventName\":\"onNavigate\"},\"onRowSelect\":{\"EventName\":\"onRowSelect\"},\"onSave\":{\"EventName\":\"onSave\"},\"OnSelect\":{\"EventName\":\"OnSelect\"}},\"CommonEvents\":null,\"DesignMap\":null,\"PropertyDependencies\":[{\"Input\":\"Items\",\"Output\":\"Selected\",\"RequiredFor\":\"\"},{\"Input\":\"Items\",\"Output\":\"SelectedItems\",\"RequiredFor\":\"\"},{\"Input\":\"ChildItems_Items\",\"Output\":\"ChildItems_Selected\",\"RequiredFor\":\"\"},{\"Input\":\"ChildItems_Items\",\"Output\":\"ChildItems_SelectedItems\",\"RequiredFor\":\"\"}],\"Children\":null}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 9,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestPropertyTypes\",\"Data\":{\"Properties\":[{\"Name\":\"AccessibleLabel\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableEditing\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"DisableChildItemsEditing\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableFiltering\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableSorting\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableGrouping\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableAggregation\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableColumnMoving\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableMultipleSelection\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableRangeSelection\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableJumpBar\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnablePagination\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableDropdownColor\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableStatusIcons\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableTypeIcons\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"NavigationTypesAllowed\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ReflowBehavior\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ShowAvatar\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ShowFooter\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ShowColumnHeaders\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"GridCustomizerControlFullName\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"GridActions\",\"Type\":\"Object\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BasePaletteColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"ColorPalette\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Font\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Font\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontSize\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontWeight\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontWeight\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"HeaderFont\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Font\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"HeaderFontColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"HeaderFontSize\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"HeaderFontWeight\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontWeight\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"NoDataText\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"TabIndex\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"DateTimeFormat\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"DateOnlyFormat\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"EnableStatusColumn\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"DisableStatusColumn\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"DisableStatusColumnSavingIcons\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Items_FieldProperties\",\"Type\":\"Object\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Items\",\"Type\":\"DataSet\",\"ComplexType\":\"None\",\"IsPrimary\":true,\"IsIncluded\":false},{\"Name\":\"Selected\",\"Type\":\"Object\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"SelectedItems\",\"Type\":\"DataSet\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ChildItems_Items\",\"Type\":\"DataSet\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ChildItems_Selected\",\"Type\":\"Object\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ChildItems_SelectedItems\",\"Type\":\"DataSet\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ParentId\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PCFTeamsTheme\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"X\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Y\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Width\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Height\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Visible\",\"Type\":\"Boolean\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"DisplayMode\",\"Type\":\"DisplayMode\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Tooltip\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true}]}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"PowerAppsControlInfo\",\"Data\":{\"TemplateVersion\":1,\"Version\":\"1.0.242\",\"IsFirstParty\":true}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 12,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/PowerAppsOneGrid.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1033.resx",
+ "Type": 2
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1025.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1026.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1027.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1028.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1029.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1030.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1031.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1032.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1033.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1035.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1036.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1037.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1038.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1040.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1041.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1042.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1043.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1044.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1045.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1046.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1048.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1049.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1050.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1051.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1053.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1054.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1055.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1057.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1058.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1060.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1061.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1062.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1063.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1066.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1069.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1081.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1086.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1087.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.1110.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2052.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2070.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.2074.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3076.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3082.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerAppsOneGrid/strings/PowerAppsOneGrid.3098.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"PowerAppsOneGrid_AccessibleLabel_Desc_Key\":\"Label read out by screen readers.\",\"PowerAppsOneGrid_AccessibleLabel_Display_Key\":\"Accessible label\",\"PowerAppsOneGrid_Name\":\"Power Apps grid control\",\"PowerAppsOneGrid_Override_Name\":\"Table\",\"PowerAppsOneGrid_Desc\":\"Grid used for displaying a table of data items.\",\"PowerAppsOneGrid_Items_Name\":\"Items\",\"PowerAppsOneGrid_Items_Desc\":\"Items to use for the grid data\",\"PowerAppsOneGrid_ChildItems_Name\":\"Child items\",\"PowerAppsOneGrid_ChildItems_Desc\":\"Items to use for the child grid data\",\"ChildItems_ParentId_Name\":\"Child Items Parent Id\",\"ChildItems_ParentId_Desc\":\"Parent id to use for child items\",\"PowerAppsOneGrid_No_Columns_Label\":\"No columns selected\",\"PowerAppsOneGrid_No_Columns_Sub_Label\":\"To show data, choose the fields you want from the Properties pane.\",\"PowerAppsOneGrid_No_Data_Label\":\"No data\",\"PowerAppsOneGrid_No_Data_Sub_Label\":\"This table isn't connected to any data yet.\",\"PowerAppsOneGrid_Loading_Data_Label\":\"Loading...\",\"PowerAppsOneGrid_EnableEditing_Name\":\"Enable editing\",\"PowerAppsOneGrid_EnableEditing_Desc\":\"Enable or disable editing in the grid\",\"PowerAppsOneGrid_EnableEditing_Yes_Name\":\"Yes\",\"PowerAppsOneGrid_EnableEditing_Yes_Desc\":\"Enable editing in the grid\",\"PowerAppsOneGrid_ReadOnlyMode_No_Name\":\"No\",\"PowerAppsOneGrid_ReadOnlyMode_No_Desc\":\"Disable editing in the grid\",\"PowerAppsOneGrid_DisableChildItemsEditing_Name\":\"Disable editing in child items grid\",\"PowerAppsOneGrid_DisableChildItemsEditing_Desc\":\"Disable editing in the child items grid\",\"PowerAppsOneGrid_DisableChildItemsEditing_Yes_Name\":\"Yes\",\"PowerAppsOneGrid_DisableChildItemsEditing_Yes_Desc\":\"Disable editing in the child items grid\",\"PowerAppsOneGrid_DisableChildItemsEditing_No_Name\":\"No\",\"PowerAppsOneGrid_DisableChildItemsEditing_No_Desc\":\"Allow editing in the child items grid\",\"PowerAppsOneGrid_EnableFiltering_Name\":\"Enable filtering\",\"PowerAppsOneGrid_EnableFiltering_Desc\":\"Enable or disable filtering in the grid\",\"PowerAppsOneGrid_EnableFiltering_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableFiltering_Enable_Desc\":\"Enable filtering in grid control\",\"PowerAppsOneGrid_EnableFiltering_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableFiltering_Disable_Desc\":\"Disable filtering in the grid\",\"PowerAppsOneGrid_EnableSorting_Name\":\"Enable sorting\",\"PowerAppsOneGrid_EnableSorting_Desc\":\"Enable or disable sorting in the grid\",\"PowerAppsOneGrid_EnableSorting_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableSorting_Enable_Desc\":\"Enable sorting in grid control\",\"PowerAppsOneGrid_EnableSorting_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableSorting_Disable_Desc\":\"Disable sorting in the grid\",\"PowerAppsOneGrid_ShowFooter_Name\":\"Show footer\",\"PowerAppsOneGrid_ShowFooter_Desc\":\"Show or hide footer in the table\",\"PowerAppsOneGrid_ShowFooter_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_ShowFooter_Enable_Desc\":\"Enable footer in the table\",\"PowerAppsOneGrid_ShowFooter_Disable_Name\":\"No\",\"PowerAppsOneGrid_ShowFooter_Disable_Desc\":\"Disable footer in the table\",\"PowerAppsOneGrid_EnableGrouping_Name\":\"Enable grouping\",\"PowerAppsOneGrid_EnableGrouping_Desc\":\"Enable or disable grouping in the grid\",\"PowerAppsOneGrid_EnableGrouping_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableGrouping_Enable_Desc\":\"Enable grouping in grid control\",\"PowerAppsOneGrid_EnableGrouping_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableGrouping_Disable_Desc\":\"Disable grouping in the grid\",\"PowerAppsOneGrid_EnableAggregation_Name\":\"Enable aggregation\",\"PowerAppsOneGrid_EnableAggregation_Desc\":\"Enable or disable aggregation in the grid\",\"PowerAppsOneGrid_EnableAggregation_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableAggregation_Enable_Desc\":\"Enable aggregation in grid control\",\"PowerAppsOneGrid_EnableAggregation_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableAggregation_Disable_Desc\":\"Disable aggregation in the grid\",\"PowerAppsOneGrid_EnableColumnMoving_Name\":\"Allow column reordering (preview)\",\"PowerAppsOneGrid_EnableColumnMoving_Desc\":\"Allow column reordering\",\"PowerAppsOneGrid_EnableColumnMoving_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableColumnMoving_Enable_Desc\":\"Columns can be reordered\",\"PowerAppsOneGrid_EnableColumnMoving_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableColumnMoving_Disable_Desc\":\"Columns cannot be reordered\",\"PowerAppsOneGrid_ShowAvatar_Name\":\"Show avatar\",\"PowerAppsOneGrid_ShowAvatar_Desc\":\"Show or hide avatars in the table\",\"PowerAppsOneGrid_ShowAvatar_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_ShowAvatar_Enable_Desc\":\"Show avatars in the table\",\"PowerAppsOneGrid_ShowAvatar_Disable_Name\":\"No\",\"PowerAppsOneGrid_ShowAvatar_Disable_Desc\":\"Hide avatars in the table\",\"PowerAppsOneGrid_ShowColumnHeaders_Name\":\"Show column headers\",\"PowerAppsOneGrid_ShowColumnHeaders_Desc\":\"Show or hide column headers in the table\",\"PowerAppsOneGrid_ShowColumnHeaders_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_ShowColumnHeaders_Enable_Desc\":\"Show column headers in the table\",\"PowerAppsOneGrid_ShowColumnHeaders_Disable_Name\":\"No\",\"PowerAppsOneGrid_ShowColumnHeaders_Disable_Desc\":\"Hide column headers in the table\",\"PowerAppsOneGrid_EnableRangeSelection_Name\":\"Allow range selection\",\"PowerAppsOneGrid_EnableRangeSelection_Desc\":\"Determines whether users can select a subset of the grid to copy to the clipboard\",\"PowerAppsOneGrid_EnableRangeSelection_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableRangeSelection_Enable_Desc\":\"Enable range selection in the grid\",\"PowerAppsOneGrid_EnableRangeSelection_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableRangeSelection_Disable_Desc\":\"Disable range selection in the grid\",\"PowerAppsOneGrid_EnableMultipleSelection_Name\":\"Enable multi-select\",\"PowerAppsOneGrid_EnableMultipleSelection_Desc\":\"Determines whether users can select multiple rows\",\"PowerAppsOneGrid_EnableMultipleSelection_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableMultipleSelection_Enable_Desc\":\"Enable multiple row selection in the grid\",\"PowerAppsOneGrid_EnableMultipleSelection_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableMultipleSelection_Disable_Desc\":\"Disable multiple row selection in the grid\",\"PowerAppsOneGrid_SelectionDialog_Title\":\"Selecting rows\",\"PowerAppsOneGrid_SelectionDialog_Subtext\":\"We're working on selecting more rows for you.\",\"PowerAppsOneGrid_SelectionDialog_Cancel_Label\":\"Cancel\",\"PowerAppsOneGrid_NoRowsOverlay_Label\":\"We didn't find anything to show here\",\"PowerAppsOneGrid_JumpBar_AriaLabel\":\"Jump bar\",\"PowerAppsOneGrid_JumpBar_ABC_Label\":\"ABC\",\"PowerAppsOneGrid_JumpBar_All_AriaLabel\":\"Filter to all records\",\"PowerAppsOneGrid_JumpBar_All_Label\":\"All\",\"PowerAppsOneGrid_JumpBar_Alphabet_AriaLabel\":\"Filter to records starting with {0}\",\"PowerAppsOneGrid_JumpBar_Alphabet_Labels\":\"A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z\",\"PowerAppsOneGrid_JumpBar_number_AriaLabel\":\"Filter to records starting with a number\",\"PowerAppsOneGrid_JumpBar_Number_Label\":\"#\",\"PowerAppsOneGrid_EnableJumpBar_Name\":\"Enable jump bar\",\"PowerAppsOneGrid_EnableJumpBar_Desc\":\"Enable or disable the jump bar footer panel\",\"PowerAppsOneGrid_EnableJumpBar_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableJumpBar_Enable_Desc\":\"Enable the jump bar footer panel for the grid control.\",\"PowerAppsOneGrid_EnableJumpBar_Auto_Name\":\"Auto\",\"PowerAppsOneGrid_EnableJumpBar_Auto_Desc\":\"Show or hide the jump bar automatically for the grid control.\",\"PowerAppsOneGrid_EnableJumpBar_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableJumpBar_Disable_Desc\":\"Disable the jump bar footer panel for the grid control.\",\"PowerAppsOneGrid_EnablePagination_Name\":\"Enable pagination\",\"PowerAppsOneGrid_EnablePagination_Desc\":\"Enable or disable paging for grid. This will disable infinite scrolling.\",\"PowerAppsOneGrid_EnablePagination_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnablePagination_Enable_Desc\":\"Enable pagination for the grid control. This will disable infinite scrolling.\",\"PowerAppsOneGrid_EnablePagination_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnablePagination_Disable_Desc\":\"Disable pagination for the grid control. This will enable infinite scrolling.\",\"PowerAppsOneGrid_EnableDropdownColor_Name\":\"Enable OptionSet colors\",\"PowerAppsOneGrid_EnableDropdownColor_Desc\":\"Enable or disable custom colors for OptionSet cells of the grid control.\",\"PowerAppsOneGrid_EnableDropdownColor_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableDropdownColor_Enable_Desc\":\"Enable custom colors for OptionSet cells within the grid control.\",\"PowerAppsOneGrid_EnableDropdownColor_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableDropdownColor_Disable_Desc\":\"Disable custom colors for OptionSet cells within the grid control. It will use default colors provided by the grid.\",\"PowerAppsOneGrid_EnableStatusColumn_Name\":\"(Deprecated) Enable status column\",\"PowerAppsOneGrid_EnableStatusColumn_Desc\":\"Determines whether user can hide status column. This is deprecated, please use the allow multiple selection property instead.\",\"PowerAppsOneGrid_EnableStatusColumn_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableStatusColumn_Enable_Desc\":\"Enable status column in the grid\",\"PowerAppsOneGrid_EnableStatusColumn_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableStatusColumn_Disable_Desc\":\"Disable status column in the grid\",\"PowerAppsOneGrid_NavigationTypesAllowed_Name\":\"Navigation types allowed\",\"PowerAppsOneGrid_NavigationTypesAllowed_Desc\":\"Configure what navigation types are allowed within the grid\",\"PowerAppsOneGrid_NavigationTypesAllowed_All_Name\":\"All\",\"PowerAppsOneGrid_NavigationTypesAllowed_All_Desc\":\"Allows navigation on primary and lookup columns\",\"PowerAppsOneGrid_NavigationTypesAllowed_PrimaryOnly_Name\":\"Primary only\",\"PowerAppsOneGrid_NavigationTypesAllowed_PrimaryOnly_Desc\":\"Only allows navigation on the primary column for the entity\",\"PowerAppsOneGrid_NavigationTypesAllowed_None_Name\":\"None\",\"PowerAppsOneGrid_NavigationTypesAllowed_None_Desc\":\"Does not allow any entity record navigation\",\"PowerAppsOneGrid_ReflowBehavior_Name\":\"Reflow behavior\",\"PowerAppsOneGrid_ReflowBehavior_Desc\":\"Define how the grid will reflow (switch display mode) based on its width\",\"PowerAppsOneGrid_ReflowBehavior_Reflow_Name\":\"Reflow\",\"PowerAppsOneGrid_ReflowBehavior_Reflow_Desc\":\"Allow grid to switch display mode based on its width\",\"PowerAppsOneGrid_ReflowBehavior_GridOnly_Name\":\"Grid only\",\"PowerAppsOneGrid_ReflowBehavior_GridOnly_Desc\":\"Always display as a grid\",\"PowerAppsOneGrid_ReflowBehavior_ListOnly_Name\":\"List only\",\"PowerAppsOneGrid_ReflowBehavior_ListOnly_Desc\":\"Always display as a list\",\"PowerAppsOneGrid_GridActions_Name\":\"Grid Actions\",\"PowerAppsOneGrid_GridActions_Desc\":\"Grid Actions\",\"PowerAppsOneGrid_onCellValueChange_Name\":\"Cell value changed event\",\"PowerAppsOneGrid_onCellValueChange_Desc\":\"Event fired when a cell value is changed\",\"PowerAppsOneGrid_onFilter_Name\":\"Filter changed event\",\"PowerAppsOneGrid_onFilter_Desc\":\"Event fired when a filter is changed\",\"PowerAppsOneGrid_onNavigate_Name\":\"Cell navigation event\",\"PowerAppsOneGrid_onNavigate_Desc\":\"Event fired when a cell link is executed\",\"PowerAppsOneGrid_onRowSelect_Name\":\"Row select changed event\",\"PowerAppsOneGrid_onRowSelect_Desc\":\"Event fired when a row selection state is changed\",\"PowerAppsOneGrid_onSave_Name\":\"Grid save event\",\"PowerAppsOneGrid_onSave_Desc\":\"Event fired when a save finished\",\"PowerAppsOneGrid_OnSelect_Name\":\"Row select changed event\",\"PowerAppsOneGrid_OnSelect_Desc\":\"Event fired when a row selection state is changed\",\"PowerAppsOneGrid_GridCustomizerControlFullName_Name\":\"Customizer control\",\"PowerAppsOneGrid_GridCustomizerControlFullName_Desc\":\"Full logical name of the control (__) that provides custom cell renders and/or editors for the Power Apps grid control\",\"PowerAppsOneGrid_PlaceHolder_Text\":\"Enter text\",\"PowerAppsOneGrid_PlaceHolder_Url\":\"https://\",\"PowerAppsOneGrid_PlaceHolder_DateTime\":\"Enter or pick date\",\"PowerAppsOneGrid_PlaceHolder_Number\":\"Enter number\",\"PowerAppsOneGrid_PlaceHolder_FloatingNumber\":\"0.00000\",\"PowerAppsOneGrid_PlaceHolder_Decimal\":\"Enter decimal\",\"PowerAppsOneGrid_PlaceHolder_Lookup\":\"Select lookup\",\"PowerAppsOneGrid_PlaceHolder_OptionSet\":\"Select option\",\"PowerAppsOneGrid_PlaceHolder_File\":\"No file attached\",\"PowerAppsOneGrid_PlaceHolder_Media\":\"No media attached\",\"PowerAppsOneGrid_PlaceHolder_Email\":\"Enter email\",\"PowerAppsOneGrid_PlaceHolder_Phone\":\"Enter phone\",\"PowerAppsOneGrid_Error_PluralRowErrors\":\"(1){There is {0} error in this row.};(0-inf){There are {0} errors in this row.};\",\"PowerAppsOneGrid_Error_RowSaveError\":\"There was an error in saving this record.\",\"PowerAppsOneGrid_Error_TotalErrorsPlural\":\"Number of errors on this page: {0}. Select to view.\",\"PowerAppsOneGrid_Error_FixText\":\"Fix.\",\"PowerAppsOneGrid_Error_DismissText\":\"Dismiss\",\"PowerAppsOneGrid_Error_RowSelectionLimit\":\"You've reached the limit of having {0} rows selected. Any row selection beyond that limit has been ignored.\",\"PowerAppsOneGrid_Footer_PluralRows\":\"(1){{0} row};(0-4999){{0} rows};(5000-inf){{0}+ rows};\",\"PowerAppsOneGrid_Base_NowRowsSelected\":\"no rows selected\",\"PowerAppsOneGrid_Base_RowSelectionAriaLabel\":\"select or deselect the row\",\"PowerAppsOneGrid_Base_SelectedRowCountNotification\":\"Total rows selected: {0}\",\"PowerAppsOneGrid_Base_SelectAllRowsAriaLabel\":\"Toggle selection of all rows\",\"PowerAppsOneGrid_Base_StatusColumnName\":\"row status\",\"PowerAppsOneGrid_Base_GroupHeader\":\"Group\",\"PowerAppsOneGrid_Aria_Description\":\"Press enter to modify editable cells\",\"PowerAppsOneGrid_Base_GroupHeaderTooltip\":\"Grouped by {0}\",\"PowerAppsOneGrid_CommonHeaderCustomization_FilterMenu\":\"Filter by\",\"PowerAppsOneGrid_CommonHeaderCustomization_ClearFilterMenu\":\"Clear filter\",\"PowerAppsOneGrid_CommonHeaderCustomization_MoveLeftMenu\":\"Move left\",\"PowerAppsOneGrid_CommonHeaderCustomization_MoveRightMenu\":\"Move right\",\"PowerAppsOneGrid_CommonHeaderCustomization_PinLeftMenu\":\"Pin left\",\"PowerAppsOneGrid_CommonHeaderCustomization_PinRightMenu\":\"Pin right\",\"PowerAppsOneGrid_CommonHeaderCustomization_UnpinMenu\":\"Unpin\",\"PowerAppsOneGrid_CommonHeaderCustomization_EditColumn\":\"Edit column\",\"PowerAppsOneGrid_CommonHeaderCustomization_HideColumn\":\"Hide\",\"PowerAppsOneGrid_CommonHeaderCustomization_InsertColumn\":\"Insert column\",\"PowerAppsOneGrid_CommonHeaderCustomization_GroupByLabel\":\"Group by\",\"PowerAppsOneGrid_CommonHeaderCustomization_GroupMenu\":\"Group by\",\"PowerAppsOneGrid_CommonHeaderCustomization_UngroupMenu\":\"Ungroup\",\"PowerAppsOneGrid_CommonHeaderCustomization_SortAscMenu\":\"Ascending\",\"PowerAppsOneGrid_CommonHeaderCustomization_SortDescMenu\":\"Descending\",\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputIsIntegerValidatorErrorMessage\":\"Value must be a valid whole number\",\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputIsNumberValidatorErrorMessage\":\"Value must be a valid number\",\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputNumberGreaterThanMaxErrorMessage\":\"Input value is greater than the maximum value allowed for this field ({0})\",\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputNumberLowerThanMinErrorMessage\":\"Input value is lower than the minimum value allowed for this field ({0})\",\"PowerAppsOneGrid_CommonHeaderCustomization_TextInputRequiredValidatorErrorMessage\":\"Please enter value\",\"PowerAppsOneGrid_CommonHeaderCustomization_RequiredLabel\":\"{0} is required\",\"PowerAppsOneGrid_CommonHeaderCustomization_ColumnWidthMenuText\":\"Column width\",\"PowerAppsOneGrid_CommonHeaderCustomization_PreferredWidthText\":\"Preferred width\",\"PowerAppsOneGrid_CommonHeaderCustomization_IncrementButtonAriaLabel\":\"Increase value by 5\",\"PowerAppsOneGrid_CommonHeaderCustomization_DecrementButtonAriaLabel\":\"Decrease value by 5\",\"PowerAppsOneGrid_CommonHeaderCustomization_ClearSorting\":\"Clear sorting\",\"PowerAppsOneGrid_Sorting_Label_TwoOption_SortAsc\":\"Off to on\",\"PowerAppsOneGrid_Sorting_Label_TwoOption_SortDesc\":\"On to off\",\"PowerAppsOneGrid_Sorting_Label_SortGeneric\":\"{0} to {1}\",\"PowerAppsOneGrid_Sorting_Label_Text_SortAsc\":\"A to Z\",\"PowerAppsOneGrid_Sorting_Label_Text_SortDesc\":\"Z to A\",\"PowerAppsOneGrid_Sorting_Label_Date_SortAsc\":\"Older to newer\",\"PowerAppsOneGrid_Sorting_Label_Date_SortDesc\":\"Newer to older\",\"PowerAppsOneGrid_Sorting_Label_Number_SortAsc\":\"Smaller to larger\",\"PowerAppsOneGrid_Sorting_Label_Number_SortDesc\":\"Larger to smaller\",\"PowerAppsOneGrid_Filter_Expression_Editor_Title\":\"Filter by\",\"PowerAppsOneGrid_Filter_Expression_Editor_Close_Aria_Label\":\"Close\",\"PowerAppsOneGrid_Filter_Expression_Editor_Close_Tooltip\":\"Close\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Equal\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Contains\":\"Contains\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Contain\":\"Does not contain\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Begins_With\":\"Begins with\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Begins_With\":\"Does not begin with\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Ends_With\":\"Ends with\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Ends_With\":\"Does not end with\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Missing_Value\":\"Please enter a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_String_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Not_Equal\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Greater_Than\":\"Greater than\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Greater_Or_Equal_To\":\"Greater than or equal to\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Less_Than\":\"Less than\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Less_Or_Equal_To\":\"Less than or equal to\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Is_Current_User_Language\":\"Equals current user language\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Missing_Value\":\"Please enter a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Not_Number\":\"Value must be a valid number\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Not_Whole_Number\":\"Value must be a valid whole number\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Too_Large\":\"Input value is greater than the maximum value allowed for this field ({0})\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Value_Too_Small\":\"Input value is lower than the minimum value allowed for this field ({0})\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Duration_Minutes\":\"minutes\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Number_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Value_Missing_Valid_Integer\":\"Value must be a valid integer\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Value_Not_Valid_Integer\":\"Value must be a valid integer\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On\":\"On\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On_Or_After\":\"On or after\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_On_Or_Before\":\"On or before\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Today\":\"Today\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Yesterday\":\"Yesterday\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Tomorrow\":\"Tomorrow\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Week\":\"This week\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Month\":\"This month\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Year\":\"This year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Fiscal_Period\":\"This fiscal period\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_This_Fiscal_Year\":\"This fiscal year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Week\":\"Next week\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Month\":\"Next month\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Year\":\"Next year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Period\":\"Next fiscal period\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Year\":\"Next fiscal year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Hours\":\"Next X hours\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Days\":\"Next X days\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Weeks\":\"Next X weeks\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Months\":\"Next X months\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Years\":\"Next X years\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Periods\":\"Next X fiscal periods\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_Fiscal_Years\":\"Next X fiscal years\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Week\":\"Last week\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Month\":\"Last month\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Year\":\"Last year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Period\":\"Last fiscal period\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Year\":\"Last fiscal year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Hours\":\"Last X hours\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Days\":\"Last X days\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Weeks\":\"Last X weeks\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Months\":\"Last X months\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Years\":\"Last X years\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Periods\":\"Last X fiscal periods\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_Fiscal_Years\":\"Last X fiscal years\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Contains_Data\":\"Contains data (any time)\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Missing_Value\":\"Please enter a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Next_7_Days\":\"Next 7 days\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Last_7_days\":\"Last 7 days\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Minutes\":\"Older than X minutes\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Hours\":\"Older than X hours\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Days\":\"Older than X days\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Weeks\":\"Older than X weeks\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Months\":\"Older than X months\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Older_Than_Years\":\"Older than X years\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Year\":\"In fiscal year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Period\":\"In fiscal period\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Fiscal_Period_Year\":\"In fiscal period and year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_After_Fiscal_Period_Year\":\"In or after fiscal period and year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_In_Before_Fiscal_Period_Year\":\"In or before fiscal period and year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Quarter\":\"Quarter {0}\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Fy\":\"FY{0}\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Today\":\"Go to today\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Month\":\"Previous month\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Month\":\"Next month\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Year\":\"Previous year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Year\":\"Next year\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Previous_Year_Range\":\"Previous year range\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Goto_Next_Year_Range\":\"Next year range\",\"PowerAppsOneGrid_Filter_Expression_Editor_Date_Predicate_Close\":\"Close\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Equal\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_No_Value\":\"Please select a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Contains\":\"Contains\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Contains\":\"Does not contain\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Begins_With\":\"Begins with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Begins_With\":\"Does not begin with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Ends_With\":\"Ends with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Not_Ends_With\":\"Does not end with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Missing_Value\":\"Please select value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Enum_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Equal\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_No_Value\":\"Please select a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Contains\":\"Contains\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Contains\":\"Does not contain\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Begins_With\":\"Begins with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Begins_With\":\"Does not begin with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Ends_With\":\"Ends with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Not_Ends_With\":\"Does not end with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Missing_Value\":\"Please select a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Boolean_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Equals\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Contains_Values\":\"Contains values\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Contains_Values\":\"Does not contain values\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Missing_Value\":\"Please select a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_EnumSet_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Operator_Selected\":\"Select operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals\":\"Equals\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals\":\"Does not equal\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Contains_Data\":\"Does not contain data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Contains_Data\":\"Contains data\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Contains\":\"Contains\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Contains\":\"Does not contain\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Begins_With\":\"Begins with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Begins_With\":\"Does not begin with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Ends_With\":\"Ends with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Ends_With\":\"Does not end with\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_User\":\"Equals current user\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals_Current_User\":\"Does not equal current user\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_Business_Unit\":\"Equals current business unit\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Not_Equals_Current_Business_Unit\":\"Does not equal current business unit\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_Current_User_Hierarchy\":\"Equals current user or their reporting hierarchy\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Current_User_Hierarchy_Teams\":\"Equals current user and their teams or their reporting hierarchy and their teams\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Equals_User_Teams\":\"Equals current user's teams\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Users_Teams\":\"Equals current user or user's teams\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Value\":\"Please select a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Missing_Value\":\"Please enter a value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Loading\":\"Loading...\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Filter_By_Value\":\"Filter by value\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Filter_By_Operator\":\"Filter by operator\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_No_Records\":\"No records found\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Submit\":\"Apply\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Reset\":\"Clear\",\"PowerAppsOneGrid_Filter_Expression_Editor_Object_Predicate_Suggestions\":\"Suggestions\",\"PowerAppsOneGrid_DataTypeTooltip_Text\":\"Text\",\"PowerAppsOneGrid_DataTypeTooltip_Email\":\"Email\",\"PowerAppsOneGrid_DataTypeTooltip_Phone\":\"Telephone number\",\"PowerAppsOneGrid_DataTypeTooltip_Ticker\":\"Ticker symbol\",\"PowerAppsOneGrid_DataTypeTooltip_Date\":\"Date\",\"PowerAppsOneGrid_DataTypeTooltip_Boolean\":\"Boolean\",\"PowerAppsOneGrid_DataTypeTooltip_OptionSet\":\"Option set\",\"PowerAppsOneGrid_DataTypeTooltip_Lookup\":\"Lookup\",\"PowerAppsOneGrid_DataTypeTooltip_Number\":\"Number\",\"PowerAppsOneGrid_DataTypeTooltip_Decimal\":\"Decimal\",\"PowerAppsOneGrid_DataTypeTooltip_AutoNumber\":\"Number sequence\",\"PowerAppsOneGrid_DataTypeTooltip_Url\":\"URL\",\"PowerAppsOneGrid_DataTypeTooltip_Icon\":\"Image\",\"PowerAppsOneGrid_DateEditor_OpenInstruction\":\"Use Alt+Down to open the date picker\",\"PowerAppsOneGrid_Grouping_GroupBlankValue\":\"blank\",\"PowerAppsOneGrid_Grouping_GroupWeekValue\":\"Week\",\"PowerAppsOneGrid_Grouping_GroupQuarterValue\":\"Q\",\"PowerAppsOneGrid_Grouping_GroupFiscalYearValue\":\"FY\",\"PowerAppsOneGrid_LookupEditor_RemoveButtonAriaLabel\":\"Remove\",\"PowerAppsOneGrid_LookupEditor_NoResultsFound\":\"No records found\",\"PowerAppsOneGrid_LookupEditor_SuggestionsAriaLabel\":\"Possible values\",\"PowerAppsOneGrid_OptionSetEditor_NoneOption\":\"None\",\"PowerAppsOneGrid_OptionSetEditor_SelectOption\":\"Select option\",\"PowerAppsOneGrid_ImageRenderer_DefaultIcon\":\"Default icon\",\"PowerAppsOneGrid_HierarchyIconRenderer_IconTooltip\":\"Has hierarchy\",\"PowerAppsOneGrid_PlaceholderIconRenderer_IconTooltip\":\"Go to record\",\"PowerAppsOneGrid_IconRenderer_IconReadOnlyTooltip\":\"This cell is not editable\",\"PowerAppsOneGrid_PhoneRenderer_EmptyNumber\":\"Empty phone number\",\"PowerAppsOneGrid_TwoOptionEditor_OnValue\":\"Yes\",\"PowerAppsOneGrid_TwoOptionEditor_OffValue\":\"No\",\"PowerAppsOneGrid_TwoOptionEditor_NullValue\":\"Unset\",\"PowerAppsOneGrid_TwoOptionRenderer_NullValue\":\"Unset\",\"PowerAppsOneGrid_TwoOptionRenderer_OnValue\":\"Yes\",\"PowerAppsOneGrid_TwoOptionRenderer_OffValue\":\"No\",\"PowerAppsOneGrid_FileRenderer_IconAriaLabel\":\"file\",\"PowerAppsOneGrid_FileRenderer_NoFileFound\":\"No file attached\",\"PowerAppsOneGrid_No_Data\":\"No data available\",\"PowerAppsOneGrid_List_SelectCommand_Label\":\"Select\",\"PowerAppsOneGrid_List_SelectAllCommand_Label\":\"Select all\",\"PowerAppsOneGrid_List_MoreCommands_Label\":\"More commands\",\"PowerAppsOneGrid_List_CancelSelection_Label\":\"Cancel selection\",\"PowerAppsOneGrid_Paging_First_Page_Label\":\"Load first page\",\"PowerAppsOneGrid_Paging_Next_Page_Label\":\"Next page\",\"PowerAppsOneGrid_Paging_Page_Label\":\"Page {0}\",\"PowerAppsOneGrid_Paging_Prev_Page_Label\":\"Previous page\",\"PowerAppsOneGrid_Paging_Records_Label\":\"{0} - {1} of {2}\",\"PowerAppsOneGrid_Paging_Records_Range_Label\":\"{0} - {1}\",\"PowerAppsOneGrid_Paging_Row_Count\":\"Rows: {0}\",\"PowerAppsOneGrid_Paging_Selected_Label\":\"Selected: {0}\",\"PowerAppsOneGrid_Paging_Total_Records_Label\":\"{0} of {1}\",\"PowerAppsOneGrid_ErrorBoundaryFallback_ComponentStack_Header\":\"Component Stack\",\"PowerAppsOneGrid_ErrorBoundaryFallback_Message_Header\":\"Error Message\",\"PowerAppsOneGrid_ErrorBoundaryFallback_StackTrace_Header\":\"Stack Trace\",\"PowerAppsOneGrid_ErrorBoundaryFallback_UnknownError_Message\":\"An unknown error has occurred.\",\"PowerAppsOneGrid_NoAccessCell_Details\":\"You do not have permission to access this content. Contact your administrator for access.\",\"PowerAppsOneGrid_NoAccessCell_Label\":\"Access denied\",\"PowerAppsOneGrid_EnableStatusIcons_Name\":\"Show row status icons\",\"PowerAppsOneGrid_EnableStatusIcons_Desc\":\"Show or hide status icons for the rows\",\"PowerAppsOneGrid_EnableStatusIcons_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableStatusIcons_Enable_Desc\":\"Show status icons for the row\",\"PowerAppsOneGrid_EnableStatusIcons_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableStatusIcons_Disable_Desc\":\"Disable row status icons for the rows\",\"PowerAppsOneGrid_EnableTypeIcons_Name\":\"Show data type icons\",\"PowerAppsOneGrid_EnableTypeIcons_Desc\":\"Show or hide data type icons in the column headers\",\"PowerAppsOneGrid_EnableTypeIcons_Enable_Name\":\"Yes\",\"PowerAppsOneGrid_EnableTypeIcons_Enable_Desc\":\"Show icons in the column headers\",\"PowerAppsOneGrid_EnableTypeIcons_Disable_Name\":\"No\",\"PowerAppsOneGrid_EnableTypeIcons_Disable_Desc\":\"Disable header data type icons in the grid\",\"PowerAppsOneGrid_Header_Org_Icon_Tooltip\":\"Hierarchy\",\"PowerAppsOneGrid_Header_Placeholder_Icon_Tooltip\":\"Navigate\",\"PowerAppsOneGrid_HeaderMenu_Average\":\"Average\",\"PowerAppsOneGrid_HeaderMenu_Count\":\"Count\",\"PowerAppsOneGrid_HeaderMenu_Maximum\":\"Maximum\",\"PowerAppsOneGrid_HeaderMenu_Minimum\":\"Minimum\",\"PowerAppsOneGrid_HeaderMenu_None\":\"None\",\"PowerAppsOneGrid_HeaderMenu_Sum\":\"Sum\",\"PowerAppsOneGrid_HeaderMenu_ViewTotals\":\"Totals\",\"PowerAppsOneGrid_HeaderMenu_Group_Day\":\"Day\",\"PowerAppsOneGrid_HeaderMenu_Group_FiscalPeriod\":\"Fiscal period\",\"PowerAppsOneGrid_HeaderMenu_Group_FiscalYear\":\"Fiscal year\",\"PowerAppsOneGrid_HeaderMenu_Group_Month\":\"Month\",\"PowerAppsOneGrid_HeaderMenu_Group_None\":\"None\",\"PowerAppsOneGrid_HeaderMenu_Group_Quarter\":\"Quarter\",\"PowerAppsOneGrid_HeaderMenu_Group_Week\":\"Week\",\"PowerAppsOneGrid_HeaderMenu_Group_Year\":\"Year\",\"PowerAppsOneGrid_Persona_Presence_Offline\":\"Offline\",\"PowerAppsOneGrid_Persona_Presence_Available\":\"Available\",\"PowerAppsOneGrid_Persona_Presence_Away\":\"Away\",\"PowerAppsOneGrid_Persona_Presence_DnD\":\"Do Not Disturb\",\"PowerAppsOneGrid_Persona_Presence_Blocked\":\"Blocked\",\"PowerAppsOneGrid_Persona_Presence_Busy\":\"Busy\",\"Base_Palette_Color\":\"Color palette\",\"Base_Palette_Color_description\":\"Choose a color palette that's different from the theme.\",\"No_Data_Text\":\"No data text\",\"No_Data_Text_Desc\":\"The message that the user sees when there are no records to show in the Table control.\",\"Font_Size\":\"Font size\",\"Font_Size_description\":\"The default font size for all displayed text\",\"Header_Font_Size\":\"Header font size\",\"Header_Font_Size_description\":\"The font size for the column headers\",\"Font_Weight\":\"Font weight\",\"Font_Weight_description\":\"The weight of the text.\",\"Header_Font_Weight\":\"Header font weight\",\"Header_Font_Weight_description\":\"The weight of the column header text.\",\"Font\":\"Font\",\"Font_description\":\"The name of the font family for the text.\",\"Header_Font\":\"Header font\",\"Header_Font_description\":\"The name of the font family for the header text.\",\"Font_Color\":\"Font color\",\"Font_Color_description\":\"The color of the text.\",\"Header_Font_Color\":\"Header font color\",\"Header_Font_Color_description\":\"The color of the column header text.\",\"PowerAppsOneGrid_List_Sort_Button\":\"Sort\",\"PowerAppsOneGrid_List_Sort_Menu_Sort_By\":\"Sort by\",\"PowerAppsOneGrid_List_Sort_Menu_Sort_Order\":\"Sort order\",\"PowerAppsOneGrid_List_Sort_Menu_Apply_Button\":\"Apply\",\"PowerAppsOneGrid_List_Sort_Menu_Cancel_Button\":\"Cancel\",\"PowerAppsOneGrid_ColumnWidth_Name\":\"Width\",\"PowerAppsOneGrid_ColumnWidth_Desc\":\"The width of the column.\",\"PowerAppsOneGrid_ColumnVisibility_Name\":\"Visible\",\"PowerAppsOneGrid_ColumnVisibility_Desc\":\"Whether the column is shown.\",\"PowerAppsOneGrid_ColumnHeaderText_Name\":\"Header Text\",\"PowerAppsOneGrid_ColumnHeaderText_Desc\":\"Overrides the field display name for the column header when provided.\",\"PowerAppsOneGrid_ColumnGrow_Name\":\"Can grow\",\"PowerAppsOneGrid_ColumnGrow_Desc\":\"Whether the column width can grow to fill space as needed.\",\"Date_Time_Format\":\"Date time format\",\"Date_Time_Format_description\":\"The format we want for date time columns.\",\"PowerAppsOneGrid_Format_LongDate\":\"Long date\",\"PowerAppsOneGrid_Format_ShortDate\":\"Short date\",\"PowerAppsOneGrid_Format_ShortDateTime\":\"Short date time\",\"PowerAppsOneGrid_Format_None\":\"None\",\"Date_Only_Format\":\"Date only format\",\"Date_Only_Format_description\":\"The format we want for date only columns.\",\"PowerAppsOneGrid_DateOnly_Format_LongDate\":\"Long date\",\"PowerAppsOneGrid_DateOnly_Format_ShortDate\":\"Short date\",\"PowerAppsOneGrid_DateOnly_Format_None\":\"None\"}}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/PCF/fluentui-react.js",
+ "Type": 0
+ }
+ ],
+ "Version": "1.0.242"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Text_0.0.47.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Text_0.0.47.json
new file mode 100644
index 00000000..41975217
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfControlTemplates/Text_0.0.47.json
@@ -0,0 +1,1817 @@
+{
+ "AuthConfigProperties": [
+ {
+ "Align": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "AutoHeight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "BorderColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 29,
+ "WizardStep": null
+ },
+ "BorderRadius": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "BorderStyle": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 30,
+ "WizardStep": null
+ },
+ "BorderThickness": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Border",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Fill": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 53,
+ "WizardStep": null
+ },
+ "Font": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 33,
+ "WizardStep": null
+ },
+ "FontColor": {
+ "EnabledForFlyout": false,
+ "HelperUI": "color",
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 31,
+ "WizardStep": null
+ },
+ "FontItalic": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 35,
+ "WizardStep": null
+ },
+ "FontStrikethrough": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 37,
+ "WizardStep": null
+ },
+ "FontUnderline": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Style",
+ "PropertyKind": 2,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 36,
+ "WizardStep": null
+ },
+ "Height": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingBottom": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingLeft": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingRight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "PaddingTop": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Padding",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Size": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Text": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "VerticalAlign": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Visible": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 0,
+ "SectionName": null,
+ "SectionType": "GeneralSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Weight": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 3,
+ "SectionName": null,
+ "SectionType": "StyleAndThemeSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Width": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Size",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Wrap": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "",
+ "PropertyKind": 1,
+ "SectionIndex": 1,
+ "SectionName": null,
+ "SectionType": "BehaviorSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "X": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ },
+ "Y": {
+ "EnabledForFlyout": false,
+ "HelperUI": null,
+ "Hidden": false,
+ "PropertyGroupName": "Position",
+ "PropertyKind": 2,
+ "SectionIndex": 2,
+ "SectionName": null,
+ "SectionType": "SizeAndPositioningSection",
+ "ShowInCanvasInlineActionBar": false,
+ "Type": 0,
+ "WizardStep": null
+ }
+ }
+ ],
+ "ControlConstructor": "TextCanvas",
+ "ControlNamespace": "PowerApps.CoreControls",
+ "DisplayNameKey": "TextCanvas",
+ "IncludedProperties": [
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_X",
+ "DisplayNameResourceString": "CC_X",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "X",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "CC_Y",
+ "DisplayNameResourceString": "CC_Y",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Y",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "96",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Width",
+ "DisplayNameResourceString": "Width",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Width",
+ "NullDefaultValue": "0",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "96",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 2,
+ "Usage": 2,
+ "WebDefaultValue": "96"
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "true",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "Visible",
+ "DisplayNameResourceString": "Visible",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Visible",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 4,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "DisplayMode",
+ "DisplayNameResourceString": "DisplayMode",
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "DisplayMode",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": null,
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 27,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Name": "Text",
+ "Properties": [
+ {
+ "Category": "data",
+ "DefaultValue": "Text",
+ "Description": "Text that appears on a control.",
+ "DescriptionResourceString": "TextCanvas_Text_Desc",
+ "DisplayName": "Text",
+ "DisplayNameResourceString": "TextCanvas_Text",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": true,
+ "IsPrimaryOutput": true,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Text",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": true,
+ "Type": 6,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "14",
+ "Description": "Display text using the selected font sizes.",
+ "DescriptionResourceString": "TextCanvas_Size_Desc",
+ "DisplayName": "Font size",
+ "DisplayNameResourceString": "TextCanvas_Size",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Size",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Regular",
+ "Description": "Display text using the selected font weights.",
+ "DescriptionResourceString": "TextCanvas_Weight_Desc",
+ "DisplayName": "Font weight",
+ "DisplayNameResourceString": "TextCanvas_Weight",
+ "EnumValues": [
+ {
+ "Description": "Medium",
+ "DisplayName": "Medium",
+ "IsDefaultValue": false,
+ "Name": "Medium",
+ "Value": "Medium"
+ },
+ {
+ "Description": "Regular",
+ "DisplayName": "Regular",
+ "IsDefaultValue": true,
+ "Name": "Regular",
+ "Value": "Regular"
+ },
+ {
+ "Description": "Semibold",
+ "DisplayName": "Semibold",
+ "IsDefaultValue": false,
+ "Name": "Semibold",
+ "Value": "Semibold"
+ },
+ {
+ "Description": "Bold",
+ "DisplayName": "Bold",
+ "IsDefaultValue": false,
+ "Name": "Bold",
+ "Value": "Bold"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Weight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Regular",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 2,
+ "WebDefaultValue": "Regular"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Start",
+ "Description": "Display text using the selected text alignment.",
+ "DescriptionResourceString": "TextCanvas_Align_Desc",
+ "DisplayName": "Align",
+ "DisplayNameResourceString": "TextCanvas_Align",
+ "EnumValues": [
+ {
+ "Description": "Start",
+ "DisplayName": "Start",
+ "IsDefaultValue": true,
+ "Name": "Start",
+ "Value": "Start"
+ },
+ {
+ "Description": "End",
+ "DisplayName": "End",
+ "IsDefaultValue": false,
+ "Name": "End",
+ "Value": "End"
+ },
+ {
+ "Description": "Center",
+ "DisplayName": "Center",
+ "IsDefaultValue": false,
+ "Name": "Center",
+ "Value": "Center"
+ },
+ {
+ "Description": "Justify",
+ "DisplayName": "Justify",
+ "IsDefaultValue": false,
+ "Name": "Justify",
+ "Value": "Justify"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Align",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Start",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 2,
+ "WebDefaultValue": "Start"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "Middle",
+ "Description": "Display text using the selected text vertical alignment.",
+ "DescriptionResourceString": "TextCanvas_VerticalAlign_Desc",
+ "DisplayName": "Vertical align",
+ "DisplayNameResourceString": "TextCanvas_VerticalAlign",
+ "EnumValues": [
+ {
+ "Description": "Top",
+ "DisplayName": "Top",
+ "IsDefaultValue": false,
+ "Name": "Top",
+ "Value": "Top"
+ },
+ {
+ "Description": "Middle",
+ "DisplayName": "Middle",
+ "IsDefaultValue": true,
+ "Name": "Middle",
+ "Value": "Middle"
+ },
+ {
+ "Description": "Bottom",
+ "DisplayName": "Bottom",
+ "IsDefaultValue": false,
+ "Name": "Bottom",
+ "Value": "Bottom"
+ }
+ ],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "VerticalAlign",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "Middle",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 1,
+ "Usage": 2,
+ "WebDefaultValue": "Middle"
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Container height will adjust to text content.",
+ "DescriptionResourceString": "TextCanvas_AutoHeight_Desc",
+ "DisplayName": "Auto height",
+ "DisplayNameResourceString": "TextCanvas_AutoHeight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "AutoHeight",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "32",
+ "Description": "The height of the control.",
+ "DescriptionResourceString": "TextCanvas_Height_Desc",
+ "DisplayName": "Text height",
+ "DisplayNameResourceString": "TextCanvas_Height",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Height",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The name of the family of fonts in which text appears",
+ "DescriptionResourceString": "Font_description",
+ "DisplayName": "Font",
+ "DisplayNameResourceString": "Font",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "Font",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "The color of text in the control",
+ "DescriptionResourceString": "Font_Color_description",
+ "DisplayName": "Font color",
+ "DisplayNameResourceString": "Font_Color",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "FontColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Display text using the italic font style.",
+ "DescriptionResourceString": "TextCanvas_Italic_Desc",
+ "DisplayName": "Italic",
+ "DisplayNameResourceString": "TextCanvas_Italic",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontItalic",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Display text using the strikethrough font style.",
+ "DescriptionResourceString": "TextCanvas_Strikethrough_Desc",
+ "DisplayName": "Strikethrough",
+ "DisplayNameResourceString": "TextCanvas_Strikethrough",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontStrikethrough",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "false",
+ "Description": "Display text using the underline font style.",
+ "DescriptionResourceString": "TextCanvas_Underline_Desc",
+ "DisplayName": "Underline",
+ "DisplayNameResourceString": "TextCanvas_Underline",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "FontUnderline",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "true",
+ "Description": "Display overflow text as wrapped.",
+ "DescriptionResourceString": "TextCanvas_Wrap_Desc",
+ "DisplayName": "Wrap",
+ "DisplayNameResourceString": "TextCanvas_Wrap",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Wrap",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 20,
+ "Usage": 2,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Background color fo the control.",
+ "DescriptionResourceString": "Fill_Description",
+ "DisplayName": "Fill",
+ "DisplayNameResourceString": "Fill",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "Fill",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Style of borders around the control",
+ "DescriptionResourceString": "BorderStyle_Description",
+ "DisplayName": "Border style",
+ "DisplayNameResourceString": "BorderStyle",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderStyle",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Thickness or width of borders around the control.",
+ "DescriptionResourceString": "BorderThickness_Description",
+ "DisplayName": "Border thickness",
+ "DisplayNameResourceString": "BorderThickness",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderThickness",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Color of borders around the control.",
+ "DescriptionResourceString": "BorderColor_Description",
+ "DisplayName": "Border color",
+ "DisplayNameResourceString": "BorderColor",
+ "EnumValues": [],
+ "HelperUI": "color",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "BorderColor",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's corners. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadius_Description",
+ "DisplayName": "Border radius",
+ "DisplayNameResourceString": "BorderRadius",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadius",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's top left corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusTopLeft_Description",
+ "DisplayName": "Top left border radius",
+ "DisplayNameResourceString": "BorderRadiusTopLeft",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusTopLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's top right corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusTopRight_Description",
+ "DisplayName": "Top right border radius",
+ "DisplayNameResourceString": "BorderRadiusTopRight",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusTopRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's bottom right corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusBottomRight_Description",
+ "DisplayName": "Bottom right border radius",
+ "DisplayNameResourceString": "BorderRadiusBottomRight",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusBottomRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Roundedness of the control's bottom left corner. A value of 0 is perfectly square.",
+ "DescriptionResourceString": "BorderRadiusBottomLeft_Description",
+ "DisplayName": "Bottom left border radius",
+ "DisplayNameResourceString": "BorderRadiusBottomLeft",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": true,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": true,
+ "Name": "BorderRadiusBottomLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the top of the control.",
+ "DescriptionResourceString": "PaddingTop_Description",
+ "DisplayName": "Top",
+ "DisplayNameResourceString": "PaddingTop",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingTop",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the right of the control.",
+ "DescriptionResourceString": "PaddingRight_Description",
+ "DisplayName": "Right",
+ "DisplayNameResourceString": "PaddingRight",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingRight",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the bottom of the control.",
+ "DescriptionResourceString": "PaddingBottom_Description",
+ "DisplayName": "Bottom",
+ "DisplayNameResourceString": "PaddingBottom",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingBottom",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "data",
+ "DefaultValue": "",
+ "Description": "Padding to apply to the left of the control.",
+ "DescriptionResourceString": "PaddingLeft_Description",
+ "DisplayName": "Left",
+ "DisplayNameResourceString": "PaddingLeft",
+ "EnumValues": [],
+ "HelperUI": null,
+ "Hidden": false,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PaddingLeft",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "TabIndex",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 16,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "NA",
+ "DescriptionResourceString": "NA",
+ "DisplayName": "NA",
+ "DisplayNameResourceString": "NA",
+ "EnumValues": [],
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "Tooltip",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 6,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ },
+ {
+ "Category": "design",
+ "DefaultValue": "",
+ "Description": "",
+ "DescriptionResourceString": "",
+ "DisplayName": "PCFTeamsTheme",
+ "DisplayNameResourceString": "",
+ "HelperUI": "",
+ "Hidden": true,
+ "IsDataSourceProperty": false,
+ "IsLinkableToParentTheme": false,
+ "IsPrimaryBehavioral": false,
+ "IsPrimaryInput": false,
+ "IsPrimaryOutput": false,
+ "IsResettable": false,
+ "IsResettableToManifestDefault": false,
+ "Name": "PCFTeamsTheme",
+ "NullDefaultValue": "",
+ "ParentDataSetName": "",
+ "PassThroughProperty": "",
+ "PfxDefaultValue": "",
+ "PhoneDefaultValue": "",
+ "Required": false,
+ "ShouldAutoBind": false,
+ "Type": 3,
+ "Usage": 0,
+ "WebDefaultValue": ""
+ }
+ ],
+ "Resources": [
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 1,
+ "ModifiedPath": "",
+ "Path": "/PCF/prop-types.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 2,
+ "ModifiedPath": "",
+ "Path": "/PCF/react-fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 3,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 4,
+ "ModifiedPath": "",
+ "Path": "/PCF/fela-dom.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/common/js/container.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 6,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PCFControls/js/PCFControlWrapper.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 7,
+ "ModifiedPath": "",
+ "Path": "/ctrllib/PcfControlProxy/js/PcfControlProxy.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 8,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestTemplate\",\"Data\":{\"ConstructorName\":\"PowerApps.CoreControls.TextCanvas\",\"CustomControlId\":\"PowerApps.CoreControls.TextCanvas\",\"IsVirtual\":true,\"Properties\":{\"Resources\":[{\"Name\":\"/PCF/prop-types.js\",\"LoadOrder\":1,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/react-fela.js\",\"LoadOrder\":2,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela.js\",\"LoadOrder\":3,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/PCF/fela-dom.js\",\"LoadOrder\":4,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/common/js/container.js\",\"LoadOrder\":5,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PCFControls/js/PCFControlWrapper.js\",\"LoadOrder\":6,\"Type\":0,\"LibraryName\":null},{\"Name\":\"/ctrllib/PcfControlProxy/js/PcfControlProxy.js\",\"LoadOrder\":7,\"Type\":0,\"LibraryName\":null}],\"GroupDefinitions\":null,\"DataSetDefinitions\":{},\"Properties\":{\"Text\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Text\"},\"Size\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"14\"},\"Weight\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Regular\"},\"Align\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Start\"},\"VerticalAlign\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"Middle\"},\"AutoHeight\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"false\"},\"Height\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"32\"},\"Font\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"FontItalic\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"false\"},\"FontStrikethrough\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"false\"},\"FontUnderline\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"false\"},\"Wrap\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"true\"},\"Fill\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderStyle\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderThickness\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadius\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusTopLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusTopRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusBottomRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadiusBottomLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingTop\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingRight\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingBottom\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"PaddingLeft\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"TabIndex\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Tooltip\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"}},\"FeatureUsage\":[{\"IsRequired\":true,\"Name\":\"ExplicitCommonEvents\"}]},\"Events\":null,\"CommonEvents\":null,\"DesignMap\":null,\"PropertyDependencies\":[],\"Children\":null}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 9,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"ManifestPropertyTypes\",\"Data\":{\"Properties\":[{\"Name\":\"Text\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":true,\"IsIncluded\":false},{\"Name\":\"Size\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Weight\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Align\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"VerticalAlign\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"AutoHeight\",\"Type\":\"TwoOptions\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Height\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Font\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Font\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FontColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontItalic\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Italics\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontStrikethrough\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Strikethrough\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"FontUnderline\",\"Type\":\"TwoOptions\",\"ComplexType\":\"Underline\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Wrap\",\"Type\":\"TwoOptions\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Fill\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"ColorPalette\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderStyle\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"BorderStyle\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderThickness\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Color\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadius\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusTopLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusTopRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusBottomRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"BorderRadiusBottomLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingTop\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingRight\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingBottom\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PaddingLeft\",\"Type\":\"Whole_None\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"TabIndex\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Tooltip\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"PCFTeamsTheme\",\"Type\":\"String\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"X\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Y\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Width\",\"Type\":\"Number\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"Visible\",\"Type\":\"Boolean\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true},{\"Name\":\"DisplayMode\",\"Type\":\"DisplayMode\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":true}]}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"PowerAppsControlInfo\",\"Data\":{\"TemplateVersion\":1,\"Version\":\"0.0.47\",\"IsFirstParty\":true}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 11,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/TextCanvas.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 10,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1033.resx",
+ "Type": 2
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1025.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1026.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1027.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1028.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1029.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1030.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1031.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1032.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1033.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1035.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1036.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1037.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1038.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1040.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1041.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1042.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1043.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1044.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1045.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1046.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1048.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1049.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1050.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1051.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1053.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1054.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1055.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1057.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1058.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1060.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1061.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1062.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1063.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1066.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1069.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1081.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1086.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1087.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.1110.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2052.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2070.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.2074.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3076.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3082.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": true,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "/PCFControls/PowerApps_CoreControls_TextCanvas/strings/TextCanvas.3098.json",
+ "Type": 5
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 13,
+ "ModifiedPath": "",
+ "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"TextCanvas\":\"Text\",\"TextCanvas_Align\":\"Align\",\"TextCanvas_Align_Desc\":\"Display text using the selected text alignment.\",\"TextCanvas_Align_Start\":\"Start\",\"TextCanvas_Align_End\":\"End\",\"TextCanvas_Align_Center\":\"Center\",\"TextCanvas_Align_Justify\":\"Justify\",\"TextCanvas_AutoHeight\":\"Auto height\",\"TextCanvas_AutoHeight_Desc\":\"Container height will adjust to text content.\",\"TextCanvas_Desc\":\"Display text\",\"TextCanvas_Height\":\"Text height\",\"TextCanvas_Height_Desc\":\"The height of the control.\",\"TextCanvas_Italic\":\"Italic\",\"TextCanvas_Italic_Desc\":\"Display text using the italic font style.\",\"TextCanvas_Size\":\"Font size\",\"TextCanvas_Size_Desc\":\"Display text using the selected font sizes.\",\"TextCanvas_Strikethrough\":\"Strikethrough\",\"TextCanvas_Strikethrough_Desc\":\"Display text using the strikethrough font style.\",\"TextCanvas_Text\":\"Text\",\"TextCanvas_Text_Desc\":\"Text that appears on a control.\",\"TextCanvas_Underline\":\"Underline\",\"TextCanvas_Underline_Desc\":\"Display text using the underline font style.\",\"TextCanvas_VerticalAlign\":\"Vertical align\",\"TextCanvas_VerticalAlign_Desc\":\"Display text using the selected text vertical alignment.\",\"TextCanvas_VerticalAlign_Top\":\"Top\",\"TextCanvas_VerticalAlign_Middle\":\"Middle\",\"TextCanvas_VerticalAlign_Bottom\":\"Bottom\",\"TextCanvas_Weight\":\"Font weight\",\"TextCanvas_Weight_Desc\":\"Display text using the selected font weights.\",\"TextCanvas_Weight_Medium\":\"Medium\",\"TextCanvas_Weight_Regular\":\"Regular\",\"TextCanvas_Weight_Semibold\":\"Semibold\",\"TextCanvas_Weight_Bold\":\"Bold\",\"TextCanvas_Wrap\":\"Wrap\",\"TextCanvas_Wrap_Desc\":\"Display overflow text as wrapped.\",\"Font\":\"Font\",\"Font_description\":\"The name of the family of fonts in which text appears\",\"Font_Color\":\"Font color\",\"Font_Color_description\":\"The color of text in the control\",\"Fill\":\"Fill\",\"Fill_Description\":\"Background color fo the control.\",\"BorderStyle\":\"Border style\",\"BorderStyle_Description\":\"Style of borders around the control\",\"BorderStyle_Dashed\":\"Dashed\",\"BorderStyle_Dotted\":\"Dotted\",\"BorderStyle_None\":\"None\",\"BorderStyle_Solid\":\"Solid\",\"BorderThickness\":\"Border thickness\",\"BorderThickness_Description\":\"Thickness or width of borders around the control.\",\"BorderColor\":\"Border color\",\"BorderColor_Description\":\"Color of borders around the control.\",\"BorderRadiusTopLeft\":\"Top left border radius\",\"BorderRadiusTopLeft_Description\":\"Roundedness of the control's top left corner. A value of 0 is perfectly square.\",\"BorderRadiusTopRight\":\"Top right border radius\",\"BorderRadiusTopRight_Description\":\"Roundedness of the control's top right corner. A value of 0 is perfectly square.\",\"BorderRadiusBottomRight\":\"Bottom right border radius\",\"BorderRadiusBottomRight_Description\":\"Roundedness of the control's bottom right corner. A value of 0 is perfectly square.\",\"BorderRadiusBottomLeft\":\"Bottom left border radius\",\"BorderRadiusBottomLeft_Description\":\"Roundedness of the control's bottom left corner. A value of 0 is perfectly square.\",\"BorderRadius\":\"Border radius\",\"BorderRadius_Description\":\"Roundedness of the control's corners. A value of 0 is perfectly square.\",\"PaddingTop\":\"Top\",\"PaddingTop_Description\":\"Padding to apply to the top of the control.\",\"PaddingBottom\":\"Bottom\",\"PaddingBottom_Description\":\"Padding to apply to the bottom of the control.\",\"PaddingLeft\":\"Left\",\"PaddingLeft_Description\":\"Padding to apply to the left of the control.\",\"PaddingRight\":\"Right\",\"PaddingRight_Description\":\"Padding to apply to the right of the control.\"}}}",
+ "Type": 3
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 5,
+ "ModifiedPath": "",
+ "Path": "/PCF/fluentui-react.js",
+ "Type": 0
+ },
+ {
+ "IsControlSpecific": false,
+ "LoadingOrder": 0,
+ "ModifiedPath": "",
+ "Path": "Fluent/9.4.0/9.4.0",
+ "Type": 4
+ }
+ ],
+ "Version": "0.0.47"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerAppsOneGrid.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerAppsOneGrid.json
new file mode 100644
index 00000000..e352e457
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerAppsOneGrid.json
@@ -0,0 +1,168 @@
+{
+ "Name": "PowerAppsOneGrid",
+ "PcfConversions": [
+ {
+ "Action": [
+ {
+ "Name": "BasePaletteColor",
+ "Type": "add"
+ },
+ {
+ "Name": "AccessibleLabel",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.103",
+ "To": "1.0.104"
+ },
+ {
+ "Action": [
+ {
+ "Name": "ShowFooter",
+ "Type": "add"
+ },
+ {
+ "Name": "ShowColumnHeaders",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.109",
+ "To": "1.0.111"
+ },
+ {
+ "Action": [
+ {
+ "Name": "ShowAvatar",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.112",
+ "To": "1.0.113"
+ },
+ {
+ "Action": [
+ {
+ "Name": "NoDataText",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.116",
+ "To": "1.0.117"
+ },
+ {
+ "Action": [
+ {
+ "Name": "FontSize",
+ "Type": "add"
+ },
+ {
+ "Name": "HeaderFontSize",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.117",
+ "To": "1.0.118"
+ },
+ {
+ "Action": [
+ {
+ "Name": "EnableAggregation",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.129",
+ "To": "1.0.130"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Font",
+ "Type": "add"
+ },
+ {
+ "Name": "FontColor",
+ "Type": "add"
+ },
+ {
+ "Name": "FontWeight",
+ "Type": "add"
+ },
+ {
+ "Name": "HeaderFont",
+ "Type": "add"
+ },
+ {
+ "Name": "HeaderFontColor",
+ "Type": "add"
+ },
+ {
+ "Name": "HeaderFontWeight",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.130",
+ "To": "1.0.131"
+ },
+ {
+ "Action": [
+ {
+ "Name": "OnSelect",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.150",
+ "To": "1.0.151"
+ },
+ {
+ "Action": [
+ {
+ "Name": "EnableColumnMoving",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.162",
+ "To": "1.0.163"
+ },
+ {
+ "Action": [
+ {
+ "Name": "DisableChildItemsEditing",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.166",
+ "To": "1.0.167"
+ },
+ {
+ "Action": [
+ {
+ "Name": "DefaultSelectedItems",
+ "Type": "remove"
+ }
+ ],
+ "From": "1.0.183",
+ "To": "1.0.184"
+ },
+ {
+ "Action": [
+ {
+ "Name": "DateTimeFormat",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.232",
+ "To": "1.0.233"
+ },
+ {
+ "Action": [
+ {
+ "Name": "DateOnlyFormat",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.233",
+ "To": "1.0.234"
+ }
+ ],
+ "Version": "1.0.242"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_ButtonCanvas.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_ButtonCanvas.json
new file mode 100644
index 00000000..e2a8be0c
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_ButtonCanvas.json
@@ -0,0 +1,208 @@
+{
+ "Name": "PowerApps_CoreControls_ButtonCanvas",
+ "PcfConversions": [
+ {
+ "Action": [
+ {
+ "Name": "OnChange",
+ "Type": "remove"
+ }
+ ],
+ "From": "0.0.13",
+ "To": "0.0.14"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BasePaletteColor",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.17",
+ "To": "0.0.18"
+ },
+ {
+ "Action": [
+ {
+ "Name": "FontSize",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.20",
+ "To": "0.0.21"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Font",
+ "Type": "add"
+ },
+ {
+ "Name": "FontColor",
+ "Type": "add"
+ },
+ {
+ "Name": "FontWeight",
+ "Type": "add"
+ },
+ {
+ "Name": "FontItalic",
+ "Type": "add"
+ },
+ {
+ "Name": "FontUnderline",
+ "Type": "add"
+ },
+ {
+ "Name": "FontStrikethrough",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.25",
+ "To": "0.0.26"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BorderStyle",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusTopLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusTopRight",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusBottomRight",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusBottomLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingTop",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingRight",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingBottom",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "Align",
+ "Type": "add"
+ },
+ {
+ "Name": "VerticalAlign",
+ "Type": "add"
+ },
+ {
+ "Name": "HoverBorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "PressedBorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "DisabledBorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "FocusedBorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "Icon",
+ "Type": "add"
+ },
+ {
+ "Name": "Layout",
+ "Type": "add"
+ },
+ {
+ "Name": "IconRotation",
+ "Type": "add"
+ },
+ {
+ "Name": "IconStyle",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.29",
+ "To": "0.0.30"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BorderStyle",
+ "Type": "remove"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "remove"
+ },
+ {
+ "Name": "HoverBorderColor",
+ "Type": "remove"
+ },
+ {
+ "Name": "PressedBorderColor",
+ "Type": "remove"
+ },
+ {
+ "Name": "DisabledBorderColor",
+ "Type": "remove"
+ },
+ {
+ "Name": "FocusedBorderColor",
+ "Type": "remove"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "remove"
+ }
+ ],
+ "From": "0.0.40",
+ "To": "0.0.41"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BorderStyle",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.41",
+ "To": "0.0.42"
+ }
+ ],
+ "Version": "0.0.43"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_Spinner.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_Spinner.json
new file mode 100644
index 00000000..97c6575d
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_Spinner.json
@@ -0,0 +1,87 @@
+{
+ "Name": "PowerApps_CoreControls_Spinner",
+ "PcfConversions": [
+ {
+ "Action": [
+ {
+ "Name": "AccessibilityLabel",
+ "NewName": "AccessibleLabel",
+ "Type": "rename"
+ }
+ ],
+ "From": "1.0.9",
+ "To": "1.0.10"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BasePaletteColor",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.18",
+ "To": "1.0.19"
+ },
+ {
+ "Action": [
+ {
+ "Name": "FontSize",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.20",
+ "To": "1.0.21"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Font",
+ "Type": "add"
+ },
+ {
+ "Name": "FontColor",
+ "Type": "add"
+ },
+ {
+ "Name": "FontWeight",
+ "Type": "add"
+ },
+ {
+ "Name": "FontItalic",
+ "Type": "add"
+ },
+ {
+ "Name": "FontUnderline",
+ "Type": "add"
+ },
+ {
+ "Name": "FontStrikethrough",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.25",
+ "To": "1.0.26"
+ },
+ {
+ "Action": [
+ {
+ "Name": "SpinnerColor",
+ "Type": "add"
+ }
+ ],
+ "From": "1.0.36",
+ "To": "1.0.37"
+ },
+ {
+ "Action": [
+ {
+ "Name": "TrackColor",
+ "Type": "add"
+ }
+ ],
+ "From": "1.3.0",
+ "To": "1.3.1"
+ }
+ ],
+ "Version": "1.4.3"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_TextCanvas.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_TextCanvas.json
new file mode 100644
index 00000000..f87abe44
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PcfConversions/PowerApps_CoreControls_TextCanvas.json
@@ -0,0 +1,186 @@
+{
+ "Name": "PowerApps_CoreControls_TextCanvas",
+ "PcfConversions": [
+ {
+ "Action": [
+ {
+ "Name": "Size",
+ "Type": "remove"
+ }
+ ],
+ "From": "0.0.9",
+ "To": "0.0.10"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Size",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.10",
+ "To": "0.0.11"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Alignment",
+ "NewName": "Align",
+ "Type": "rename"
+ },
+ {
+ "Name": "As",
+ "Type": "remove"
+ },
+ {
+ "Name": "Truncate",
+ "Type": "remove"
+ },
+ {
+ "Name": "AutoHeight",
+ "Type": "add"
+ },
+ {
+ "Name": "VerticalAlign",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.13",
+ "To": "0.0.14"
+ },
+ {
+ "Action": [
+ {
+ "Name": "OnSelect",
+ "Type": "remove"
+ },
+ {
+ "Name": "OnChange",
+ "Type": "remove"
+ }
+ ],
+ "From": "0.0.14",
+ "To": "0.0.15"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Font",
+ "Type": "add"
+ },
+ {
+ "Name": "FontColor",
+ "Type": "add"
+ },
+ {
+ "Name": "Italic",
+ "NewName": "FontItalic",
+ "Type": "rename"
+ },
+ {
+ "Name": "Strikethrough",
+ "NewName": "FontStrikethrough",
+ "Type": "rename"
+ },
+ {
+ "Name": "Underline",
+ "NewName": "FontUnderline",
+ "Type": "rename"
+ }
+ ],
+ "From": "0.0.17",
+ "To": "0.0.18"
+ },
+ {
+ "Action": [
+ {
+ "Name": "Fill",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingTop",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingBottom",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "PaddingRight",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusTopLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusTopRight",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusBottomRight",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderRadiusBottomLeft",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderStyle",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.25",
+ "To": "0.0.26"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BorderStyle",
+ "Type": "remove"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "remove"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "remove"
+ }
+ ],
+ "From": "0.0.36",
+ "To": "0.0.37"
+ },
+ {
+ "Action": [
+ {
+ "Name": "BorderStyle",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderThickness",
+ "Type": "add"
+ },
+ {
+ "Name": "BorderColor",
+ "Type": "add"
+ }
+ ],
+ "From": "0.0.37",
+ "To": "0.0.38"
+ }
+ ],
+ "Version": "0.0.47"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PowerAppsOneGridTemplate_dataField_1.5.0.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PowerAppsOneGridTemplate_dataField_1.5.0.xml
new file mode 100644
index 00000000..cdad9dbf
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/PowerAppsOneGridTemplate_dataField_1.5.0.xml
@@ -0,0 +1,75 @@
+
+
+ TODO: Need license text here.
]]>
+
+
+
+
+
+
+ ##dataCard_FieldName##
+ ##dataCard_FieldName##
+
+
+ ##dataGrid_Column_Order_Text##
+ ##dataGrid_Column_Order_ToolTip##
+
+
+
+ data
+ ##dataGrid_Column_DisplayName_Text##
+
+
+
+ ##dataTableColumn_FieldType##
+ ##dataTableColumn_FieldType##
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ##dataTableColumn_Type##
+ Data
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/Wadl/GetTeamsChannelLibraryInfo.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/Wadl/GetTeamsChannelLibraryInfo.xml
new file mode 100644
index 00000000..82b10d84
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/Wadl/GetTeamsChannelLibraryInfo.xml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/groupContainer_1.3.0.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/groupContainer_1.3.0.xml
new file mode 100644
index 00000000..1c5f4db4
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/CanvasApps/src/kk_readteamcontext_43ee8/pkgs/groupContainer_1.3.0.xml
@@ -0,0 +1,165 @@
+
+
+ TODO: Need license text here.]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Customizations.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Customizations.xml
new file mode 100644
index 00000000..84b795b9
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Customizations.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ HTTP With Microsoft Entra ID
+ /providers/Microsoft.PowerApps/apis/shared_webcontentsv2
+ 1
+ 0
+ 0
+ 1
+
+
+
+ 1033
+ 1031
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Solution.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Solution.xml
new file mode 100644
index 00000000..16706cb7
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Other/Solution.xml
@@ -0,0 +1,86 @@
+
+
+
+ UtilsGetTeamsChannelLibraryInfo
+
+
+
+
+ 1.0.0.0
+ 2
+
+ KingaK
+
+
+
+
+
+
+ kk
+ 33987
+
+
+ 1
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+ 2
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json
new file mode 100644
index 00000000..83ffc9fa
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json
@@ -0,0 +1,641 @@
+{
+ "properties": {
+ "connectionReferences": {
+ "shared_webcontentsv2_1": {
+ "runtimeSource": "invoker",
+ "connection": {
+ "connectionReferenceLogicalName": "kk_sharedwebcontentsv2_71133"
+ },
+ "api": {
+ "name": "shared_webcontentsv2"
+ }
+ }
+ },
+ "definition": {
+ "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "$connections": {
+ "defaultValue": {},
+ "type": "Object"
+ },
+ "$authentication": {
+ "defaultValue": {},
+ "type": "SecureObject"
+ }
+ },
+ "triggers": {
+ "manual": {
+ "metadata": {
+ "operationMetadataId": "ad2202dc-c0b7-4d94-aaea-f7b81c199995"
+ },
+ "type": "Request",
+ "kind": "PowerAppV2",
+ "inputs": {
+ "schema": {
+ "type": "object",
+ "properties": {
+ "text": {
+ "title": "teamId",
+ "type": "string",
+ "x-ms-dynamically-added": true,
+ "description": "Please enter your input",
+ "x-ms-content-hint": "TEXT"
+ },
+ "text_1": {
+ "title": "channelId",
+ "type": "string",
+ "x-ms-dynamically-added": true,
+ "description": "Please enter your input",
+ "x-ms-content-hint": "TEXT"
+ }
+ },
+ "required": [
+ "text",
+ "text_1"
+ ]
+ }
+ }
+ }
+ },
+ "actions": {
+ "Initialize_variable_:_teamGuid": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "482eea27-a42b-4a4d-b54d-9360bac23b80"
+ },
+ "type": "InitializeVariable",
+ "inputs": {
+ "variables": [
+ {
+ "name": "teamGuid",
+ "type": "string"
+ }
+ ]
+ }
+ },
+ "Scope_:_get_team_Id_from_internalId_": {
+ "actions": {
+ "Invoke_an_HTTP_request_:_get_team_InternalId": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "7aadccca-385e-41d8-9769-2522510764da"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/teams?$select=id"
+ },
+ "authentication": "@parameters('$authentication')"
+ },
+ "description": "get all teams and fetch their Ids"
+ },
+ "Parse_JSON_:_get_Id": {
+ "runAfter": {
+ "Invoke_an_HTTP_request_:_get_team_InternalId": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "26eecae5-045e-4dd9-9fdc-3b420e88e51f"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request_:_get_team_InternalId')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "@@odata.count": {
+ "type": "integer"
+ },
+ "value": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ]
+ }
+ }
+ }
+ }
+ }
+ },
+ "Apply_to_each_:_team_": {
+ "foreach": "@body('Parse_JSON_:_get_Id')?['value']",
+ "actions": {
+ "Invoke_an_HTTP_request_:_get_internalId": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "07b6135b-dc1b-44a1-8128-91e4bcd2603e"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/teams/@{items('Apply_to_each_:_team_')?['id']}?$select=internalId"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ },
+ "Parse_JSON_:_get_internalId": {
+ "runAfter": {
+ "Invoke_an_HTTP_request_:_get_internalId": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "883d1730-78e7-464e-8bcf-6c1a0331616e"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request_:_get_internalId')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "@@microsoft.graph.tips": {
+ "type": "string"
+ },
+ "internalId": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ },
+ "internalId_==_Param(teamId)": {
+ "actions": {
+ "Set_variable_:_teamGuid": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "81e36daf-d86d-45f0-86bf-e030a6cccfd3"
+ },
+ "type": "SetVariable",
+ "inputs": {
+ "name": "teamGuid",
+ "value": "@items('Apply_to_each_:_team_')?['id']"
+ }
+ }
+ },
+ "runAfter": {
+ "Parse_JSON_:_get_internalId": [
+ "Succeeded"
+ ]
+ },
+ "expression": {
+ "equals": [
+ "@body('Parse_JSON_:_get_internalId')?['internalId']",
+ "@triggerBody()['text']"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "5c8ca8cd-d2b7-4b9a-920b-e159e95be7cf"
+ },
+ "type": "If"
+ }
+ },
+ "runAfter": {
+ "Parse_JSON_:_get_Id": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "4b95526e-e828-4170-a1ed-b39be25e7cf0"
+ },
+ "type": "Foreach",
+ "description": "For each team Id, fetch internalId and compare with the teamId parameter (which is in internalId format)"
+ }
+ },
+ "runAfter": {
+ "Initialize_variable_:_teamGuid": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "0e862ee6-72c3-473b-9a14-2ef9d46234bf"
+ },
+ "type": "Scope"
+ },
+ "Condition:_if_team_found": {
+ "actions": {
+ "Invoke_an_HTTP_request_:_get_folder_for_channel": {
+ "runAfter": {},
+ "metadata": {
+ "operationMetadataId": "c678cc4d-5d0e-4181-93b1-15ce88cef2a5"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/teams/@{variables('teamGuid')}/channels/@{triggerBody()['text_1']}/filesFolder?$select=id,name,parentReference"
+ },
+ "authentication": "@parameters('$authentication')"
+ },
+ "description": "get id,displayName of the folder, and driveId of the library (parentReference)"
+ },
+ "Parse_JSON_:_get_folder_Info": {
+ "runAfter": {
+ "Invoke_an_HTTP_request_:_get_folder_for_channel": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "82b57f2f-8c47-47ac-9c37-9d2663cd1171"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request_:_get_folder_for_channel')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "parentReference": {
+ "type": "object",
+ "properties": {
+ "driveId": {
+ "type": "string"
+ },
+ "driveType": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ },
+ "description": "get id, webUrl, driveId"
+ },
+ "Invoke_an_HTTP_request_:_get_library_by_driveId": {
+ "runAfter": {
+ "Parse_JSON:_get_folder_by_Id_info": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "8c90df2b-ea9b-4189-a5dd-c3acf10965c4"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/drives/@{body('Parse_JSON_:_get_folder_Info')?['parentReference']?['driveId']}/list?$select=id,webUrl,name,displayName,parentReference"
+ },
+ "authentication": "@parameters('$authentication')"
+ },
+ "description": "get id (guid), url, name,displayname of the library and parentReference/siteId; siteId=tenantname,siteId,webId"
+ },
+ "Parse_JSON_:_get_list_and_site_info": {
+ "runAfter": {
+ "Invoke_an_HTTP_request_:_get_library_by_driveId": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "d0d0be24-f8f4-485e-8e4e-e854567c6ae5"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request_:_get_library_by_driveId')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "@@odata.etag": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "webUrl": {
+ "type": "string"
+ },
+ "displayName": {
+ "type": "string"
+ },
+ "parentReference": {
+ "type": "object",
+ "properties": {
+ "siteId": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "Invoke_an_HTTP_request_:_get_folder_by_Id": {
+ "runAfter": {
+ "Parse_JSON_:_get_folder_Info": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "674bf34f-afbc-42cf-af5e-297ec06dbc47"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/drives/@{body('Parse_JSON_:_get_folder_Info')?['parentReference']?['driveId']}/items/@{body('Parse_JSON_:_get_folder_Info')?['id']}/listItem?$select=id,webUrl,parentReference"
+ },
+ "authentication": "@parameters('$authentication')"
+ },
+ "description": "get folder id (int) and absoluteUrl, and libraryId (guid) and site id (tenantname,siteguid,another guid)"
+ },
+ "Parse_JSON:_get_folder_by_Id_info": {
+ "runAfter": {
+ "Invoke_an_HTTP_request_:_get_folder_by_Id": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "814444df-74f3-4d1a-affb-56c8566ebad3"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request_:_get_folder_by_Id')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "@@odata.etag": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "webUrl": {
+ "type": "string"
+ },
+ "parentReference": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "siteId": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "Invoke_an_HTTP_request:_get_site_info": {
+ "runAfter": {
+ "Compose": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "d3ca1ace-f02b-4a9c-b18b-6dcf900b797a"
+ },
+ "type": "OpenApiConnection",
+ "inputs": {
+ "host": {
+ "connectionName": "shared_webcontentsv2_1",
+ "operationId": "InvokeHttp",
+ "apiId": "/providers/Microsoft.PowerApps/apis/shared_webcontentsv2"
+ },
+ "parameters": {
+ "request/method": "GET",
+ "request/url": "https://graph.microsoft.com/v1.0/sites/@{body('Parse_JSON_:_get_list_and_site_info')?['parentReference']?['siteId']}?$select=name,weburl,displayName"
+ },
+ "authentication": "@parameters('$authentication')"
+ }
+ },
+ "Compose": {
+ "runAfter": {
+ "Parse_JSON_:_get_list_and_site_info": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "a3ccc14c-8599-4771-960e-28b8447701f7"
+ },
+ "type": "Compose",
+ "inputs": "@split(body('Parse_JSON_:_get_list_and_site_info')?['parentReference']?['siteId'],',')"
+ },
+ "Parse_JSON_:_get_site_info": {
+ "runAfter": {
+ "Invoke_an_HTTP_request:_get_site_info": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "64a9021e-fd17-46f1-8114-429c246806c5"
+ },
+ "type": "ParseJson",
+ "inputs": {
+ "content": "@body('Invoke_an_HTTP_request:_get_site_info')",
+ "schema": {
+ "type": "object",
+ "properties": {
+ "@@odata.context": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "webUrl": {
+ "type": "string"
+ },
+ "displayName": {
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ },
+ "runAfter": {
+ "Scope_:_get_team_Id_from_internalId_": [
+ "Succeeded"
+ ]
+ },
+ "expression": {
+ "not": {
+ "equals": [
+ "@variables('teamGuid')",
+ ""
+ ]
+ }
+ },
+ "metadata": {
+ "operationMetadataId": "1d294458-f608-4e01-8a5f-89924c97b393"
+ },
+ "type": "If",
+ "description": "if team found, retrieve details of the folder, library and site"
+ },
+ "Respond_to_a_Power_App_or_flow": {
+ "runAfter": {
+ "Condition:_if_team_found": [
+ "Succeeded"
+ ]
+ },
+ "metadata": {
+ "operationMetadataId": "bfc87f46-9241-4c18-8f27-dc6582502107"
+ },
+ "type": "Response",
+ "kind": "PowerApp",
+ "inputs": {
+ "statusCode": 200,
+ "body": {
+ "folder_display_name": "@body('Parse_JSON_:_get_folder_Info')?['name']",
+ "folder_id": "@body('Parse_JSON:_get_folder_by_Id_info')?['id']",
+ "folder_drive_id": "@body('Parse_JSON_:_get_folder_Info')?['id']",
+ "folder_absolute_url": "@body('Parse_JSON:_get_folder_by_Id_info')?['webUrl']",
+ "library_name": "@body('Parse_JSON_:_get_list_and_site_info')?['name']",
+ "library_title": "@body('Parse_JSON_:_get_list_and_site_info')?['displayName']",
+ "library_id": "@body('Parse_JSON_:_get_list_and_site_info')?['id']",
+ "library_drive_id": "@body('Parse_JSON_:_get_folder_Info')?['parentReference']?['driveId']",
+ "library_absolute_url": "@body('Parse_JSON_:_get_list_and_site_info')?['webUrl']",
+ "web_id": "@{outputs('Compose')?[2]}",
+ "site_id": "@{outputs('Compose')[1]}",
+ "tenant_name": "@{outputs('Compose')?[0]}",
+ "team_id": "@variables('teamGuid')",
+ "site_url": "@body('Parse_JSON_:_get_site_info')?['webUrl']",
+ "site_title": "@body('Parse_JSON_:_get_site_info')?['displayName']"
+ },
+ "schema": {
+ "type": "object",
+ "properties": {
+ "folder_display_name": {
+ "title": "Folder Display Name",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "folder_id": {
+ "title": "Folder Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "folder_drive_id": {
+ "title": "Folder Drive Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "folder_absolute_url": {
+ "title": "Folder Absolute Url",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "library_name": {
+ "title": "Library Name",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "library_title": {
+ "title": "Library Title",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "library_id": {
+ "title": "Library Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "library_drive_id": {
+ "title": "Library Drive Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "library_absolute_url": {
+ "title": "Library Absolute Url",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "web_id": {
+ "title": "web Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "site_id": {
+ "title": "site Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "tenant_name": {
+ "title": "tenant Name",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "team_id": {
+ "title": "team Id",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "site_url": {
+ "title": "site Url",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ },
+ "site_title": {
+ "title": "site Title",
+ "x-ms-dynamically-added": true,
+ "type": "string"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "templateName": ""
+ },
+ "schemaVersion": "1.0.0.0"
+}
\ No newline at end of file
diff --git a/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json.data.xml b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json.data.xml
new file mode 100644
index 00000000..5c6f38d8
--- /dev/null
+++ b/samples/utility_flow_get_spo_library_from_teams/sourcecode/UtilsGetTeamsChannelLibraryInfo/src/Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json.data.xml
@@ -0,0 +1,29 @@
+
+
+ /Workflows/GetTeamsChannelLibraryInfo-2B17BB29-F7C5-EF11-B8E8-002248DB5453.json
+ 1
+ 0
+ 5
+ 0
+ 4
+ 0
+ 0
+ 0
+ 0
+ 0
+ 1
+ 2
+ 1
+ 1
+ 1.0.0.0
+ 1
+ 0
+ 1
+ none
+
+
+
+
+
+
+
\ No newline at end of file