diff --git a/.vscode/settings.json b/.vscode/settings.json index acc5600c..50b42437 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,5 +6,6 @@ ], "githubPullRequests.ignoredPullRequestBranches": [ "main" - ] + ], + "sarif-viewer.connectToGithubCodeScanning": "off" } \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/README.md b/samples/exploring-visual-cards-in-galleries/README.md new file mode 100644 index 00000000..933a2daf --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/README.md @@ -0,0 +1,206 @@ +# Exploring Visual Cards in a Gallery + + + +## Summary + +This sample explores gallery card designs using controls and HTML text boxes. The html based cards were generated based on designs from https://freefrontend.com/. Most of the card designs using HTML and CSS are not compatible with the HTML control so Copilot was used to combine the HTML and CSS to make it at least 80% compatible for use with the HTML text box. The data in these samples uses collections created in the OnStart. + + + + +![Sample gallery using regular controls](assets/CardSample1.png) +*Screen - CardSample1* + +## Applies to + +* [Microsoft Power Apps](https://docs.microsoft.com/powerapps/) + + + +## Compatibility + + + +![Power Apps Source File Pack and Unpack Utility 0.20](https://img.shields.io/badge/Packing%20Tool-0.20-green.svg) +![Premium License](https://img.shields.io/badge/Premium%20License-Not%20Required-green.svg "Premium Power Apps license not required") +![Experimental Features](https://img.shields.io/badge/Experimental%20Features-No-green.svg "Does not rely on experimental features") +![On-Premises Connectors](https://img.shields.io/badge/On--Premises%20Connectors-No-green.svg "Does not use on-premise connectors") +![Custom Connectors](https://img.shields.io/badge/Custom%20Connectors-Not%20Required-green.svg "Does not use custom connectors") + +## Authors + + +Solution|Author(s) +--------|--------- +Ronald Walcott | [GitHub](https://github.com/ronaldwalcott) - [LinkedIn](https://www.linkedin.com/in/ronald-b-walcott/) + + +## Version history + +Version|Date|Comments +-------|----|-------- +1.0|December 18, 2025|Initial release + +## Features + + +![Sample gallery using regular controls](assets/CardSample1.png) +*Screen - CardSample1* + + +Clicking more pop ups a modal box diplaying detailed information + +![Sample gallery with a popup using glassmorphism](assets/CardSample1_Popup.png) +*Screen - CardSample1* + + +versus a gallery using an info button + +![Sample gallery using regular controls](assets/CardSample1_2.png) +*Screen - CardSample1_2* + + +Clicking the info button shows more details of the card +![Sample gallery using the info button to display more information](assets/CardSample1_2_info.png) +*Screen - CardSample1_2* + + +Also tried creating a modal popup with animation where the info buttons slide out when the card is selected in the gallery. It is simulated using a button +![Animated card simulated info buttons popup](assets/CardPopoutSample.png) +*Screen - CardPopoutSample* + + +Nested Galleries sample based on the collection added to the OnStart starting with + + ClearCollect( + PeopleSample, + { + Name: "Aaliyah Clarke", + JobTitle: "Event Producer", + Bio: "Aaliyah has produced over 200 cultural events across the Caribbean, blending logistics with creative storytelling. She specializes in artist-led programming and community engagement.", + Summary: "Cultural event producer focused on artist-led programming.", + Img: Face1, + Roles: Table( + { Role: "Producer", Area: "Events", Level: "Senior" }, + { Role: "Logistics Lead", Area: "Operations", Level: "Mid" }, + { Role: "Community Liaison", Area: "Programming", Level: "Mid" } + ) + }, + +where the roles are added as a nested gallery + +![Sample gallery using the info button to display more information](assets/CardSample1_4_nested.png) +*Screen - CardSample1_4_nested* + +Cards created using HTML text controls + +![Card HTML samples](assets/CardHtmlSamples.png) +*Screen - CardSamples* + +Sample galleries using HTML text controls +![Sample gallery using HTML controls](assets/CardSubstitutionGallery1.png) +*Screen - CardSubstitutionGallery1* + +![Sample gallery using HTML controls](assets/CardSubstitutionGallery2.png) +*Screen - CardSubstitutionGallery2* + + +This collection is used as the data source for these galleries +``` +ClearCollect(SampleVisual, + { + Heading: "Plans", + SubHeading: "Starter", + AmountValue: "19", + Item1: "Feature one", + Item2: "Feature two", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Medium", + AmountValue: "39", + Item1: "Feature three", + Item2: "Feature four", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Advanced", + AmountValue: "45", + Item1: "Feature five", + Item2: "Feature six", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + } +); + +``` + + + +## Prerequisites + +No prerequisites are needed for these samples + + +## Solution Components + +This sample consist of one canvas app using collections for the data source + + + + +## Minimal Path to Awesome + +* [Download](./solution/exploring-visual-cards-in-galleries.zip) the solution `.zip` from the `solution` folder +* Within **https://make.powerapps.com**, import the `.zip` file via **Solutions** > **Import solution** > **Browse** and select the `.zip` file you just downloaded. +* Click next. +* ... + +## Using the Source Code + +You can also use the [Power Apps CLI](https://aka.ms/pac/docs) to pack the source code by following these steps:: + +* Clone the repository to a local drive +* Pack the source files back into `.zip` file: + ```bash + pac solution pack --folder pathtosourcefolder --zipfile pathtosolution --processCanvasApps + ``` + Making sure to replace `pathtosourcefolder` to point to the path to this sample's `sourcecode` folder, and `pathtosolution` to point to the path of this solution's `.zip` file (located under the `solution` folder) +* Within **https://make.powerapps.com**, import the `.zip` file via **Solutions** > **Import solution** > **Browse** and select the `.zip` file you just downloaded. +* Click next. +* ... + +## 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.** + +## Help + + + +We do not support samples, but we 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=YOURSAMPLENAME&authors=@YOURGITHUBUSERNAME&title=YOURSAMPLENAME%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=YOURSAMPLENAME&authors=@YOURGITHUBUSERNAME&title=YOURSAMPLENAME%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=YOURSAMPLENAME&authors=@YOURGITHUBUSERNAME&title=YOURSAMPLENAME%20-%20). + +## For more information + +- [Overview of creating apps in Power Apps](https://docs.microsoft.com/powerapps/maker/) +- [Power Apps canvas apps documentation](https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/) + + + + +--- + diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardHTMLSamples.png b/samples/exploring-visual-cards-in-galleries/assets/CardHTMLSamples.png new file mode 100644 index 00000000..1c7bf46a Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardHTMLSamples.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardPopoutSample.png b/samples/exploring-visual-cards-in-galleries/assets/CardPopoutSample.png new file mode 100644 index 00000000..3d156467 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardPopoutSample.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSample1.png b/samples/exploring-visual-cards-in-galleries/assets/CardSample1.png new file mode 100644 index 00000000..7ce4308b Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSample1.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2.png b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2.png new file mode 100644 index 00000000..468a232f Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2_info.png b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2_info.png new file mode 100644 index 00000000..33f8fc7a Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_2_info.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSample1_4_nested.png b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_4_nested.png new file mode 100644 index 00000000..c170626f Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_4_nested.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSample1_Popup.png b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_Popup.png new file mode 100644 index 00000000..c8f42007 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSample1_Popup.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery1.png b/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery1.png new file mode 100644 index 00000000..4ca1d507 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery1.png differ diff --git a/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery2.png b/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery2.png new file mode 100644 index 00000000..d920cd2e Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/assets/CardSubstitutionGallery2.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/847408384.jpg b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/847408384.jpg new file mode 100644 index 00000000..c68e9b0d Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/847408384.jpg differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face1.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face1.png new file mode 100644 index 00000000..ecf33b93 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face1.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face10.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face10.png new file mode 100644 index 00000000..cf9b6a9c Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face10.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face11.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face11.png new file mode 100644 index 00000000..54ca58f1 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face11.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face12.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face12.png new file mode 100644 index 00000000..364b8298 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face12.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face13.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face13.png new file mode 100644 index 00000000..192c6fbd Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face13.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face14.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face14.png new file mode 100644 index 00000000..73126a97 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face14.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face15.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face15.png new file mode 100644 index 00000000..471d9e78 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face15.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face16.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face16.png new file mode 100644 index 00000000..22cf9c96 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face16.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face17.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face17.png new file mode 100644 index 00000000..fd3266c7 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face17.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face18.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face18.png new file mode 100644 index 00000000..f67b7de7 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face18.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face19.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face19.png new file mode 100644 index 00000000..27ad362e Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face19.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face2.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face2.png new file mode 100644 index 00000000..7929e1df Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face2.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face3.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face3.png new file mode 100644 index 00000000..8eea971a Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face3.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face4.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face4.png new file mode 100644 index 00000000..5e6d746d Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face4.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face5.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face5.png new file mode 100644 index 00000000..5d5d13a3 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face5.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face6.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face6.png new file mode 100644 index 00000000..065382e7 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face6.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face7.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face7.png new file mode 100644 index 00000000..ac0e2775 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face7.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face8.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face8.png new file mode 100644 index 00000000..bd26167b Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face8.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face9.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face9.png new file mode 100644 index 00000000..659792b7 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/Face9.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/stacked-waves-haikei.png b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/stacked-waves-haikei.png new file mode 100644 index 00000000..eac52317 Binary files /dev/null and b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/Images/stacked-waves-haikei.png differ diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/SampleImage.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Assets/SampleImage.json new file mode 100644 index 00000000..ce6ca28a --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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/exploring-visual-cards-in-galleries/sourcecode/CanvasManifest.json b/samples/exploring-visual-cards-in-galleries/sourcecode/CanvasManifest.json new file mode 100644 index 00000000..68f86cc3 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/CanvasManifest.json @@ -0,0 +1,152 @@ +{ + "FormatVersion": "0.24", + "Header": { + "AnalysisOptions": { + "DataflowAnalysisEnabled": true, + "DataflowAnalysisFlagStateToggledByUser": false + }, + "DocVersion": "1.346", + "MinVersionToLoad": "1.331", + "MSAppStructureVersion": "2.4.0" + }, + "Properties": { + "AppCopilotSchemaName": "", + "AppCreationSource": "AppFromScreenTemplate", + "AppDescription": "", + "AppPreviewFlagsMap": { + "adaptivepaging": false, + "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, + "disablefallbacktopayamlv2": false, + "disableruntimepolicies": false, + "dynamicschema": false, + "enableappembeddingux": false, + "enablecanvasappruntimecopilot": true, + "enablecomponentnamemaps": false, + "enablecomponentscopeoldbehavior": false, + "enablecopilotanswercontrol": true, + "enablecopilotcontrol": true, + "enablecreateaformula": true, + "enabledataverseoffline": false, + "enableeditinmcs": true, + "enableexcelonlinebusinessv2connector": true, + "enablelegacybarcodescanner": 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, + "generatedebugpublishedapp": false, + "herocontrols": false, + "improvedtabstopbehavior": false, + "isemptyrequirestableargument": true, + "keeprecentscreensloaded": false, + "loadcomponentdefinitionsondemand": true, + "longlivingcache": false, + "mobilenativerendering": false, + "nativecdsexperimental": true, + "offlineprofilegenerationemitscolumns": false, + "onegrid": false, + "optimizedforteamsmeeting": false, + "optimizestartscreenpublishedappload": true, + "packagemodernruntime": false, + "pdffunction": false, + "powerfxdecimal": false, + "powerfxv1": false, + "preferpayamlv2inux": false, + "primaryoutputpropertycoerciondeprecated": true, + "proactivecontrolrename": true, + "projectionmapping": 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, + "userdefinedtypes": true, + "webbarcodescanner": false, + "zeroalltabindexes": true + }, + "Author": "", + "BindingErrorCount": 0, + "ConnectionString": "", + "ContainsThirdPartyPcfControls": false, + "DefaultConnectedDataSourceMaxGetRowsCount": 500, + "DocumentAppType": "DesktopOrTablet", + "DocumentLayoutHeight": 768, + "DocumentLayoutLockOrientation": false, + "DocumentLayoutMaintainAspectRatio": false, + "DocumentLayoutOrientation": "landscape", + "DocumentLayoutScaleToFit": false, + "DocumentLayoutWidth": 1366, + "DocumentType": "App", + "EnableInstrumentation": false, + "FileID": "bdf545a8-c422-4ea9-ab2d-76a3624a9354", + "Id": "bdf545a8-c422-4ea9-ab2d-76a3624a9354", + "LocalDatabaseReferences": "", + "ManualOfflineProfileId": "", + "Name": "Exploring Visual Cards in a Gallery", + "OriginatingVersion": "1.346", + "ParserErrorCount": 0, + "ShowStatusBar": false + }, + "PublishInfo": { + "AppName": "Exploring Visual Cards in a Gallery", + "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", + "CardSample1", + "CardSample1_2", + "CardSampleVisual", + "CardSample1_1_test", + "CardSample1_3_test", + "CardSample1_4_nested", + "Screen2", + "Screen_Main", + "CardPopoutSample", + "CardSubstitutionTest1", + "CardSubstitutionGallery1", + "CardSubstitutionGallery2" + ] +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/ComponentReferences.json b/samples/exploring-visual-cards-in-galleries/sourcecode/ComponentReferences.json new file mode 100644 index 00000000..0637a088 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/ComponentReferences.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Connections/Connections.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Connections/Connections.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Connections/Connections.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/ControlTemplates.json b/samples/exploring-visual-cards-in-galleries/sourcecode/ControlTemplates.json new file mode 100644 index 00000000..43bd9d21 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/ControlTemplates.json @@ -0,0 +1,231 @@ +{ + "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/button", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "button", + "OverridableProperties": {}, + "Version": "2.2.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.45" + }, + "gallery": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/gallery", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "gallery", + "OverridableProperties": {}, + "Version": "2.15.0" + }, + "galleryTemplate": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/galleryTemplate", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": false, + "LastModifiedTimestamp": "0", + "Name": "galleryTemplate", + "OverridableProperties": {}, + "Version": "1.0" + }, + "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" + }, + "htmlViewer": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/htmlViewer", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "htmlViewer", + "OverridableProperties": {}, + "Version": "2.1.0" + }, + "image": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/image", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "image", + "OverridableProperties": {}, + "Version": "2.2.3" + }, + "Information button": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_InfoButtonCanvas", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": true, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_InfoButtonCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Information button", + "Version": "0.0.33" + }, + "label": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/label", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "label", + "OverridableProperties": {}, + "Version": "2.5.1" + }, + "rectangle": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/shapes/rectangle", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "rectangle", + "OverridableProperties": {}, + "Version": "2.3.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" + }, + "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.51" + }, + "Text input": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/powercontrol/PowerApps_CoreControls_TextInputCanvas", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": true, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_TextInputCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Text input", + "Version": "0.0.54" + }, + "timer": { + "CustomGroupControlTemplateName": "", + "FirstParty": true, + "Id": "http://microsoft.com/appmagic/timer", + "IsComponentTemplate": false, + "IsCustomGroupControlTemplate": false, + "IsPcfControl": false, + "IsPremiumPcfControl": false, + "IsWidgetTemplate": true, + "LastModifiedTimestamp": "0", + "Name": "timer", + "OverridableProperties": {}, + "Version": "2.1.0" + } +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/DataSources/CustomGallerySample.json b/samples/exploring-visual-cards-in-galleries/sourcecode/DataSources/CustomGallerySample.json new file mode 100644 index 00000000..03563808 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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/exploring-visual-cards-in-galleries/sourcecode/Entropy/AppCheckerResult.sarif b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/AppCheckerResult.sarif new file mode 100644 index 00000000..d2d8750f --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/AppCheckerResult.sarif @@ -0,0 +1,1428 @@ +{ + "$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": "CardSample1.Gallery2.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1", + "type": "CardSample1.Gallery2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.Gallery2.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1", + "type": "CardSample1.Gallery2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.GalleryImage.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.GalleryImage.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1", + "type": "CardSample1.Gallery2.GalleryContainer.GalleryImage" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.GalleryImage.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.GalleryImage.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1", + "type": "CardSample1.Gallery2.GalleryContainer.GalleryImage" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.SummaryLabel.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.GalleryContainer.SummaryLabel.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1", + "type": "CardSample1.Gallery2.GalleryContainer.SummaryLabel" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.Gallery2.MoreInfoContainer.ButtonCanvas1.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.Gallery2.MoreInfoContainer.ButtonCanvas1.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1", + "type": "CardSample1.Gallery2.MoreInfoContainer.ButtonCanvas1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1", + "type": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1", + "type": "CardSample1.CardPopupContainer_1.PopupDataContainer_1.PopupImage" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen2" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen2", + "relativeAddress": 0 + } + }, + "properties": { + "module": "Screen2", + "type": "Screen2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Low" + }, + "ruleId": "acc-ReadableScreenNameNeeded", + "ruleIndex": 0 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen2.PopupContainer.Image1_1.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen2.PopupContainer.Image1_1.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "Screen2", + "type": "Screen2.PopupContainer.Image1_1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen2.PopupContainer.Image1_1.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen2.PopupContainer.Image1_1.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "Screen2", + "type": "Screen2.PopupContainer.Image1_1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Name.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Name.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "Screen_Main", + "type": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Name" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_JobTitle.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_JobTitle.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "Screen_Main", + "type": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_JobTitle" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Email.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Email.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "Screen_Main", + "type": "Screen_Main.ctr_Screen.ctr_Main.ctr_MainPane.txt_Email" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_1_test.Gallery2_1.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_1_test.Gallery2_1.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_1_test", + "type": "CardSample1_1_test.Gallery2_1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_1_test.Gallery2_1.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_1_test.Gallery2_1.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_1_test", + "type": "CardSample1_1_test.Gallery2_1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2.GalleryContainer_2.GalleryImage_2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.SummaryLabel_2.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.GalleryContainer_2.SummaryLabel_2.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2.GalleryContainer_2.SummaryLabel_2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.MoreInfoContainer_1.MoreInfoButton_1.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_2.Gallery2_2.MoreInfoContainer_1.MoreInfoButton_1.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_2", + "type": "CardSample1_2.Gallery2_2.MoreInfoContainer_1.MoreInfoButton_1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_3_test.Gallery2_3.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_3_test.Gallery2_3.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_3_test", + "type": "CardSample1_3_test.Gallery2_3" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_3_test.Gallery2_3.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_3_test.Gallery2_3.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_3_test", + "type": "CardSample1_3_test.Gallery2_3" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardPopoutSample.Container2.TitleButton.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardPopoutSample.Container2.TitleButton.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardPopoutSample", + "type": "CardPopoutSample.Container2.TitleButton" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardPopoutSample.Container2.BioButton.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardPopoutSample.Container2.BioButton.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardPopoutSample", + "type": "CardPopoutSample.Container2.BioButton" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardPopoutSample.Container2.SummaryButton.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardPopoutSample.Container2.SummaryButton.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardPopoutSample", + "type": "CardPopoutSample.Container2.SummaryButton" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardPopoutSample.Container2.ButtonCanvas2.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardPopoutSample.Container2.ButtonCanvas2.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardPopoutSample", + "type": "CardPopoutSample.Container2.ButtonCanvas2" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSubstitutionGallery1.Gallery1.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSubstitutionGallery1.Gallery1.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSubstitutionGallery1", + "type": "CardSubstitutionGallery1.Gallery1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSubstitutionGallery1.Gallery1.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSubstitutionGallery1.Gallery1.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSubstitutionGallery1", + "type": "CardSubstitutionGallery1.Gallery1" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSubstitutionGallery2.Gallery3.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSubstitutionGallery2.Gallery3.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSubstitutionGallery2", + "type": "CardSubstitutionGallery2.Gallery3" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSubstitutionGallery2.Gallery3.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSubstitutionGallery2.Gallery3.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSubstitutionGallery2", + "type": "CardSubstitutionGallery2.Gallery3" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.GalleryImage_4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.SummaryLabel_4.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.SummaryLabel_4.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.GalleryContainer_4.SummaryLabel_4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.TabIndex" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.TabIndex", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TabIndex", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "ruleIndex": 2 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.ButtonCanvas3.AccessibleLabel" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.ButtonCanvas3.AccessibleLabel", + "relativeAddress": 0 + } + }, + "properties": { + "member": "AccessibleLabel", + "module": "CardSample1_4_nested", + "type": "CardSample1_4_nested.Gallery2_4.MoreInfoContainer_2.Gallery4.ButtonCanvas3" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "acc-AccessibleLabelNeeded", + "ruleIndex": 1 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "App.varSelectedItem" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "App.varSelectedItem", + "relativeAddress": 0 + } + }, + "properties": { + "member": "varSelectedItem", + "module": "App", + "type": "App" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "app-UnusedVariables", + "ruleIndex": 3 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "App.TitleButtonX" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "App.TitleButtonX", + "relativeAddress": 0 + } + }, + "properties": { + "member": "TitleButtonX", + "module": "App", + "type": "App" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "app-UnusedVariables", + "ruleIndex": 3 + }, + { + "locations": [ + { + "logicalLocations": [ + { + "fullyQualifiedName": "App.stacked-waves-haikei" + } + ], + "physicalLocation": { + "address": { + "fullyQualifiedName": "App.stacked-waves-haikei", + "relativeAddress": 0 + } + }, + "properties": { + "member": "stacked-waves-haikei", + "module": "App", + "type": "App" + } + } + ], + "message": { + "id": "issue" + }, + "properties": { + "level": "Medium" + }, + "ruleId": "app-UnusedMediaResources", + "ruleIndex": 4 + } + ], + "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." + } + }, + { + "id": "acc-TabIndexShouldBeDefinedForInteractiveControl", + "messageStrings": { + "issue": { + "text": "Missing tab stop" + } + }, + "properties": { + "componentType": "app", + "howToFix": [ + "Set TabIndex to 0 or greater to ensure that interactive elements have a tab stop." + ], + "level": "Medium", + "primaryCategory": "accessibility", + "whyFix": "People who use the keyboard with your app will not be able to access this element without a tab stop." + } + }, + { + "id": "app-UnusedVariables", + "messageStrings": { + "issue": { + "text": "Unused variable" + } + }, + "properties": { + "componentType": "app", + "howToFix": [ + "Remove the unused variable." + ], + "level": "Medium", + "primaryCategory": "performance", + "whyFix": "This variable is declared but is not referenced by any control, so it is not needed." + } + }, + { + "id": "app-UnusedMediaResources", + "messageStrings": { + "issue": { + "text": "Unused media files" + } + }, + "properties": { + "componentType": "app", + "howToFix": [ + "Remove the unused media file in the Media pane." + ], + "level": "Medium", + "primaryCategory": "performance", + "whyFix": "This media file is not referenced by any control formulas so it is not needed. Removing it will improve performance." + } + } + ], + "version": "1.346" + } + } + } + ], + "version": "2.1.0" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/Entropy.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/Entropy.json new file mode 100644 index 00000000..996dcf04 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/Entropy.json @@ -0,0 +1,771 @@ +{ + "ComponentIndexes": {}, + "ControlUniqueGuids": {}, + "ControlUniqueIds": { + "App": 1, + "BioButton": 86, + "BioPopupTextCanvas": 26, + "ButtonCanvas1": 17, + "ButtonCanvas2": 89, + "ButtonCanvas3": 115, + "CardPopoutSample": 82, + "CardPopupContainer_1": 18, + "CardSample1": 9, + "CardSample1_1_test": 54, + "CardSample1_2": 62, + "CardSample1_3_test": 72, + "CardSample1_4_nested": 105, + "CardSampleVisual": 80, + "CardSubstitutionGallery1": 95, + "CardSubstitutionGallery2": 100, + "CardSubstitutionTest1": 90, + "Container1": 30, + "Container2": 83, + "Container3": 91, + "Container4": 98, + "Container5": 93, + "Container5_1": 103, + "ctr_Main": 44, + "ctr_MainPane": 46, + "ctr_Screen": 43, + "DataContainer": 37, + "FooterContainer1": 8, + "Gallery1": 96, + "Gallery2": 10, + "Gallery2_1": 55, + "Gallery2_2": 63, + "Gallery2_3": 73, + "Gallery2_4": 106, + "Gallery3": 101, + "Gallery4": 113, + "GalleryContainer": 12, + "GalleryContainer_1": 57, + "GalleryContainer_2": 65, + "GalleryContainer_3": 75, + "GalleryContainer_4": 108, + "GalleryImage": 13, + "GalleryImage_1": 58, + "GalleryImage_2": 66, + "GalleryImage_3": 76, + "GalleryImage_4": 109, + "galleryTemplate1": 97, + "galleryTemplate2": 11, + "galleryTemplate2_1": 56, + "galleryTemplate2_2": 64, + "galleryTemplate2_3": 74, + "galleryTemplate2_4": 107, + "galleryTemplate3": 102, + "galleryTemplate4": 114, + "GlassmorphismHtml": 36, + "HeaderContainer1": 6, + "hmtl_Glassmorphism": 45, + "hmtl_Glassmorphism_1": 31, + "Host": 3, + "HtmlText1": 29, + "HtmlText1_1": 81, + "HtmlText1_3": 92, + "HtmlText1_4": 99, + "HtmlText2": 39, + "HtmlText2_1": 94, + "HtmlText2_2": 104, + "HtmlText3": 41, + "HtmlText4": 40, + "Image1": 32, + "Image1_1": 35, + "JobTitlePopupTextCanvas": 25, + "lbl_Email": 52, + "lbl_JobTitle": 50, + "lbl_Name": 48, + "MainContainer1": 7, + "MoreButton_1": 61, + "MoreButton_2": 79, + "MoreInfoButton_1": 71, + "MoreInfoContainer": 16, + "MoreInfoContainer_1": 69, + "MoreInfoContainer_2": 112, + "NameLabel": 15, + "NameLabel_1": 60, + "NameLabel_2": 68, + "NameLabel_3": 78, + "NameLabel_4": 111, + "NamePopupTextCanvas": 23, + "PopupContainer": 34, + "PopupDataContainer_1": 20, + "PopupDetailsContainer": 22, + "PopupGlassmorphismHtml_1": 19, + "PopupImage": 21, + "Rectangle1": 24, + "SampleCardImage": 88, + "Screen_Main": 42, + "Screen1": 4, + "Screen2": 28, + "ScreenContainer1": 5, + "SummaryButton": 87, + "SummaryLabel": 14, + "SummaryLabel_1": 59, + "SummaryLabel_2": 67, + "SummaryLabel_3": 77, + "SummaryLabel_4": 110, + "SummaryPopupTextCanvas": 27, + "TextCanvas1_1": 70, + "TextCanvas2": 33, + "TextCanvas2_1": 38, + "Timer1": 84, + "TitleButton": 85, + "txt_Email": 53, + "txt_Header": 47, + "txt_JobTitle": 51, + "txt_Name": 49 + }, + "FunctionParamsInvariantScripts": {}, + "FunctionParamsInvariantScriptsOnInstances": {}, + "HeaderLastSavedDateTimeUTC": "12/12/2025 22:30:24", + "IsLegacyComponentAllowGlobalScopeCase": false, + "LocalConnectionIDReferences": {}, + "LocalDatabaseReferencesAsEmpty": true, + "LocalResourceFileNames": { + "847408384": "6a4e25db-8d34-44a8-b5db-d980ad0f5918.jpg", + "Face1": "a8641ca2-3f7f-41dd-ac10-eb18e23579ca.png", + "Face10": "4029897a-de4a-4c12-bfc6-dd24ea71f04d.png", + "Face11": "a0e8e578-b921-4d0c-80f1-8967a5f6559d.png", + "Face12": "906b0b4a-974d-45c8-b89c-b229964474da.png", + "Face13": "a2c2a4a8-662c-40de-a90e-d978858517d0.png", + "Face14": "8d350853-024a-478f-8352-1832137f4337.png", + "Face15": "352e3a4a-ae15-443e-a918-381e0ea129da.png", + "Face16": "3c39b30e-3d79-4ebf-9bf8-cd120c56d531.png", + "Face17": "7e80e99e-56d8-4d34-92bc-517db6add550.png", + "Face18": "b9c6b232-f557-4538-8789-dc508751494c.png", + "Face19": "f03ef2b7-e3cc-4926-8643-8295cf144315.png", + "Face2": "1820712a-f039-44b7-be9f-3c0f35123f23.png", + "Face3": "2cada5a7-83f3-4bcc-b4e1-215129b1fefe.png", + "Face4": "0636b11a-1c04-4742-895d-42736ead6d20.png", + "Face5": "87828a35-f12c-4d78-845d-858a6e630362.png", + "Face6": "273359a3-d433-4209-869f-9b576f257a8e.png", + "Face7": "b27e3c6b-8603-46c6-86bb-8d2cf11eba64.png", + "Face8": "1a9a9f9d-58ad-4b7f-b856-301c335b1acd.png", + "Face9": "f58ea67e-a5f5-460c-8dcd-ed8d08c24e88.png", + "stacked-waves-haikei": "cb8d2056-2020-4047-b8df-713013792a46.png" + }, + "LocalResourceRootPaths": { + "847408384": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/NmE0ZTI1ZGItOGQzNC00NGE4LWI1ZGItZDk4MGFkMGY1OTE4.jpg?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=6FYl31PyiqXDPIesGWetEbvmPtB3DeBh8Q62OFNNtSY%3D", + "Face1": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/YTg2NDFjYTItM2Y3Zi00MWRkLWFjMTAtZWIxOGUyMzU3OWNh.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=Hh8uLBEwcA8XlgVOlWAs95Ej6KI0njAAmF7%2BWkXlya0%3D", + "Face10": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/NDAyOTg5N2EtZGU0YS00YzEyLWJmYzYtZGQyNGVhNzFmMDRk.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=6qaL1Tm7PVVtJhFuBb2H3D%2BBU9rcIUvoptPsRxE%2BAV0%3D", + "Face11": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/YTBlOGU1NzgtYjkyMS00ZDBjLTgwZjEtODk2N2E1ZjY1NTlk.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=eW%2B5TbC1wixiZERRSq9kqq7dtoDkW%2FkxwYjZsodKI%2BY%3D", + "Face12": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/OTA2YjBiNGEtOTc0ZC00NWM4LWI4OWMtYjIyOTk2NDQ3NGRh.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=wOQ05nloY5moVVWifHX53LYV4%2FoXe%2B%2FfXonBc7wQXfw%3D", + "Face13": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/YTJjMmE0YTgtNjYyYy00MGRlLWE5MGUtZDk3ODg1ODUxN2Qw.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=V7SmRZP7tz%2F0c4NCBwQDv%2FZ%2BEYIh8xLRND0VS8uHt3s%3D", + "Face14": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/OGQzNTA4NTMtMDI0YS00NzhmLTgzNTItMTgzMjEzN2Y0MzM3.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=OxcKN4LhEPwX1NBbN7%2F4c6PFCGyKkSblx3fvDm%2F1zso%3D", + "Face15": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MzUyZTNhNGEtYWUxNS00NDNlLWE5MTgtMzgxZTBlYTEyOWRh.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=AqMh2z63oUsPpjyqbk%2Bp6trjPpoZbGiNDwWwK48MAF4%3D", + "Face16": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/M2MzOWIzMGUtM2Q3OS00ZWJmLTliZjgtY2QxMjBjNTZkNTMx.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=42ZsaV%2FD9y5hKsEADkhprttR4i7JCyAQjsQ8OjSsgX0%3D", + "Face17": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/N2U4MGU5OWUtNTZkOC00ZDM0LTkyYmMtNTE3ZGI2YWRkNTUw.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=cqqetzFElOSsfTe2BtCED2Mdsu6ndORlZNHLxf7sPhI%3D", + "Face18": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/YjljNmIyMzItZjU1Ny00NTM4LTg3ODktZGM1MDg3NTE0OTRj.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=DE1EdV7IFBsmuHu7L2X7YjnihudS31JLVIeMg%2FKjTY4%3D", + "Face19": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/ZjAzZWYyYjctZTNjYy00OTI2LTg2NDMtODI5NWNmMTQ0MzE1.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=Hbv2RPSHcjdbxbDnaAlANwMW6nL%2Fdy5yFPD2yb59bzM%3D", + "Face2": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MTgyMDcxMmEtZjAzOS00NGI3LWJlOWYtM2MwZjM1MTIzZjIz.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=eBUuCbBpHEGoq7szUuHDSQwuXM5O8rCnqnOBMtopqRo%3D", + "Face3": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MmNhZGE1YTctODNmMy00YmNjLWI0ZTEtMjE1MTI5YjFmZWZl.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=jADkTY5Xq14Igf1k4L76WG8NrXhdFSVyTQWd8%2ByzC3s%3D", + "Face4": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MDYzNmIxMWEtMWMwNC00NzQyLTg5NWQtNDI3MzZlYWQ2ZDIw.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=P8BN9UIrO9VDGuA2V6jQ4DhLtxiGpvC9tsMiPUFznl0%3D", + "Face5": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/ODc4MjhhMzUtZjEyYy00ZDc4LTg0NWQtODU4YTZlNjMwMzYy.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=zK8%2F35Fm5O2irwad%2Fq5%2Fri%2BGjYzfwf%2FJf%2F9a2vYoIuk%3D", + "Face6": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MjczMzU5YTMtZDQzMy00MjA5LTg2OWYtOWI1NzZmMjU3YThl.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=9a2cqCHPoUYN5Sp%2BGPVJBzpdaWAaMTeDJZTIHzSrKHc%3D", + "Face7": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/YjI3ZTNjNmItODYwMy00NmM2LTg2YmItOGQyY2YxMWViYTY0.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=Fww%2BiHKtuk7NJZ04puhh0kqCnUqVPNdXEUqwWHYlVrw%3D", + "Face8": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/MWE5YTlmOWQtNThhZC00YjdmLWI4NTYtMzAxYzMzNWIxYWNk.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=bBAZfozuPPQno3OlyIfD7R3hOjaPIIy3lgwOwb5bTzE%3D", + "Face9": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/ZjU4ZWE2N2UtYTVmNS00NjBjLThkY2QtZWQ4ZDA4YzI0ZTg4.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=3iKPl6LsIk%2Bv99lbBQDX%2FbSBg7u9yI7qlZEcZsJbRg4%3D", + "stacked-waves-haikei": "https://dsprdil103wus.blob.core.windows.net/040b9fd4-c431-4d64-bc18-87c111d2bebb-1/resource/Y2I4ZDIwNTYtMjAyMC00MDQ3LWI4ZGYtNzEzMDEzNzkyYTQ2.png?skoid=58690ece-ec83-4ce2-9ce8-883d4d6a54ee&sktid=975f013f-7f24-47e8-a7d3-abc4752bf346&skt=2025-12-12T22%3A20%3A59Z&ske=2025-12-13T22%3A35%3A59Z&sks=b&skv=2023-01-03&sv=2023-01-03&spr=https&se=2025-12-13T22%3A35%3A59Z&sr=b&sp=r&sig=VcNAFTk1JJsBaRFAYtKlwAGDNkvCdIEvkgjLSclAF7c%3D" + }, + "OrderComponentMetadata": {}, + "OrderComponentTemplate": {}, + "OrderDataSource": { + "CustomGallerySample": 0 + }, + "OrderGroupControls": {}, + "OrderPcfTemplate": { + "PowerApps_CoreControls_ButtonCanvas": 0, + "PowerApps_CoreControls_InfoButtonCanvas": 3, + "PowerApps_CoreControls_TextCanvas": 1, + "PowerApps_CoreControls_TextInputCanvas": 2 + }, + "OrderTemplate": {}, + "OrderXMLTemplate": { + "button": 6, + "gallery": 1, + "groupContainer": 0, + "htmlViewer": 4, + "image": 2, + "label": 3, + "rectangle": 5, + "timer": 7 + }, + "OverridablePropertiesEntry": { + "App": {}, + "BioButton": {}, + "BioPopupTextCanvas": {}, + "ButtonCanvas1": {}, + "ButtonCanvas2": {}, + "ButtonCanvas3": {}, + "CardPopoutSample": {}, + "CardPopupContainer_1": {}, + "CardSample1": {}, + "CardSample1_1_test": {}, + "CardSample1_2": {}, + "CardSample1_3_test": {}, + "CardSample1_4_nested": {}, + "CardSampleVisual": {}, + "CardSubstitutionGallery1": {}, + "CardSubstitutionGallery2": {}, + "CardSubstitutionTest1": {}, + "Container1": {}, + "Container2": {}, + "Container3": {}, + "Container4": {}, + "Container5": {}, + "Container5_1": {}, + "ctr_Main": {}, + "ctr_MainPane": {}, + "ctr_Screen": {}, + "DataContainer": {}, + "FooterContainer1": {}, + "Gallery1": {}, + "Gallery2": {}, + "Gallery2_1": {}, + "Gallery2_2": {}, + "Gallery2_3": {}, + "Gallery2_4": {}, + "Gallery3": {}, + "Gallery4": {}, + "GalleryContainer": {}, + "GalleryContainer_1": {}, + "GalleryContainer_2": {}, + "GalleryContainer_3": {}, + "GalleryContainer_4": {}, + "GalleryImage": {}, + "GalleryImage_1": {}, + "GalleryImage_2": {}, + "GalleryImage_3": {}, + "GalleryImage_4": {}, + "galleryTemplate1": {}, + "galleryTemplate2": {}, + "galleryTemplate2_1": {}, + "galleryTemplate2_2": {}, + "galleryTemplate2_3": {}, + "galleryTemplate2_4": {}, + "galleryTemplate3": {}, + "galleryTemplate4": {}, + "GlassmorphismHtml": {}, + "HeaderContainer1": {}, + "hmtl_Glassmorphism": {}, + "hmtl_Glassmorphism_1": {}, + "Host": {}, + "HtmlText1": {}, + "HtmlText1_1": {}, + "HtmlText1_3": {}, + "HtmlText1_4": {}, + "HtmlText2": {}, + "HtmlText2_1": {}, + "HtmlText2_2": {}, + "HtmlText3": {}, + "HtmlText4": {}, + "Image1": {}, + "Image1_1": {}, + "JobTitlePopupTextCanvas": {}, + "lbl_Email": {}, + "lbl_JobTitle": {}, + "lbl_Name": {}, + "MainContainer1": {}, + "MoreButton_1": {}, + "MoreButton_2": {}, + "MoreInfoButton_1": {}, + "MoreInfoContainer": {}, + "MoreInfoContainer_1": {}, + "MoreInfoContainer_2": {}, + "NameLabel": {}, + "NameLabel_1": {}, + "NameLabel_2": {}, + "NameLabel_3": {}, + "NameLabel_4": {}, + "NamePopupTextCanvas": {}, + "PopupContainer": {}, + "PopupDataContainer_1": {}, + "PopupDetailsContainer": {}, + "PopupGlassmorphismHtml_1": {}, + "PopupImage": {}, + "Rectangle1": {}, + "SampleCardImage": {}, + "Screen_Main": {}, + "Screen1": {}, + "Screen2": {}, + "ScreenContainer1": {}, + "SummaryButton": {}, + "SummaryLabel": {}, + "SummaryLabel_1": {}, + "SummaryLabel_2": {}, + "SummaryLabel_3": {}, + "SummaryLabel_4": {}, + "SummaryPopupTextCanvas": {}, + "TextCanvas1_1": {}, + "TextCanvas2": {}, + "TextCanvas2_1": {}, + "Timer1": {}, + "TitleButton": {}, + "txt_Email": {}, + "txt_Header": {}, + "txt_JobTitle": {}, + "txt_Name": {} + }, + "PCFDynamicSchemaForIRRetrievalEntry": {}, + "PCFTemplateEntry": { + "BioButton": { + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "BioPopupTextCanvas": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "ButtonCanvas2": { + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "ButtonCanvas3": { + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "JobTitlePopupTextCanvas": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "lbl_Email": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "lbl_JobTitle": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "lbl_Name": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "MoreInfoButton_1": { + "CustomGroupControlTemplateName": "", + "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"InfoButtonCanvas\",\"DisplayNameKey\":\"InfoButtonCanvas\",\"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.InfoButtonCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.InfoButtonCanvas\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Content\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"InfoButton content\\\\\\\"},\\\\\\\"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\\\\\\\"},\\\\\\\"IconColor\\\\\\\":{\\\\\\\"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\\\\\\\":{\\\\\\\"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\\\\\\\":\\\\\\\"Content\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"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\\\\\\\":\\\\\\\"IconColor\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Color\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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.33\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/InfoButtonCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"InfoButtonCanvas\\\\\\\":\\\\\\\"Information button\\\\\\\",\\\\\\\"InfoButtonCanvas_Desc\\\\\\\":\\\\\\\"A way to display additional information about a form field or an area in the UI.\\\\\\\",\\\\\\\"InfoButtonCanvas_AcceptsFocus\\\\\\\":\\\\\\\"Accepts focus\\\\\\\",\\\\\\\"InfoButtonCanvas_AcceptsFocus_Desc\\\\\\\":\\\\\\\"Whether this field can be reached with Tab key.\\\\\\\",\\\\\\\"InfoButtonCanvas_AccessibleLabel\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"InfoButtonCanvas_AccessibleLabel_Desc\\\\\\\":\\\\\\\"Label read out by screen readers.\\\\\\\",\\\\\\\"InfoButtonCanvas_Content\\\\\\\":\\\\\\\"Content\\\\\\\",\\\\\\\"InfoButtonCanvas_Content_Desc\\\\\\\":\\\\\\\"Text content to display in the popup.\\\\\\\",\\\\\\\"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.\\\\\\\",\\\\\\\"Default_Value_Content\\\\\\\":\\\\\\\"InfoButton content\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"IconColor\\\\\\\":\\\\\\\"Icon color\\\\\\\",\\\\\\\"IconColor_Description\\\\\\\":\\\\\\\"The color of the icon.\\\\\\\",\\\\\\\"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.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"Padding to apply to the top 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},{\\\"Type\\\":4,\\\"Path\\\":\\\"React/16.8.6/16.14.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\\\":\\\"InfoButtonCanvas_AcceptsFocus\\\",\\\"DescriptionResourceString\\\":\\\"InfoButtonCanvas_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\\\":\\\"InfoButtonCanvas_AccessibleLabel\\\",\\\"DescriptionResourceString\\\":\\\"InfoButtonCanvas_AccessibleLabel_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Content\\\",\\\"DisplayName\\\":\\\"Content\\\",\\\"Description\\\":\\\"Text content to display in the popup.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"InfoButton content\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"InfoButtonCanvas_Content\\\",\\\"DescriptionResourceString\\\":\\\"InfoButtonCanvas_Content_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\\\":\\\"IconColor\\\",\\\"DisplayName\\\":\\\"Icon color\\\",\\\"Description\\\":\\\"The color of the icon.\\\",\\\"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\\\":\\\"IconColor\\\",\\\"DescriptionResourceString\\\":\\\"IconColor_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\\\":\\\"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\\\":\\\"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\\\":false}]\",\"SubscribedFunctionalities\":\"{\\\"supportSetFocus\\\":\\\"true\\\"}\",\"AuthConfigProperties\":\"[{\\\"Content\\\":{\\\"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},\\\"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},\\\"PaddingTop\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingRight\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingBottom\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"PaddingLeft\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"Padding\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":2,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"SizeAndPositioningSection\\\",\\\"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},\\\"IconColor\\\":{\\\"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_InfoButtonCanvas", + "IsComponentDefinition": false, + "IsCustomGroupControlTemplate": false, + "IsPremiumPcfControl": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_InfoButtonCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Information button", + "Version": "0.0.33" + }, + "NamePopupTextCanvas": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "SummaryButton": { + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "SummaryPopupTextCanvas": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "TextCanvas1_1": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "TextCanvas2": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "TextCanvas2_1": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "TitleButton": { + "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.45\\\\\\\",\\\\\\\"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.45" + }, + "txt_Email": { + "CustomGroupControlTemplateName": "", + "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"TextInputCanvas\",\"DisplayNameKey\":\"TextInputCanvas\",\"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.TextInputCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.TextInputCanvas\\\\\\\",\\\\\\\"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\\\\\\\":{\\\\\\\"Align\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"MaxLength\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"-1\\\\\\\"},\\\\\\\"Mode\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"SingleLine\\\\\\\"},\\\\\\\"Placeholder\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Required\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"Type\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Text\\\\\\\"},\\\\\\\"ValidationState\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"None\\\\\\\"},\\\\\\\"Value\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\"},\\\\\\\"Fill\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Appearance\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FilledDarker\\\\\\\"},\\\\\\\"BorderStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderThickness\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadius\\\\\\\":{\\\\\\\"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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TriggerOutput\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FocusOut\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":null},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":{\\\\\\\"OnChange\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"OnChange\\\\\\\"}},\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"MaxLength\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Placeholder\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ValidationState\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"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\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FillColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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\\\\\\\":\\\\\\\"TriggerOutput\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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.54\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/TextInputCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"TextInputCanvas\\\\\\\":\\\\\\\"Text input\\\\\\\",\\\\\\\"Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"TextInputCanvas_Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align_Start\\\\\\\":\\\\\\\"Start\\\\\\\",\\\\\\\"TextInputCanvas_Align_End\\\\\\\":\\\\\\\"End\\\\\\\",\\\\\\\"TextInputCanvas_Align_Center\\\\\\\":\\\\\\\"Center\\\\\\\",\\\\\\\"TextInputCanvas_Align_Justify\\\\\\\":\\\\\\\"Justify\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel_Desc\\\\\\\":\\\\\\\"Label for screen readers.\\\\\\\",\\\\\\\"TextInputCanvas_Mode\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Desc\\\\\\\":\\\\\\\"Type of text input: single line or multiline.\\\\\\\",\\\\\\\"TextInputCanvas_Mode_SingleLine\\\\\\\":\\\\\\\"Single line\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Multiline\\\\\\\":\\\\\\\"Multiline\\\\\\\",\\\\\\\"TextInputCanvas_Required\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"TextInputCanvas_Required_Desc\\\\\\\":\\\\\\\"Whether this control must contain text.\\\\\\\",\\\\\\\"TextInputCanvas_Value\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"TextInputCanvas_Value_Desc\\\\\\\":\\\\\\\"Text that appears on a control or that the user types into a control.\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder\\\\\\\":\\\\\\\"Placeholder text\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder_Desc\\\\\\\":\\\\\\\"The placeholder text of the text input.\\\\\\\",\\\\\\\"TextInputCanvas_Type\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"TextInputCanvas_Type_Desc\\\\\\\":\\\\\\\"Content type of text input: plain text, password, or search.\\\\\\\",\\\\\\\"TextInputCanvas_Type_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"TextInputCanvas_Type_Password\\\\\\\":\\\\\\\"Password\\\\\\\",\\\\\\\"TextInputCanvas_Type_Search\\\\\\\":\\\\\\\"Search\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength\\\\\\\":\\\\\\\"Maximum length\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength_Desc\\\\\\\":\\\\\\\"The maximum content length of the Text input.\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState\\\\\\\":\\\\\\\"Validation state\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Desc\\\\\\\":\\\\\\\"The current status of the Text input, with regard to validation.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Error\\\\\\\":\\\\\\\"Error\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"Fill\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Fill_Description\\\\\\\":\\\\\\\"Background color of 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.\\\\\\\",\\\\\\\"BorderRadius\\\\\\\":\\\\\\\"Border radius\\\\\\\",\\\\\\\"BorderRadius_Description\\\\\\\":\\\\\\\"Roundedness of the control's corners. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"The value of the control's top padding.\\\\\\\",\\\\\\\"PaddingRight\\\\\\\":\\\\\\\"Right\\\\\\\",\\\\\\\"PaddingRight_Description\\\\\\\":\\\\\\\"The value of the control's right padding.\\\\\\\",\\\\\\\"PaddingBottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"PaddingBottom_Description\\\\\\\":\\\\\\\"The value of the control's bottom padding.\\\\\\\",\\\\\\\"PaddingLeft\\\\\\\":\\\\\\\"Left\\\\\\\",\\\\\\\"PaddingLeft_Description\\\\\\\":\\\\\\\"The value of the control's left padding.\\\\\\\",\\\\\\\"HoverBorderColor\\\\\\\":\\\\\\\"Hover border color\\\\\\\",\\\\\\\"HoverBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while hovering over the control.\\\\\\\",\\\\\\\"PressedBorderColor\\\\\\\":\\\\\\\"Pressed border color\\\\\\\",\\\\\\\"PressedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while pressing or selecting the control.\\\\\\\",\\\\\\\"FocusedBorderColor\\\\\\\":\\\\\\\"Focused border color\\\\\\\",\\\\\\\"FocusedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control has focus.\\\\\\\",\\\\\\\"DisabledBorderColor\\\\\\\":\\\\\\\"Disabled border color\\\\\\\",\\\\\\\"DisabledBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control is disabled.\\\\\\\",\\\\\\\"Appearance\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Appearance_Description\\\\\\\":\\\\\\\"Appearance of the control's borders and fill\\\\\\\",\\\\\\\"Appearance_FilledDarker\\\\\\\":\\\\\\\"Filled Darker\\\\\\\",\\\\\\\"Appearance_FilledLighter\\\\\\\":\\\\\\\"Filled Lighter\\\\\\\",\\\\\\\"Appearance_Outline\\\\\\\":\\\\\\\"Outline\\\\\\\",\\\\\\\"TriggerOutput\\\\\\\":\\\\\\\"Trigger output\\\\\\\",\\\\\\\"TriggerOutput_Description\\\\\\\":\\\\\\\"When to trigger the OnChange function.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nKeypress: Triggers OnChange immediately as the user types.\\\\\\\",\\\\\\\"TriggerOutput_Delayed\\\\\\\":\\\\\\\"Delayed\\\\\\\",\\\\\\\"TriggerOutput_FocusOut\\\\\\\":\\\\\\\"Focus out\\\\\\\",\\\\\\\"TriggerOutput_Keypress\\\\\\\":\\\\\\\"Key press\\\\\\\"}}}\\\",\\\"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},{\\\"Type\\\":4,\\\"Path\\\":\\\"React/16.8.6/16.14.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"Align\\\",\\\"DisplayName\\\":\\\"Align\\\",\\\"Description\\\":\\\"Display text using the selected text alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessible label\\\",\\\"Description\\\":\\\"Label for 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\\\":\\\"TextInputCanvas_AccessibleLabel\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_AccessibleLabel_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"MaxLength\\\",\\\"DisplayName\\\":\\\"Maximum length\\\",\\\"Description\\\":\\\"The maximum content length of the Text input.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"-1\\\",\\\"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\\\":\\\"TextInputCanvas_MaxLength\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_MaxLength_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Mode\\\",\\\"DisplayName\\\":\\\"Mode\\\",\\\"Description\\\":\\\"Type of text input: single line or multiline.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"SingleLine\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"SingleLine\\\",\\\"WebDefaultValue\\\":\\\"SingleLine\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"SingleLine\\\",\\\"DisplayName\\\":\\\"Single line\\\",\\\"Description\\\":\\\"Single line\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"SingleLine\\\"},{\\\"Name\\\":\\\"Multiline\\\",\\\"DisplayName\\\":\\\"Multiline\\\",\\\"Description\\\":\\\"Multiline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Multiline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Mode\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Mode_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Placeholder\\\",\\\"DisplayName\\\":\\\"Placeholder text\\\",\\\"Description\\\":\\\"The placeholder text of the text input.\\\",\\\"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\\\":\\\"TextInputCanvas_Placeholder\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Placeholder_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Required\\\",\\\"DisplayName\\\":\\\"Required\\\",\\\"Description\\\":\\\"Whether this control must contain text.\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"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\\\":\\\"TextInputCanvas_Required\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Required_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Type\\\",\\\"DisplayName\\\":\\\"Type\\\",\\\"Description\\\":\\\"Content type of text input: plain text, password, or search.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Text\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Text\\\",\\\"WebDefaultValue\\\":\\\"Text\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Password\\\",\\\"DisplayName\\\":\\\"Password\\\",\\\"Description\\\":\\\"Password\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Password\\\"},{\\\"Name\\\":\\\"Search\\\",\\\"DisplayName\\\":\\\"Search\\\",\\\"Description\\\":\\\"Search\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Search\\\"},{\\\"Name\\\":\\\"Text\\\",\\\"DisplayName\\\":\\\"Text\\\",\\\"Description\\\":\\\"Text\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Text\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Type\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Type_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ValidationState\\\",\\\"DisplayName\\\":\\\"Validation state\\\",\\\"Description\\\":\\\"The current status of the Text input, with regard to validation.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"None\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"None\\\",\\\"WebDefaultValue\\\":\\\"None\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Error\\\",\\\"DisplayName\\\":\\\"Error\\\",\\\"Description\\\":\\\"Error\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Error\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"None\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"None\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_ValidationState\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_ValidationState_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Value\\\",\\\"DisplayName\\\":\\\"Value\\\",\\\"Description\\\":\\\"Text that appears on a control or that the user types into a control.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":true,\\\"IsResettable\\\":true,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Value\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Value_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\\\":\\\"Fill\\\",\\\"DisplayName\\\":\\\"Fill\\\",\\\"Description\\\":\\\"Background color of 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\\\":\\\"Appearance\\\",\\\"DisplayName\\\":\\\"Appearance\\\",\\\"Description\\\":\\\"Appearance of the control's borders and fill\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FilledDarker\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FilledDarker\\\",\\\"WebDefaultValue\\\":\\\"FilledDarker\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"FilledDarker\\\",\\\"DisplayName\\\":\\\"Filled Darker\\\",\\\"Description\\\":\\\"Filled Darker\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FilledDarker\\\"},{\\\"Name\\\":\\\"FilledLighter\\\",\\\"DisplayName\\\":\\\"Filled Lighter\\\",\\\"Description\\\":\\\"Filled Lighter\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"FilledLighter\\\"},{\\\"Name\\\":\\\"Outline\\\",\\\"DisplayName\\\":\\\"Outline\\\",\\\"Description\\\":\\\"Outline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Outline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Appearance\\\",\\\"DescriptionResourceString\\\":\\\"Appearance_Description\\\",\\\"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\\\":\\\"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\\\":\\\"PaddingTop\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"The value of the control's top padding.\\\",\\\"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\\\":\\\"The value of the control's right padding.\\\",\\\"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\\\":\\\"The value of the control's bottom padding.\\\",\\\"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\\\":\\\"The value of the control's left padding.\\\",\\\"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\\\":\\\"TriggerOutput\\\",\\\"DisplayName\\\":\\\"Trigger output\\\",\\\"Description\\\":\\\"When to trigger the OnChange function.\\\\r\\\\n\\\\r\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\r\\\\n\\\\r\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\r\\\\n\\\\r\\\\nKeypress: Triggers OnChange immediately as the user types.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FocusOut\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FocusOut\\\",\\\"WebDefaultValue\\\":\\\"FocusOut\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Delayed\\\",\\\"DisplayName\\\":\\\"Delayed\\\",\\\"Description\\\":\\\"Delayed\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Delayed\\\"},{\\\"Name\\\":\\\"FocusOut\\\",\\\"DisplayName\\\":\\\"Focus out\\\",\\\"Description\\\":\\\"Focus out\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FocusOut\\\"},{\\\"Name\\\":\\\"Keypress\\\",\\\"DisplayName\\\":\\\"Key press\\\",\\\"Description\\\":\\\"Key press\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Keypress\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TriggerOutput\\\",\\\"DescriptionResourceString\\\":\\\"TriggerOutput_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\\\":\\\"320\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"320\\\",\\\"WebDefaultValue\\\":\\\"320\\\",\\\"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\\\":\\\"OnChange\\\",\\\"DisplayName\\\":\\\"OnChange\\\",\\\"Description\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":false}]\",\"SubscribedFunctionalities\":\"{\\\"autoDisabledViewState\\\":\\\"true\\\",\\\"supportResettableProperties\\\":\\\"true\\\",\\\"supportSetFocus\\\":\\\"true\\\"}\",\"AuthConfigProperties\":\"[{\\\"Placeholder\\\":{\\\"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},\\\"Mode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Type\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DisplayMode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":27,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"TriggerOutput\\\":{\\\"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\\\":40,\\\"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},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Fill\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":32,\\\"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_TextInputCanvas", + "IsComponentDefinition": false, + "IsCustomGroupControlTemplate": false, + "IsPremiumPcfControl": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_TextInputCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Text input", + "Version": "0.0.54" + }, + "txt_Header": { + "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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"VerticalAlign\\\\\\\",\\\\\\\"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.51\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"VerticalAlign\\\\\\\":\\\\\\\"Vertical align\\\\\\\",\\\\\\\"VerticalAlign_Desc\\\\\\\":\\\\\\\"Display text using the selected text verlitcal alignment.\\\\\\\",\\\\\\\"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 verlitcal alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"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\\\":42,\\\"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.51" + }, + "txt_JobTitle": { + "CustomGroupControlTemplateName": "", + "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"TextInputCanvas\",\"DisplayNameKey\":\"TextInputCanvas\",\"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.TextInputCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.TextInputCanvas\\\\\\\",\\\\\\\"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\\\\\\\":{\\\\\\\"Align\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"MaxLength\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"-1\\\\\\\"},\\\\\\\"Mode\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"SingleLine\\\\\\\"},\\\\\\\"Placeholder\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Required\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"Type\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Text\\\\\\\"},\\\\\\\"ValidationState\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"None\\\\\\\"},\\\\\\\"Value\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\"},\\\\\\\"Fill\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Appearance\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FilledDarker\\\\\\\"},\\\\\\\"BorderStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderThickness\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadius\\\\\\\":{\\\\\\\"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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TriggerOutput\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FocusOut\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":null},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":{\\\\\\\"OnChange\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"OnChange\\\\\\\"}},\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"MaxLength\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Placeholder\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ValidationState\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"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\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FillColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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\\\\\\\":\\\\\\\"TriggerOutput\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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.54\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/TextInputCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"TextInputCanvas\\\\\\\":\\\\\\\"Text input\\\\\\\",\\\\\\\"Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"TextInputCanvas_Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align_Start\\\\\\\":\\\\\\\"Start\\\\\\\",\\\\\\\"TextInputCanvas_Align_End\\\\\\\":\\\\\\\"End\\\\\\\",\\\\\\\"TextInputCanvas_Align_Center\\\\\\\":\\\\\\\"Center\\\\\\\",\\\\\\\"TextInputCanvas_Align_Justify\\\\\\\":\\\\\\\"Justify\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel_Desc\\\\\\\":\\\\\\\"Label for screen readers.\\\\\\\",\\\\\\\"TextInputCanvas_Mode\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Desc\\\\\\\":\\\\\\\"Type of text input: single line or multiline.\\\\\\\",\\\\\\\"TextInputCanvas_Mode_SingleLine\\\\\\\":\\\\\\\"Single line\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Multiline\\\\\\\":\\\\\\\"Multiline\\\\\\\",\\\\\\\"TextInputCanvas_Required\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"TextInputCanvas_Required_Desc\\\\\\\":\\\\\\\"Whether this control must contain text.\\\\\\\",\\\\\\\"TextInputCanvas_Value\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"TextInputCanvas_Value_Desc\\\\\\\":\\\\\\\"Text that appears on a control or that the user types into a control.\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder\\\\\\\":\\\\\\\"Placeholder text\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder_Desc\\\\\\\":\\\\\\\"The placeholder text of the text input.\\\\\\\",\\\\\\\"TextInputCanvas_Type\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"TextInputCanvas_Type_Desc\\\\\\\":\\\\\\\"Content type of text input: plain text, password, or search.\\\\\\\",\\\\\\\"TextInputCanvas_Type_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"TextInputCanvas_Type_Password\\\\\\\":\\\\\\\"Password\\\\\\\",\\\\\\\"TextInputCanvas_Type_Search\\\\\\\":\\\\\\\"Search\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength\\\\\\\":\\\\\\\"Maximum length\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength_Desc\\\\\\\":\\\\\\\"The maximum content length of the Text input.\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState\\\\\\\":\\\\\\\"Validation state\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Desc\\\\\\\":\\\\\\\"The current status of the Text input, with regard to validation.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Error\\\\\\\":\\\\\\\"Error\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"Fill\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Fill_Description\\\\\\\":\\\\\\\"Background color of 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.\\\\\\\",\\\\\\\"BorderRadius\\\\\\\":\\\\\\\"Border radius\\\\\\\",\\\\\\\"BorderRadius_Description\\\\\\\":\\\\\\\"Roundedness of the control's corners. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"The value of the control's top padding.\\\\\\\",\\\\\\\"PaddingRight\\\\\\\":\\\\\\\"Right\\\\\\\",\\\\\\\"PaddingRight_Description\\\\\\\":\\\\\\\"The value of the control's right padding.\\\\\\\",\\\\\\\"PaddingBottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"PaddingBottom_Description\\\\\\\":\\\\\\\"The value of the control's bottom padding.\\\\\\\",\\\\\\\"PaddingLeft\\\\\\\":\\\\\\\"Left\\\\\\\",\\\\\\\"PaddingLeft_Description\\\\\\\":\\\\\\\"The value of the control's left padding.\\\\\\\",\\\\\\\"HoverBorderColor\\\\\\\":\\\\\\\"Hover border color\\\\\\\",\\\\\\\"HoverBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while hovering over the control.\\\\\\\",\\\\\\\"PressedBorderColor\\\\\\\":\\\\\\\"Pressed border color\\\\\\\",\\\\\\\"PressedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while pressing or selecting the control.\\\\\\\",\\\\\\\"FocusedBorderColor\\\\\\\":\\\\\\\"Focused border color\\\\\\\",\\\\\\\"FocusedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control has focus.\\\\\\\",\\\\\\\"DisabledBorderColor\\\\\\\":\\\\\\\"Disabled border color\\\\\\\",\\\\\\\"DisabledBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control is disabled.\\\\\\\",\\\\\\\"Appearance\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Appearance_Description\\\\\\\":\\\\\\\"Appearance of the control's borders and fill\\\\\\\",\\\\\\\"Appearance_FilledDarker\\\\\\\":\\\\\\\"Filled Darker\\\\\\\",\\\\\\\"Appearance_FilledLighter\\\\\\\":\\\\\\\"Filled Lighter\\\\\\\",\\\\\\\"Appearance_Outline\\\\\\\":\\\\\\\"Outline\\\\\\\",\\\\\\\"TriggerOutput\\\\\\\":\\\\\\\"Trigger output\\\\\\\",\\\\\\\"TriggerOutput_Description\\\\\\\":\\\\\\\"When to trigger the OnChange function.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nKeypress: Triggers OnChange immediately as the user types.\\\\\\\",\\\\\\\"TriggerOutput_Delayed\\\\\\\":\\\\\\\"Delayed\\\\\\\",\\\\\\\"TriggerOutput_FocusOut\\\\\\\":\\\\\\\"Focus out\\\\\\\",\\\\\\\"TriggerOutput_Keypress\\\\\\\":\\\\\\\"Key press\\\\\\\"}}}\\\",\\\"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},{\\\"Type\\\":4,\\\"Path\\\":\\\"React/16.8.6/16.14.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"Align\\\",\\\"DisplayName\\\":\\\"Align\\\",\\\"Description\\\":\\\"Display text using the selected text alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessible label\\\",\\\"Description\\\":\\\"Label for 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\\\":\\\"TextInputCanvas_AccessibleLabel\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_AccessibleLabel_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"MaxLength\\\",\\\"DisplayName\\\":\\\"Maximum length\\\",\\\"Description\\\":\\\"The maximum content length of the Text input.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"-1\\\",\\\"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\\\":\\\"TextInputCanvas_MaxLength\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_MaxLength_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Mode\\\",\\\"DisplayName\\\":\\\"Mode\\\",\\\"Description\\\":\\\"Type of text input: single line or multiline.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"SingleLine\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"SingleLine\\\",\\\"WebDefaultValue\\\":\\\"SingleLine\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"SingleLine\\\",\\\"DisplayName\\\":\\\"Single line\\\",\\\"Description\\\":\\\"Single line\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"SingleLine\\\"},{\\\"Name\\\":\\\"Multiline\\\",\\\"DisplayName\\\":\\\"Multiline\\\",\\\"Description\\\":\\\"Multiline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Multiline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Mode\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Mode_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Placeholder\\\",\\\"DisplayName\\\":\\\"Placeholder text\\\",\\\"Description\\\":\\\"The placeholder text of the text input.\\\",\\\"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\\\":\\\"TextInputCanvas_Placeholder\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Placeholder_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Required\\\",\\\"DisplayName\\\":\\\"Required\\\",\\\"Description\\\":\\\"Whether this control must contain text.\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"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\\\":\\\"TextInputCanvas_Required\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Required_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Type\\\",\\\"DisplayName\\\":\\\"Type\\\",\\\"Description\\\":\\\"Content type of text input: plain text, password, or search.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Text\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Text\\\",\\\"WebDefaultValue\\\":\\\"Text\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Password\\\",\\\"DisplayName\\\":\\\"Password\\\",\\\"Description\\\":\\\"Password\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Password\\\"},{\\\"Name\\\":\\\"Search\\\",\\\"DisplayName\\\":\\\"Search\\\",\\\"Description\\\":\\\"Search\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Search\\\"},{\\\"Name\\\":\\\"Text\\\",\\\"DisplayName\\\":\\\"Text\\\",\\\"Description\\\":\\\"Text\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Text\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Type\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Type_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ValidationState\\\",\\\"DisplayName\\\":\\\"Validation state\\\",\\\"Description\\\":\\\"The current status of the Text input, with regard to validation.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"None\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"None\\\",\\\"WebDefaultValue\\\":\\\"None\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Error\\\",\\\"DisplayName\\\":\\\"Error\\\",\\\"Description\\\":\\\"Error\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Error\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"None\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"None\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_ValidationState\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_ValidationState_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Value\\\",\\\"DisplayName\\\":\\\"Value\\\",\\\"Description\\\":\\\"Text that appears on a control or that the user types into a control.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":true,\\\"IsResettable\\\":true,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Value\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Value_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\\\":\\\"Fill\\\",\\\"DisplayName\\\":\\\"Fill\\\",\\\"Description\\\":\\\"Background color of 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\\\":\\\"Appearance\\\",\\\"DisplayName\\\":\\\"Appearance\\\",\\\"Description\\\":\\\"Appearance of the control's borders and fill\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FilledDarker\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FilledDarker\\\",\\\"WebDefaultValue\\\":\\\"FilledDarker\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"FilledDarker\\\",\\\"DisplayName\\\":\\\"Filled Darker\\\",\\\"Description\\\":\\\"Filled Darker\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FilledDarker\\\"},{\\\"Name\\\":\\\"FilledLighter\\\",\\\"DisplayName\\\":\\\"Filled Lighter\\\",\\\"Description\\\":\\\"Filled Lighter\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"FilledLighter\\\"},{\\\"Name\\\":\\\"Outline\\\",\\\"DisplayName\\\":\\\"Outline\\\",\\\"Description\\\":\\\"Outline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Outline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Appearance\\\",\\\"DescriptionResourceString\\\":\\\"Appearance_Description\\\",\\\"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\\\":\\\"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\\\":\\\"PaddingTop\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"The value of the control's top padding.\\\",\\\"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\\\":\\\"The value of the control's right padding.\\\",\\\"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\\\":\\\"The value of the control's bottom padding.\\\",\\\"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\\\":\\\"The value of the control's left padding.\\\",\\\"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\\\":\\\"TriggerOutput\\\",\\\"DisplayName\\\":\\\"Trigger output\\\",\\\"Description\\\":\\\"When to trigger the OnChange function.\\\\r\\\\n\\\\r\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\r\\\\n\\\\r\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\r\\\\n\\\\r\\\\nKeypress: Triggers OnChange immediately as the user types.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FocusOut\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FocusOut\\\",\\\"WebDefaultValue\\\":\\\"FocusOut\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Delayed\\\",\\\"DisplayName\\\":\\\"Delayed\\\",\\\"Description\\\":\\\"Delayed\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Delayed\\\"},{\\\"Name\\\":\\\"FocusOut\\\",\\\"DisplayName\\\":\\\"Focus out\\\",\\\"Description\\\":\\\"Focus out\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FocusOut\\\"},{\\\"Name\\\":\\\"Keypress\\\",\\\"DisplayName\\\":\\\"Key press\\\",\\\"Description\\\":\\\"Key press\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Keypress\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TriggerOutput\\\",\\\"DescriptionResourceString\\\":\\\"TriggerOutput_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\\\":\\\"320\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"320\\\",\\\"WebDefaultValue\\\":\\\"320\\\",\\\"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\\\":\\\"OnChange\\\",\\\"DisplayName\\\":\\\"OnChange\\\",\\\"Description\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":false}]\",\"SubscribedFunctionalities\":\"{\\\"autoDisabledViewState\\\":\\\"true\\\",\\\"supportResettableProperties\\\":\\\"true\\\",\\\"supportSetFocus\\\":\\\"true\\\"}\",\"AuthConfigProperties\":\"[{\\\"Placeholder\\\":{\\\"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},\\\"Mode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Type\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DisplayMode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":27,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"TriggerOutput\\\":{\\\"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\\\":40,\\\"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},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Fill\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":32,\\\"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_TextInputCanvas", + "IsComponentDefinition": false, + "IsCustomGroupControlTemplate": false, + "IsPremiumPcfControl": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_TextInputCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Text input", + "Version": "0.0.54" + }, + "txt_Name": { + "CustomGroupControlTemplateName": "", + "DynamicControlDefinitionJson": "{\"ControlNamespace\":\"PowerApps.CoreControls\",\"ControlConstructor\":\"TextInputCanvas\",\"DisplayNameKey\":\"TextInputCanvas\",\"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.TextInputCanvas\\\\\\\",\\\\\\\"CustomControlId\\\\\\\":\\\\\\\"PowerApps.CoreControls.TextInputCanvas\\\\\\\",\\\\\\\"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\\\\\\\":{\\\\\\\"Align\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"AccessibleLabel\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"MaxLength\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"-1\\\\\\\"},\\\\\\\"Mode\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"SingleLine\\\\\\\"},\\\\\\\"Placeholder\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Required\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"false\\\\\\\"},\\\\\\\"Type\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"Text\\\\\\\"},\\\\\\\"ValidationState\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"None\\\\\\\"},\\\\\\\"Value\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":0,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"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\\\\\\\"},\\\\\\\"Fill\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Appearance\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FilledDarker\\\\\\\"},\\\\\\\"BorderStyle\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderThickness\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderColor\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"BorderRadius\\\\\\\":{\\\\\\\"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\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"TriggerOutput\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"FocusOut\\\\\\\"},\\\\\\\"TabIndex\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"},\\\\\\\"Tooltip\\\\\\\":{\\\\\\\"Required\\\\\\\":true,\\\\\\\"Usage\\\\\\\":1,\\\\\\\"DefaultValue\\\\\\\":\\\\\\\"\\\\\\\"}},\\\\\\\"FeatureUsage\\\\\\\":null},\\\\\\\"Events\\\\\\\":null,\\\\\\\"CommonEvents\\\\\\\":{\\\\\\\"OnChange\\\\\\\":{\\\\\\\"EventName\\\\\\\":\\\\\\\"OnChange\\\\\\\"}},\\\\\\\"DesignMap\\\\\\\":null,\\\\\\\"PropertyDependencies\\\\\\\":[],\\\\\\\"Children\\\\\\\":null}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":8,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"ManifestPropertyTypes\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"Properties\\\\\\\":[{\\\\\\\"Name\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"AccessibleLabel\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"MaxLength\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Whole_None\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Placeholder\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"TwoOptions\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"ValidationState\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":true,\\\\\\\"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\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"SingleLine_Text\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"FillColor\\\\\\\",\\\\\\\"IsPrimary\\\\\\\":false,\\\\\\\"IsIncluded\\\\\\\":false},{\\\\\\\"Name\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"ComplexType\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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\\\\\\\":\\\\\\\"TriggerOutput\\\\\\\",\\\\\\\"Type\\\\\\\":\\\\\\\"Enum\\\\\\\",\\\\\\\"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\\\\\\\":\\\\\\\"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.54\\\\\\\",\\\\\\\"IsFirstParty\\\\\\\":true}}\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":false},{\\\"Type\\\":0,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/TextInputCanvas.js\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":11,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":2,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.resx\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":10,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1025.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1026.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1027.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1028.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1029.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1030.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1031.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1032.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1035.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1036.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1037.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1038.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1040.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1041.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1042.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1043.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1044.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1045.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1046.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1048.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1049.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1050.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1051.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1053.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1054.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1055.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1057.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1058.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1060.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1061.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1062.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1063.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1066.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1069.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1081.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1086.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1087.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1110.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2052.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2070.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2074.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3076.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3082.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":5,\\\"Path\\\":\\\"/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3098.json\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":13,\\\"IsControlSpecific\\\":true},{\\\"Type\\\":3,\\\"Path\\\":\\\"{\\\\\\\"Id\\\\\\\":\\\\\\\"LocalizedStrings\\\\\\\",\\\\\\\"Data\\\\\\\":{\\\\\\\"LocStrings\\\\\\\":{\\\\\\\"TextInputCanvas\\\\\\\":\\\\\\\"Text input\\\\\\\",\\\\\\\"Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align\\\\\\\":\\\\\\\"Align\\\\\\\",\\\\\\\"TextInputCanvas_Align_Desc\\\\\\\":\\\\\\\"Display text using the selected text alignment.\\\\\\\",\\\\\\\"TextInputCanvas_Align_Start\\\\\\\":\\\\\\\"Start\\\\\\\",\\\\\\\"TextInputCanvas_Align_End\\\\\\\":\\\\\\\"End\\\\\\\",\\\\\\\"TextInputCanvas_Align_Center\\\\\\\":\\\\\\\"Center\\\\\\\",\\\\\\\"TextInputCanvas_Align_Justify\\\\\\\":\\\\\\\"Justify\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel\\\\\\\":\\\\\\\"Accessible label\\\\\\\",\\\\\\\"TextInputCanvas_AccessibleLabel_Desc\\\\\\\":\\\\\\\"Label for screen readers.\\\\\\\",\\\\\\\"TextInputCanvas_Mode\\\\\\\":\\\\\\\"Mode\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Desc\\\\\\\":\\\\\\\"Type of text input: single line or multiline.\\\\\\\",\\\\\\\"TextInputCanvas_Mode_SingleLine\\\\\\\":\\\\\\\"Single line\\\\\\\",\\\\\\\"TextInputCanvas_Mode_Multiline\\\\\\\":\\\\\\\"Multiline\\\\\\\",\\\\\\\"TextInputCanvas_Required\\\\\\\":\\\\\\\"Required\\\\\\\",\\\\\\\"TextInputCanvas_Required_Desc\\\\\\\":\\\\\\\"Whether this control must contain text.\\\\\\\",\\\\\\\"TextInputCanvas_Value\\\\\\\":\\\\\\\"Value\\\\\\\",\\\\\\\"TextInputCanvas_Value_Desc\\\\\\\":\\\\\\\"Text that appears on a control or that the user types into a control.\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder\\\\\\\":\\\\\\\"Placeholder text\\\\\\\",\\\\\\\"TextInputCanvas_Placeholder_Desc\\\\\\\":\\\\\\\"The placeholder text of the text input.\\\\\\\",\\\\\\\"TextInputCanvas_Type\\\\\\\":\\\\\\\"Type\\\\\\\",\\\\\\\"TextInputCanvas_Type_Desc\\\\\\\":\\\\\\\"Content type of text input: plain text, password, or search.\\\\\\\",\\\\\\\"TextInputCanvas_Type_Text\\\\\\\":\\\\\\\"Text\\\\\\\",\\\\\\\"TextInputCanvas_Type_Password\\\\\\\":\\\\\\\"Password\\\\\\\",\\\\\\\"TextInputCanvas_Type_Search\\\\\\\":\\\\\\\"Search\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength\\\\\\\":\\\\\\\"Maximum length\\\\\\\",\\\\\\\"TextInputCanvas_MaxLength_Desc\\\\\\\":\\\\\\\"The maximum content length of the Text input.\\\\\\\",\\\\\\\"Base_Palette_Color\\\\\\\":\\\\\\\"Color palette\\\\\\\",\\\\\\\"Base_Palette_Color_description\\\\\\\":\\\\\\\"Choose a color palette that's different from the theme.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState\\\\\\\":\\\\\\\"Validation state\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Desc\\\\\\\":\\\\\\\"The current status of the Text input, with regard to validation.\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_None\\\\\\\":\\\\\\\"None\\\\\\\",\\\\\\\"TextInputCanvas_ValidationState_Error\\\\\\\":\\\\\\\"Error\\\\\\\",\\\\\\\"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\\\\\\\",\\\\\\\"Fill\\\\\\\":\\\\\\\"Fill\\\\\\\",\\\\\\\"Fill_Description\\\\\\\":\\\\\\\"Background color of 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.\\\\\\\",\\\\\\\"BorderRadius\\\\\\\":\\\\\\\"Border radius\\\\\\\",\\\\\\\"BorderRadius_Description\\\\\\\":\\\\\\\"Roundedness of the control's corners. A value of 0 is perfectly square.\\\\\\\",\\\\\\\"PaddingTop\\\\\\\":\\\\\\\"Top\\\\\\\",\\\\\\\"PaddingTop_Description\\\\\\\":\\\\\\\"The value of the control's top padding.\\\\\\\",\\\\\\\"PaddingRight\\\\\\\":\\\\\\\"Right\\\\\\\",\\\\\\\"PaddingRight_Description\\\\\\\":\\\\\\\"The value of the control's right padding.\\\\\\\",\\\\\\\"PaddingBottom\\\\\\\":\\\\\\\"Bottom\\\\\\\",\\\\\\\"PaddingBottom_Description\\\\\\\":\\\\\\\"The value of the control's bottom padding.\\\\\\\",\\\\\\\"PaddingLeft\\\\\\\":\\\\\\\"Left\\\\\\\",\\\\\\\"PaddingLeft_Description\\\\\\\":\\\\\\\"The value of the control's left padding.\\\\\\\",\\\\\\\"HoverBorderColor\\\\\\\":\\\\\\\"Hover border color\\\\\\\",\\\\\\\"HoverBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while hovering over the control.\\\\\\\",\\\\\\\"PressedBorderColor\\\\\\\":\\\\\\\"Pressed border color\\\\\\\",\\\\\\\"PressedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while pressing or selecting the control.\\\\\\\",\\\\\\\"FocusedBorderColor\\\\\\\":\\\\\\\"Focused border color\\\\\\\",\\\\\\\"FocusedBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control has focus.\\\\\\\",\\\\\\\"DisabledBorderColor\\\\\\\":\\\\\\\"Disabled border color\\\\\\\",\\\\\\\"DisabledBorderColor_Description\\\\\\\":\\\\\\\"Color of borders while the control is disabled.\\\\\\\",\\\\\\\"Appearance\\\\\\\":\\\\\\\"Appearance\\\\\\\",\\\\\\\"Appearance_Description\\\\\\\":\\\\\\\"Appearance of the control's borders and fill\\\\\\\",\\\\\\\"Appearance_FilledDarker\\\\\\\":\\\\\\\"Filled Darker\\\\\\\",\\\\\\\"Appearance_FilledLighter\\\\\\\":\\\\\\\"Filled Lighter\\\\\\\",\\\\\\\"Appearance_Outline\\\\\\\":\\\\\\\"Outline\\\\\\\",\\\\\\\"TriggerOutput\\\\\\\":\\\\\\\"Trigger output\\\\\\\",\\\\\\\"TriggerOutput_Description\\\\\\\":\\\\\\\"When to trigger the OnChange function.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\\\\\r\\\\\\\\n\\\\\\\\r\\\\\\\\nKeypress: Triggers OnChange immediately as the user types.\\\\\\\",\\\\\\\"TriggerOutput_Delayed\\\\\\\":\\\\\\\"Delayed\\\\\\\",\\\\\\\"TriggerOutput_FocusOut\\\\\\\":\\\\\\\"Focus out\\\\\\\",\\\\\\\"TriggerOutput_Keypress\\\\\\\":\\\\\\\"Key press\\\\\\\"}}}\\\",\\\"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},{\\\"Type\\\":4,\\\"Path\\\":\\\"React/16.8.6/16.14.0\\\",\\\"ModifiedPath\\\":\\\"\\\",\\\"LoadingOrder\\\":0,\\\"IsControlSpecific\\\":false}]\",\"Properties\":\"[{\\\"Name\\\":\\\"Align\\\",\\\"DisplayName\\\":\\\"Align\\\",\\\"Description\\\":\\\"Display text using the selected text alignment.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"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\\\":\\\"AccessibleLabel\\\",\\\"DisplayName\\\":\\\"Accessible label\\\",\\\"Description\\\":\\\"Label for 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\\\":\\\"TextInputCanvas_AccessibleLabel\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_AccessibleLabel_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"MaxLength\\\",\\\"DisplayName\\\":\\\"Maximum length\\\",\\\"Description\\\":\\\"The maximum content length of the Text input.\\\",\\\"Type\\\":16,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"-1\\\",\\\"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\\\":\\\"TextInputCanvas_MaxLength\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_MaxLength_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Mode\\\",\\\"DisplayName\\\":\\\"Mode\\\",\\\"Description\\\":\\\"Type of text input: single line or multiline.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"SingleLine\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"SingleLine\\\",\\\"WebDefaultValue\\\":\\\"SingleLine\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"SingleLine\\\",\\\"DisplayName\\\":\\\"Single line\\\",\\\"Description\\\":\\\"Single line\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"SingleLine\\\"},{\\\"Name\\\":\\\"Multiline\\\",\\\"DisplayName\\\":\\\"Multiline\\\",\\\"Description\\\":\\\"Multiline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Multiline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Mode\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Mode_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Placeholder\\\",\\\"DisplayName\\\":\\\"Placeholder text\\\",\\\"Description\\\":\\\"The placeholder text of the text input.\\\",\\\"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\\\":\\\"TextInputCanvas_Placeholder\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Placeholder_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Required\\\",\\\"DisplayName\\\":\\\"Required\\\",\\\"Description\\\":\\\"Whether this control must contain text.\\\",\\\"Type\\\":20,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"false\\\",\\\"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\\\":\\\"TextInputCanvas_Required\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Required_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Type\\\",\\\"DisplayName\\\":\\\"Type\\\",\\\"Description\\\":\\\"Content type of text input: plain text, password, or search.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"Text\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"Text\\\",\\\"WebDefaultValue\\\":\\\"Text\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Password\\\",\\\"DisplayName\\\":\\\"Password\\\",\\\"Description\\\":\\\"Password\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Password\\\"},{\\\"Name\\\":\\\"Search\\\",\\\"DisplayName\\\":\\\"Search\\\",\\\"Description\\\":\\\"Search\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Search\\\"},{\\\"Name\\\":\\\"Text\\\",\\\"DisplayName\\\":\\\"Text\\\",\\\"Description\\\":\\\"Text\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"Text\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Type\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Type_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"ValidationState\\\",\\\"DisplayName\\\":\\\"Validation state\\\",\\\"Description\\\":\\\"The current status of the Text input, with regard to validation.\\\",\\\"Type\\\":1,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"None\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"None\\\",\\\"WebDefaultValue\\\":\\\"None\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Error\\\",\\\"DisplayName\\\":\\\"Error\\\",\\\"Description\\\":\\\"Error\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Error\\\"},{\\\"Name\\\":\\\"None\\\",\\\"DisplayName\\\":\\\"None\\\",\\\"Description\\\":\\\"None\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"None\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_ValidationState\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_ValidationState_Desc\\\",\\\"IsResettableToManifestDefault\\\":false,\\\"IsLinkableToParentTheme\\\":false},{\\\"Name\\\":\\\"Value\\\",\\\"DisplayName\\\":\\\"Value\\\",\\\"Description\\\":\\\"Text that appears on a control or that the user types into a control.\\\",\\\"Type\\\":6,\\\"Usage\\\":2,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"\\\",\\\"WebDefaultValue\\\":\\\"\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":\\\"\\\",\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":true,\\\"IsPrimaryOutput\\\":true,\\\"IsResettable\\\":true,\\\"EnumValues\\\":[],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TextInputCanvas_Value\\\",\\\"DescriptionResourceString\\\":\\\"TextInputCanvas_Value_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\\\":\\\"Fill\\\",\\\"DisplayName\\\":\\\"Fill\\\",\\\"Description\\\":\\\"Background color of 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\\\":\\\"Appearance\\\",\\\"DisplayName\\\":\\\"Appearance\\\",\\\"Description\\\":\\\"Appearance of the control's borders and fill\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FilledDarker\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FilledDarker\\\",\\\"WebDefaultValue\\\":\\\"FilledDarker\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"FilledDarker\\\",\\\"DisplayName\\\":\\\"Filled Darker\\\",\\\"Description\\\":\\\"Filled Darker\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FilledDarker\\\"},{\\\"Name\\\":\\\"FilledLighter\\\",\\\"DisplayName\\\":\\\"Filled Lighter\\\",\\\"Description\\\":\\\"Filled Lighter\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"FilledLighter\\\"},{\\\"Name\\\":\\\"Outline\\\",\\\"DisplayName\\\":\\\"Outline\\\",\\\"Description\\\":\\\"Outline\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Outline\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"Appearance\\\",\\\"DescriptionResourceString\\\":\\\"Appearance_Description\\\",\\\"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\\\":\\\"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\\\":\\\"PaddingTop\\\",\\\"DisplayName\\\":\\\"Top\\\",\\\"Description\\\":\\\"The value of the control's top padding.\\\",\\\"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\\\":\\\"The value of the control's right padding.\\\",\\\"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\\\":\\\"The value of the control's bottom padding.\\\",\\\"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\\\":\\\"The value of the control's left padding.\\\",\\\"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\\\":\\\"TriggerOutput\\\",\\\"DisplayName\\\":\\\"Trigger output\\\",\\\"Description\\\":\\\"When to trigger the OnChange function.\\\\r\\\\n\\\\r\\\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\\\r\\\\n\\\\r\\\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\\\r\\\\n\\\\r\\\\nKeypress: Triggers OnChange immediately as the user types.\\\",\\\"Type\\\":1,\\\"Usage\\\":0,\\\"Hidden\\\":false,\\\"DefaultValue\\\":\\\"FocusOut\\\",\\\"PfxDefaultValue\\\":\\\"\\\",\\\"PhoneDefaultValue\\\":\\\"FocusOut\\\",\\\"WebDefaultValue\\\":\\\"FocusOut\\\",\\\"NullDefaultValue\\\":null,\\\"HelperUI\\\":null,\\\"Category\\\":\\\"data\\\",\\\"IsPrimaryBehavioral\\\":false,\\\"IsPrimaryInput\\\":false,\\\"IsPrimaryOutput\\\":false,\\\"IsResettable\\\":false,\\\"EnumValues\\\":[{\\\"Name\\\":\\\"Delayed\\\",\\\"DisplayName\\\":\\\"Delayed\\\",\\\"Description\\\":\\\"Delayed\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Delayed\\\"},{\\\"Name\\\":\\\"FocusOut\\\",\\\"DisplayName\\\":\\\"Focus out\\\",\\\"Description\\\":\\\"Focus out\\\",\\\"IsDefaultValue\\\":true,\\\"Value\\\":\\\"FocusOut\\\"},{\\\"Name\\\":\\\"Keypress\\\",\\\"DisplayName\\\":\\\"Key press\\\",\\\"Description\\\":\\\"Key press\\\",\\\"IsDefaultValue\\\":false,\\\"Value\\\":\\\"Keypress\\\"}],\\\"Required\\\":false,\\\"IsDataSourceProperty\\\":false,\\\"PassThroughProperty\\\":\\\"\\\",\\\"ShouldAutoBind\\\":false,\\\"ParentDataSetName\\\":\\\"\\\",\\\"DisplayNameResourceString\\\":\\\"TriggerOutput\\\",\\\"DescriptionResourceString\\\":\\\"TriggerOutput_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\\\":\\\"320\\\",\\\"PfxDefaultValue\\\":null,\\\"PhoneDefaultValue\\\":\\\"320\\\",\\\"WebDefaultValue\\\":\\\"320\\\",\\\"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\\\":\\\"OnChange\\\",\\\"DisplayName\\\":\\\"OnChange\\\",\\\"Description\\\":\\\"\\\",\\\"PfxDefaultValue\\\":null,\\\"Hidden\\\":false,\\\"IsPrimaryInput\\\":false}]\",\"SubscribedFunctionalities\":\"{\\\"autoDisabledViewState\\\":\\\"true\\\",\\\"supportResettableProperties\\\":\\\"true\\\",\\\"supportSetFocus\\\":\\\"true\\\"}\",\"AuthConfigProperties\":\"[{\\\"Placeholder\\\":{\\\"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},\\\"Mode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Type\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":0,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"DisplayMode\\\":{\\\"SectionIndex\\\":1,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":27,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"BehaviorSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"TriggerOutput\\\":{\\\"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\\\":40,\\\"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},\\\"BasePaletteColor\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":53,\\\"PropertyKind\\\":1,\\\"WizardStep\\\":null,\\\"EnabledForFlyout\\\":false,\\\"Hidden\\\":false,\\\"SectionType\\\":\\\"StyleAndThemeSection\\\",\\\"ShowInCanvasInlineActionBar\\\":false},\\\"Fill\\\":{\\\"SectionIndex\\\":3,\\\"HelperUI\\\":null,\\\"PropertyGroupName\\\":\\\"\\\",\\\"SectionName\\\":null,\\\"Type\\\":32,\\\"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_TextInputCanvas", + "IsComponentDefinition": false, + "IsCustomGroupControlTemplate": false, + "IsPremiumPcfControl": false, + "LastModifiedTimestamp": "0", + "Name": "PowerApps_CoreControls_TextInputCanvas", + "OverridableProperties": {}, + "TemplateDisplayName": "Text input", + "Version": "0.0.54" + } + }, + "PublishOrderIndices": { + "App": 0, + "BioButton": 83, + "BioPopupTextCanvas": 20, + "ButtonCanvas1": 11, + "ButtonCanvas2": 86, + "ButtonCanvas3": 55, + "CardPopoutSample": 0, + "CardPopupContainer_1": 12, + "CardSample1": 0, + "CardSample1_1_test": 0, + "CardSample1_2": 0, + "CardSample1_3_test": 0, + "CardSample1_4_nested": 0, + "CardSampleVisual": 0, + "CardSubstitutionGallery1": 0, + "CardSubstitutionGallery2": 0, + "CardSubstitutionTest1": 0, + "Container1": 57, + "Container2": 80, + "Container3": 87, + "Container4": 93, + "Container5": 89, + "Container5_1": 97, + "ctr_Main": 70, + "ctr_MainPane": 72, + "ctr_Screen": 69, + "DataContainer": 64, + "FooterContainer1": 3, + "Gallery1": 91, + "Gallery2": 4, + "Gallery2_1": 32, + "Gallery2_2": 22, + "Gallery2_3": 39, + "Gallery2_4": 46, + "Gallery3": 95, + "Gallery4": 53, + "GalleryContainer": 6, + "GalleryContainer_1": 34, + "GalleryContainer_2": 24, + "GalleryContainer_3": 41, + "GalleryContainer_4": 48, + "GalleryImage": 7, + "GalleryImage_1": 35, + "GalleryImage_2": 25, + "GalleryImage_3": 42, + "GalleryImage_4": 49, + "galleryTemplate1": 92, + "galleryTemplate2": 5, + "galleryTemplate2_1": 33, + "galleryTemplate2_2": 23, + "galleryTemplate2_3": 40, + "galleryTemplate2_4": 47, + "galleryTemplate3": 96, + "galleryTemplate4": 54, + "GlassmorphismHtml": 63, + "HeaderContainer1": 1, + "hmtl_Glassmorphism": 71, + "hmtl_Glassmorphism_1": 58, + "Host": 0, + "HtmlText1": 56, + "HtmlText1_1": 31, + "HtmlText1_3": 88, + "HtmlText1_4": 94, + "HtmlText2": 66, + "HtmlText2_1": 90, + "HtmlText2_2": 98, + "HtmlText3": 68, + "HtmlText4": 67, + "Image1": 59, + "Image1_1": 62, + "JobTitlePopupTextCanvas": 19, + "lbl_Email": 78, + "lbl_JobTitle": 76, + "lbl_Name": 74, + "MainContainer1": 2, + "MoreButton_1": 38, + "MoreButton_2": 45, + "MoreInfoButton_1": 30, + "MoreInfoContainer": 10, + "MoreInfoContainer_1": 28, + "MoreInfoContainer_2": 52, + "NameLabel": 9, + "NameLabel_1": 37, + "NameLabel_2": 27, + "NameLabel_3": 44, + "NameLabel_4": 51, + "NamePopupTextCanvas": 17, + "PopupContainer": 61, + "PopupDataContainer_1": 14, + "PopupDetailsContainer": 16, + "PopupGlassmorphismHtml_1": 13, + "PopupImage": 15, + "Rectangle1": 18, + "SampleCardImage": 85, + "Screen_Main": 0, + "Screen1": 0, + "Screen2": 0, + "ScreenContainer1": 0, + "SummaryButton": 84, + "SummaryLabel": 8, + "SummaryLabel_1": 36, + "SummaryLabel_2": 26, + "SummaryLabel_3": 43, + "SummaryLabel_4": 50, + "SummaryPopupTextCanvas": 21, + "TextCanvas1_1": 29, + "TextCanvas2": 60, + "TextCanvas2_1": 65, + "Timer1": 81, + "TitleButton": 82, + "txt_Email": 79, + "txt_Header": 73, + "txt_JobTitle": 77, + "txt_Name": 75 + }, + "ResourcesJsonIndices": { + "Image-847408384": 21, + "Image-Face1": 0, + "Image-Face10": 9, + "Image-Face11": 10, + "Image-Face12": 11, + "Image-Face13": 12, + "Image-Face14": 13, + "Image-Face15": 14, + "Image-Face16": 15, + "Image-Face17": 16, + "Image-Face18": 17, + "Image-Face19": 18, + "Image-Face2": 1, + "Image-Face3": 2, + "Image-Face4": 3, + "Image-Face5": 4, + "Image-Face6": 5, + "Image-Face7": 6, + "Image-Face8": 7, + "Image-Face9": 8, + "Image-SampleImage": 19, + "Image-stacked-waves-haikei": 20 + }, + "RuleScreenIdWithoutScreen": {}, + "TemplateVersions": {}, + "VolatileProperties": { + "AnalysisLoadTime": 0.69489190000000001, + "ControlCount": { + "button": 2, + "gallery": 8, + "galleryTemplate": 8, + "groupContainer": 26, + "htmlViewer": 13, + "image": 9, + "label": 10, + "PowerApps_CoreControls_ButtonCanvas": 6, + "PowerApps_CoreControls_InfoButtonCanvas": 1, + "PowerApps_CoreControls_TextCanvas": 11, + "PowerApps_CoreControls_TextInputCanvas": 3, + "rectangle": 1, + "screen": 13, + "timer": 1 + }, + "DeserializationLoadTime": 1.1286668 + }, + "WasLocalDatabaseReferencesEmpty": true +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/checksum.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/checksum.json new file mode 100644 index 00000000..4d1bfacf --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Entropy/checksum.json @@ -0,0 +1,65 @@ +{ + "ClientPerFileChecksums": { + ".gitignore": "C8_VaC8EcEG56Ufcy1DFyC8Ky19iV9xSsXMDIAcmF2GTj8=", + "AppCheckerResult.sarif": "C8_w4OilECAJPzsZxx8aXifl722qiLdVIgyWlBiBTShQmY=", + "Assets\\Images\\0636b11a-1c04-4742-895d-42736ead6d20.png": "C8_+cSYHIeqNyR7cruWioteTuoMYydkFkdMThiPqqIl0vo=", + "Assets\\Images\\1820712a-f039-44b7-be9f-3c0f35123f23.png": "C8_ez+ctZEEx05J02ASN8X0JKGRU/lueh7vHVWqD2yXxyE=", + "Assets\\Images\\1a9a9f9d-58ad-4b7f-b856-301c335b1acd.png": "C8_cxCnDaJq6GWnBxsIUYm4RXu4FDKD6A7llubUIxEUV54=", + "Assets\\Images\\273359a3-d433-4209-869f-9b576f257a8e.png": "C8_O8qu6hzJ0MwFzTFlqDVdExWvmfbfveNv6zK/hi06+QE=", + "Assets\\Images\\2cada5a7-83f3-4bcc-b4e1-215129b1fefe.png": "C8_Ji2A41tagY8kUYddhIgzjOr0puREgwz0l1cgzwerYhw=", + "Assets\\Images\\352e3a4a-ae15-443e-a918-381e0ea129da.png": "C8_pgTUe5uCGtwNgk0O0NtM3ukiofqcF970sPPBBfG1kAs=", + "Assets\\Images\\3c39b30e-3d79-4ebf-9bf8-cd120c56d531.png": "C8_nNWrmdswcCzK5Nh0r2+z780wqAiNWD+tHub5yQNze44=", + "Assets\\Images\\4029897a-de4a-4c12-bfc6-dd24ea71f04d.png": "C8_EnNdXZuHTDUbkxUwWN6JL20HN6xXdfR88GVypb3BtiA=", + "Assets\\Images\\6a4e25db-8d34-44a8-b5db-d980ad0f5918.jpg": "C8_ZY7yjhKeYrLZZXB2TLPoZ2DGsuSocUdlq7y+FI9bTD4=", + "Assets\\Images\\7e80e99e-56d8-4d34-92bc-517db6add550.png": "C8_m8e8pToMURIVLO9kPbqOHh19XHLW/2bjKUaIQRE+9Xo=", + "Assets\\Images\\87828a35-f12c-4d78-845d-858a6e630362.png": "C8_+BrXWSOdE72ZXaZUH2kuBe1zUH05SmwaEHUejd+hWWg=", + "Assets\\Images\\8d350853-024a-478f-8352-1832137f4337.png": "C8_Cv6/O1SrKrYLo3bUOW+IZzPnXo6ojhjR4fkjJFhQbQ0=", + "Assets\\Images\\906b0b4a-974d-45c8-b89c-b229964474da.png": "C8_gK0EM9eCSyDbVR4+9e1CkEYE/f6qSyMnGK6YFFyHCkE=", + "Assets\\Images\\a0e8e578-b921-4d0c-80f1-8967a5f6559d.png": "C8_WqtsRkIsqn/ssL8TbwhIxzaeiT1/9jifCffEzHVybUg=", + "Assets\\Images\\a2c2a4a8-662c-40de-a90e-d978858517d0.png": "C8_2sjTRvPUr1hBC4W8Axoiwpa4dI8KwE8YnVhgvRZRPxE=", + "Assets\\Images\\a8641ca2-3f7f-41dd-ac10-eb18e23579ca.png": "C8_ng3piJ2e+7QcWWetCtiwABqRVYNvpVKoblGGfhCr7nw=", + "Assets\\Images\\b27e3c6b-8603-46c6-86bb-8d2cf11eba64.png": "C8_K0B8yrcfje1TRlDUrVULKJ7MtbPceK9Cmc7pYTrDO6M=", + "Assets\\Images\\b9c6b232-f557-4538-8789-dc508751494c.png": "C8_BZvzjspmucvfAuEI5uCkl9IgHuSPaTmFpapzdLY1aOg=", + "Assets\\Images\\cb8d2056-2020-4047-b8df-713013792a46.png": "C8_MJGwZDm+G88PiseKQGDhXyUVKhRE2sIMtBTfD9+q6ho=", + "Assets\\Images\\f03ef2b7-e3cc-4926-8643-8295cf144315.png": "C8_Ujy875Lzkgth5X7sSjCnUvJ81gt887a9EdtZh1i1fQg=", + "Assets\\Images\\f58ea67e-a5f5-460c-8dcd-ed8d08c24e88.png": "C8_7z7EnWEMM/2fEeZLK+vcvW4GQdFzulwuYNjCoarHLOo=", + "Controls\\1.json": "C8_0pYUGoTjyh2Hrz3L0E34jpKaeBh0gEMlcj6j6u+PmW0=", + "Controls\\100.json": "C8_o4hr5kDIFML3ci17XUDA4ih0n4PACuhn2JwzK0KJDJk=", + "Controls\\105.json": "C8_vnq1yw87OuBLWUr/6ttqNyp4G2rLPwMNv6BGCWvSJOw=", + "Controls\\28.json": "C8_b13tjQokeNr8XvTLLNCJGy792gahxGCkTI1FKb/0UfY=", + "Controls\\4.json": "C8_2nw1TaHZiC6XsvU4viXEgVgkxO64KStojNyo9zeb5Bs=", + "Controls\\42.json": "C8_48suPkEgnRY7oOcJeNZH7Tc5cjjmCJ5yB4dmPfSuKhw=", + "Controls\\54.json": "C8_ONQGZYsqhSaisbGGNeZ8YOs58TOLReFE7wUQMAjWTF4=", + "Controls\\62.json": "C8_ncBhOwPxgQuzviE3HkXYfWCuO7jyw5Jt3DTUMGU/w+k=", + "Controls\\72.json": "C8_XB846ldzKBFfS91Svgr39qlgs6V2lMLJ67SqcRm+Vso=", + "Controls\\80.json": "C8_JvdQPrYcZvgMQV6FV9w4yqHR16uOEDvUFGgfZECQrIs=", + "Controls\\82.json": "C8_1NvpUAualtLTBIDBojCT9YCP/L9pNFLHjwTmW5DSnnQ=", + "Controls\\9.json": "C8_XwlOthFX35Q8Fw+Iq7e9WGdzLLJpG775o1ILdzzCa40=", + "Controls\\90.json": "C8_XqTzsxosDpwvjVQuyp3GVd6wpcapJgL3VZp1+Vxww/4=", + "Controls\\95.json": "C8_us56ekq4/PlPJ+tqi24OHgZiQHhGrtVmW8Q5nWBhECw=", + "Header.json": "C8_GLGwNkYd2iqQMTovpVy3UqAG348x7ddJM8lnqYfc/gw=", + "Properties.json": "C8_7dJ3R8JKqe9w9cWnP9ABcVfqk4cJUkNcPjYvYVw15wc=", + "References\\DataSources.json": "C8_bSi7CkSh6KfufXvbOlZaORyh3OOl6Cloq0BniqsHfY0=", + "References\\ModernThemes.json": "C8_BvVuJftMZjdnk+j45AFVxMrAfHKDe2nKKCVAqcF0FJI=", + "References\\Resources.json": "C8_QNd1uf+2KR3H65SiqqaX9D9acHIaYKF03MNZwdt7n9w=", + "References\\Templates.json": "C8_gfT+E35dKd7bMvmrmgVg1xdWp+RYWSI23cxwOYcrYoU=", + "References\\Themes.json": "C8_RlzfNvNoKW2qW2c4jV29thNehCcuXpqot+zDMsiQue0=", + "Resources\\PublishInfo.json": "C8_A3OCn/QKXejAq1Gx32U/bPfmgXj9lXJ0A/WYOMiyE2I=", + "Src\\_EditorState.pa.yaml": "C8_SoYnmfg2mq899sw0sci2KFK6v7PxTLQeS8291QPv8BQ=", + "Src\\App.pa.yaml": "C8_BVXs+SgZfDHUvhvBINbQxm1rIKItfZjWpja9eQKVoqo=", + "Src\\CardPopoutSample.pa.yaml": "C8_uZH7vlGqIafj6rvc5wJilm15fPS4N2tgprVzi6wApIM=", + "Src\\CardSample1.pa.yaml": "C8_sAyOV0aGMnGpIzVaNcDAv9rThp7jRZbuF5oGeM8UGAs=", + "Src\\CardSample1_1_test.pa.yaml": "C8_dtraJzrBmxioI9KUheAl+mNZjyOuBl2/2qDn+G59UOE=", + "Src\\CardSample1_2.pa.yaml": "C8_kEX38W09L3fRwPrplLA0kwqRSgG2fpKWhdl+mTwgS1Q=", + "Src\\CardSample1_3_test.pa.yaml": "C8_qfCHAHnUU90CLhp1WwGc4KvvZqJcKdXTOeq/eBkgSVQ=", + "Src\\CardSample1_4_nested.pa.yaml": "C8_B7uh+j3CXlOEvVnrblxmWzlHNvDr6fvG+CIdfiADRMM=", + "Src\\CardSampleVisual.pa.yaml": "C8_CG4DqivexycuqIVyE5r6mXRYBa4nbb9vYdV4p6tN5F0=", + "Src\\CardSubstitutionGallery1.pa.yaml": "C8_K9fkvqTWc8k7l8vxC6kK5kaJjiNyN4Lf4isdIYZNGgU=", + "Src\\CardSubstitutionGallery2.pa.yaml": "C8_kS4/F9gl0k5xXhckJ9cDUJQAEt4gpNll485wTi105Iw=", + "Src\\CardSubstitutionTest1.pa.yaml": "C8_ZSAGwCaT9bSpT3H2AObaj68I837N7aWmXcyGsCR6HTs=", + "Src\\Screen_Main.pa.yaml": "C8_yJ/5wkVGBLdSjFxZKt2GQCOiv+2M/PK16jL6CVp8yBc=", + "Src\\Screen1.pa.yaml": "C8_kN0ovZmMItkS0KMFTi6xlYbMIda/9uRaC2GmMBREi+M=", + "Src\\Screen2.pa.yaml": "C8_pQlrMkwLcbnSRX/rBks581mP7oEb/3mTyZlk+piz4RU=" + }, + "ClientStampedChecksum": "C8_qqgAceyPcBIcB/QB2oVfJ1f3c/Eimig+Mn9sNPmhZ4A=" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/.gitignore b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/.gitignore new file mode 100644 index 00000000..6d99c528 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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/exploring-visual-cards-in-galleries/sourcecode/Other/References/ModernThemes.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/References/ModernThemes.json new file mode 100644 index 00000000..57fb6931 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/References/ModernThemes.json @@ -0,0 +1,35 @@ +{ + "Themes": [ + { + "EntityName": "PowerAppsTheme", + "ThemeName": "PowerAppsTheme" + }, + { + "BasePaletteColor": "#ffffff", + "ColorOverrides": [ + "#fcfcfc", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff", + "#ffffff" + ], + "EntityName": "Blank", + "Font": "'Segoe UI', 'Open Sans', sans-serif", + "HueTorsion": -100, + "ThemeName": "Blank", + "ThemePrimaryColorLocked": false, + "Vibrancy": -100 + } + ] +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/App.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/App.pa.yaml new file mode 100644 index 00000000..9f0c37be --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/App.pa.yaml @@ -0,0 +1,416 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +App: + Properties: + Formulas: '= ' + OnStart: |+ + =ClearCollect( + PeopleGallery, + { + Name: "Aaliyah Clarke", + JobTitle: "Event Producer", + Bio: "Aaliyah has produced over 200 cultural events across the Caribbean, blending logistics with creative storytelling. She specializes in artist-led programming and community engagement.", + Summary: "Cultural event producer focused on artist-led programming.", + Img: Face1 + }, + { + Name: "Jamal Browne", + JobTitle: "Digital Strategist", + Bio: "Jamal designs digital ecosystems for Caribbean startups, integrating branding, UX, and monetization strategies. He’s known for his bold, abstract visual language.", + Summary: "Digital strategist for Caribbean startups.", + Img: Face2 + }, + { + Name: "Sasha Griffith", + JobTitle: "Visual Archivist", + Bio: "Sasha curates and tags visual IP libraries for editorial and commercial use. Her work preserves cultural memory through metadata and licensing frameworks.", + Summary: "Curator of visual IP and metadata systems.", + Img: Face3 + }, + { + Name: "Julie Jordan", + JobTitle: "UX Researcher", + Bio: "Julie conducts field research across Barbados to refine accessibility and user flows in mobile platforms. He bridges technical logic with lived experience.", + Summary: "UX researcher focused on accessibility and local context.", + Img: Face4 + }, + { + Name: "Tanya Roach", + JobTitle: "Brand Consultant", + Bio: "Tanya helps Caribbean artists and entrepreneurs define their brand voice through editorial design and strategic messaging. Her work is rooted in cultural fluency.", + Summary: "Brand consultant for artists and entrepreneurs.", + Img: Face5 + }, + { + Name: "Darius King", + JobTitle: "Platform Architect", + Bio: "Darius builds scalable media platforms that connect sponsors, artists, and audiences. He specializes in schema design and onboarding logic.", + Summary: "Architect of scalable media platforms.", + Img: Face6 + }, + { + Name: "David Forde", + JobTitle: "Creative Director", + Bio: "David leads multidisciplinary teams to produce editorial campaigns that celebrate Caribbean abstraction. He merges fashion, folklore, and futurism.", + Summary: "Creative director blending fashion and folklore.", + Img: Face7 + }, + { + Name: "Linda Alleyne", + JobTitle: "Data Modeler", + Bio: "Linda troubleshoots Dataverse schema issues and formats calculated columns for clean presentation. She’s known for her precision and logic.", + Summary: "Dataverse expert focused on schema integrity.", + Img: Face8 + }, + { + Name: "Rhea Sobers", + JobTitle: "Cultural Critic", + Bio: "Rhea writes and speaks on Caribbean identity, abstraction, and epistemic sabotage. Her essays challenge conventional design norms.", + Summary: "Writer exploring Caribbean abstraction and critique.", + Img: Face9 + }, + { + Name: "Andre Callender", + JobTitle: "Sponsor Liaison", + Bio: "Andre builds bridges between corporate sponsors and creative communities. He crafts pitch decks and onboarding flows that align business goals with cultural impact.", + Summary: "Connector between sponsors and creatives.", + Img: Face10 + }, + { + Name: "John Springer", + JobTitle: "Editorial Designer", + Bio: "John designs magazine identities and layout systems that reflect Caribbean exuberance. His work balances clarity, abstraction, and rhythm.", + Summary: "Editorial designer of Caribbean publications.", + Img: Face11 + }, + { + Name: "Nathaniel Hoyte", + JobTitle: "Photographer", + Bio: "Nathaniel documents weddings, festivals, and speculative fiction scenes with a cinematic eye. He builds shot lists that evoke emotion and narrative.", + Summary: "Photographer blending culture and fiction.", + Img: Face12 + }, + { + Name: "Pete Mayers", + JobTitle: "Licensing Strategist", + Bio: "Pete structures licensing deals for visual IP across editorial, commercial, and platform contexts. He ensures artists retain control and value.", + Summary: "Strategist for visual IP licensing.", + Img: Face13 + }, + { + Name: "Omar Best", + JobTitle: "App Prototyper", + Bio: "Omar rapidly prototypes Power Apps interfaces for artist onboarding and sponsor engagement. He’s known for his iterative logic and clean UI.", + Summary: "Power Apps prototyper for creative platforms.", + Img: Face14 + }, + { + Name: "Luke Thomas", + JobTitle: "Narrative Designer", + Bio: "Luke crafts speculative fiction worlds rooted in Caribbean myth and lost archives. His work spans prose, visual layouts, and interactive media.", + Summary: "Designer of Caribbean speculative fiction worlds.", + Img: Face15 + }, + { + Name: "Trevor Gaskin", + JobTitle: "Media Curator", + Bio: "Trevor curates homepage visuals and media layouts for entertainment platforms. He balances sponsor visibility with cultural storytelling.", + Summary: "Curator of media layouts and sponsor visuals.", + Img: Face16 + }, + { + Name: "Nick Prescott", + JobTitle: "Accessibility Advocate", + Bio: "Nick audits customer-facing apps for accessibility and inclusion. He champions design systems that reflect diverse user needs.", + Summary: "Advocate for inclusive design systems.", + Img: Face17 + }, + { + Name: "Jared Walcott", + JobTitle: "Strategic Analyst", + Bio: "Jared refines business models and pricing logic for Barbados-based platforms. He aligns creative ambition with market realities.", + Summary: "Analyst aligning creativity with market logic.", + Img: Face18 + }, + { + Name: "Roger Beckles", + JobTitle: "Metadata Engineer", + Bio: "Roger builds tagging workflows for RAW files and visual assets. His systems support licensing, discovery, and editorial reuse.", + Summary: "Engineer of metadata systems for visual IP.", + Img: Face19 + } + ); + + ClearCollect(SampleVisual, + { + Heading: "Plans", + SubHeading: "Starter", + AmountValue: "19", + Item1: "Feature one", + Item2: "Feature two", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Medium", + AmountValue: "39", + Item1: "Feature three", + Item2: "Feature four", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Advanced", + AmountValue: "45", + Item1: "Feature five", + Item2: "Feature six", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + } + ); + + + ClearCollect( + PeopleSample, + { + Name: "Aaliyah Clarke", + JobTitle: "Event Producer", + Bio: "Aaliyah has produced over 200 cultural events across the Caribbean, blending logistics with creative storytelling. She specializes in artist-led programming and community engagement.", + Summary: "Cultural event producer focused on artist-led programming.", + Img: Face1, + Roles: Table( + { Role: "Producer", Area: "Events", Level: "Senior" }, + { Role: "Logistics Lead", Area: "Operations", Level: "Mid" }, + { Role: "Community Liaison", Area: "Programming", Level: "Mid" } + ) + }, + { + Name: "Jamal Browne", + JobTitle: "Digital Strategist", + Bio: "Jamal designs digital ecosystems for Caribbean startups, integrating branding, UX, and monetization strategies. He’s known for his bold, abstract visual language.", + Summary: "Digital strategist for Caribbean startups.", + Img: Face2, + Roles: Table( + { Role: "Strategy Lead", Area: "Growth", Level: "Senior" }, + { Role: "UX Partner", Area: "Product", Level: "Mid" }, + { Role: "Monetization Analyst", Area: "Business", Level: "Mid" } + ) + }, + { + Name: "Sasha Griffith", + JobTitle: "Visual Archivist", + Bio: "Sasha curates and tags visual IP libraries for editorial and commercial use. Her work preserves cultural memory through metadata and licensing frameworks.", + Summary: "Curator of visual IP and metadata systems.", + Img: Face3, + Roles: Table( + { Role: "Archivist", Area: "Libraries", Level: "Senior" }, + { Role: "Metadata Tagger", Area: "Cataloging", Level: "Mid" }, + { Role: "Licensing Coordinator", Area: "Rights", Level: "Associate" } + ) + }, + { + Name: "Julie Jordan", + JobTitle: "UX Researcher", + Bio: "Julie conducts field research across Barbados to refine accessibility and user flows in mobile platforms. He bridges technical logic with lived experience.", + Summary: "UX researcher focused on accessibility and local context.", + Img: Face4, + Roles: Table( + { Role: "Field Researcher", Area: "Accessibility", Level: "Mid" }, + { Role: "Usability Tester", Area: "Mobile UX", Level: "Associate" }, + { Role: "Insights Synthesizer", Area: "Product", Level: "Mid" } + ) + }, + { + Name: "Tanya Roach", + JobTitle: "Brand Consultant", + Bio: "Tanya helps Caribbean artists and entrepreneurs define their brand voice through editorial design and strategic messaging. Her work is rooted in cultural fluency.", + Summary: "Brand consultant for artists and entrepreneurs.", + Img: Face5, + Roles: Table( + { Role: "Brand Strategist", Area: "Positioning", Level: "Senior" }, + { Role: "Messaging Lead", Area: "Editorial", Level: "Mid" }, + { Role: "Identity Reviewer", Area: "Design", Level: "Associate" } + ) + }, + { + Name: "Darius King", + JobTitle: "Platform Architect", + Bio: "Darius builds scalable media platforms that connect sponsors, artists, and audiences. He specializes in schema design and onboarding logic.", + Summary: "Architect of scalable media platforms.", + Img: Face6, + Roles: Table( + { Role: "Schema Designer", Area: "Dataverse", Level: "Senior" }, + { Role: "Onboarding Architect", Area: "Flows", Level: "Mid" }, + { Role: "Integration Reviewer", Area: "APIs", Level: "Mid" } + ) + }, + { + Name: "David Forde", + JobTitle: "Creative Director", + Bio: "David leads multidisciplinary teams to produce editorial campaigns that celebrate Caribbean abstraction. He merges fashion, folklore, and futurism.", + Summary: "Creative director blending fashion and folklore.", + Img: Face7, + Roles: Table( + { Role: "Campaign Director", Area: "Editorial", Level: "Senior" }, + { Role: "Art Lead", Area: "Visuals", Level: "Senior" }, + { Role: "Narrative Reviewer", Area: "Story", Level: "Mid" } + ) + }, + { + Name: "Linda Alleyne", + JobTitle: "Data Modeler", + Bio: "Linda troubleshoots Dataverse schema issues and formats calculated columns for clean presentation. She’s known for her precision and logic.", + Summary: "Dataverse expert focused on schema integrity.", + Img: Face8, + Roles: Table( + { Role: "Data Modeler", Area: "Schema", Level: "Senior" }, + { Role: "Calculated Columns", Area: "Formatting", Level: "Mid" }, + { Role: "Validation Reviewer", Area: "Integrity", Level: "Associate" } + ) + }, + { + Name: "Rhea Sobers", + JobTitle: "Cultural Critic", + Bio: "Rhea writes and speaks on Caribbean identity, abstraction, and epistemic sabotage. Her essays challenge conventional design norms.", + Summary: "Writer exploring Caribbean abstraction and critique.", + Img: Face9, + Roles: Table( + { Role: "Essayist", Area: "Editorial", Level: "Senior" }, + { Role: "Panelist", Area: "Public Discourse", Level: "Mid" }, + { Role: "Research Contributor", Area: "Culture", Level: "Associate" } + ) + }, + { + Name: "Andre Callender", + JobTitle: "Sponsor Liaison", + Bio: "Andre builds bridges between corporate sponsors and creative communities. He crafts pitch decks and onboarding flows that align business goals with cultural impact.", + Summary: "Connector between sponsors and creatives.", + Img: Face10, + Roles: Table( + { Role: "Partnerships", Area: "Sponsors", Level: "Senior" }, + { Role: "Pitch Designer", Area: "Decks", Level: "Mid" }, + { Role: "Onboarding Coordinator", Area: "Flows", Level: "Associate" } + ) + }, + { + Name: "John Springer", + JobTitle: "Editorial Designer", + Bio: "John designs magazine identities and layout systems that reflect Caribbean exuberance. His work balances clarity, abstraction, and rhythm.", + Summary: "Editorial designer of Caribbean publications.", + Img: Face11, + Roles: Table( + { Role: "Layout Designer", Area: "Editorial", Level: "Senior" }, + { Role: "Identity Systems", Area: "Design", Level: "Mid" }, + { Role: "Typography Reviewer", Area: "Visuals", Level: "Associate" } + ) + }, + { + Name: "Nathaniel Hoyte", + JobTitle: "Photographer", + Bio: "Nathaniel documents weddings, festivals, and speculative fiction scenes with a cinematic eye. He builds shot lists that evoke emotion and narrative.", + Summary: "Photographer blending culture and fiction.", + Img: Face12, + Roles: Table( + { Role: "Lead Photographer", Area: "Editorial", Level: "Senior" }, + { Role: "Cinematic Shooter", Area: "Campaigns", Level: "Mid" }, + { Role: "Shot List Curator", Area: "Planning", Level: "Associate" } + ) + }, + { + Name: "Pete Mayers", + JobTitle: "Licensing Strategist", + Bio: "Pete structures licensing deals for visual IP across editorial, commercial, and platform contexts. He ensures artists retain control and value.", + Summary: "Strategist for visual IP licensing.", + Img: Face13, + Roles: Table( + { Role: "Licensing Lead", Area: "IP", Level: "Senior" }, + { Role: "Contract Reviewer", Area: "Legal", Level: "Mid" }, + { Role: "Rights Manager", Area: "Editorial", Level: "Associate" } + ) + }, + { + Name: "Omar Best", + JobTitle: "App Prototyper", + Bio: "Omar rapidly prototypes Power Apps interfaces for artist onboarding and sponsor engagement. He’s known for his iterative logic and clean UI.", + Summary: "Power Apps prototyper for creative platforms.", + Img: Face14, + Roles: Table( + { Role: "Prototype Builder", Area: "Power Apps", Level: "Senior" }, + { Role: "UI Implementer", Area: "Design", Level: "Mid" }, + { Role: "Flow Integrator", Area: "Automation", Level: "Associate" } + ) + }, + { + Name: "Luke Thomas", + JobTitle: "Narrative Designer", + Bio: "Luke crafts speculative fiction worlds rooted in Caribbean myth and lost archives. His work spans prose, visual layouts, and interactive media.", + Summary: "Designer of Caribbean speculative fiction worlds.", + Img: Face15, + Roles: Table( + { Role: "World Builder", Area: "Story", Level: "Senior" }, + { Role: "Layout Narrator", Area: "Visuals", Level: "Mid" }, + { Role: "Interactive Author", Area: "Media", Level: "Associate" } + ) + }, + { + Name: "Trevor Gaskin", + JobTitle: "Media Curator", + Bio: "Trevor curates homepage visuals and media layouts for entertainment platforms. He balances sponsor visibility with cultural storytelling.", + Summary: "Curator of media layouts and sponsor visuals.", + Img: Face16, + Roles: Table( + { Role: "Homepage Curator", Area: "Media", Level: "Senior" }, + { Role: "Sponsor Balancer", Area: "UX", Level: "Mid" }, + { Role: "Editorial Assembler", Area: "Content", Level: "Associate" } + ) + }, + { + Name: "Nick Prescott", + JobTitle: "Accessibility Advocate", + Bio: "Nick audits customer-facing apps for accessibility and inclusion. He champions design systems that reflect diverse user needs.", + Summary: "Advocate for inclusive design systems.", + Img: Face17, + Roles: Table( + { Role: "Accessibility Auditor", Area: "UX", Level: "Senior" }, + { Role: "Inclusive Design", Area: "Systems", Level: "Mid" }, + { Role: "WCAG Reviewer", Area: "Standards", Level: "Associate" } + ) + }, + { + Name: "Jared Walcott", + JobTitle: "Strategic Analyst", + Bio: "Jared refines business models and pricing logic for Barbados-based platforms. He aligns creative ambition with market realities.", + Summary: "Analyst aligning creativity with market logic.", + Img: Face18, + Roles: Table( + { Role: "Modeling Analyst", Area: "Finance", Level: "Senior" }, + { Role: "Pricing Strategist", Area: "Growth", Level: "Mid" }, + { Role: "Market Researcher", Area: "Insights", Level: "Associate" } + ) + }, + { + Name: "Roger Beckles", + JobTitle: "Metadata Engineer", + Bio: "Roger builds tagging workflows for RAW files and visual assets. His systems support licensing, discovery, and editorial reuse.", + Summary: "Engineer of metadata systems for visual IP.", + Img: Face19, + Roles: Table( + { Role: "Tagging Engineer", Area: "Assets", Level: "Senior" }, + { Role: "Workflow Designer", Area: "Pipelines", Level: "Mid" }, + { Role: "Discovery Ops", Area: "Editorial", Level: "Associate" } + ) + } + ); + + Theme: =Blank diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardPopoutSample.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardPopoutSample.pa.yaml new file mode 100644 index 00000000..a65767aa --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardPopoutSample.pa.yaml @@ -0,0 +1,137 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardPopoutSample: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Container2: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + Height: =453 + Width: =512 + X: =40 + Y: =40 + Children: + - Timer1: + Control: Timer@2.1.0 + Properties: + BorderColor: =RGBA(0, 120, 212, 1) + BorderStyle: =BorderStyle.None + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(242, 242, 241, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Duration: =1000 + Fill: =RGBA(0, 120, 212, 1) + Font: =Font.'Segoe UI' + Height: =23 + HoverBorderColor: =RGBA(16, 110, 190, 1) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + OnTimerStart: |+ + =//UpdateContext( {InitialX: (Parent.Height - SampleCardImage.Height) / 2}); + //UpdateContext( {InitialY: (Parent.Width - SampleCardImage.Width) / 2}); + //UpdateContext( {InitialImageHeight: Parent.Height - 100}); + //UpdateContext( {InitialImageWidth: Parent.Width - 100}); + + //animate the title button to slide out to a maximum position + PressedBorderColor: =RGBA(16, 110, 190, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + Start: =TimerGo + Width: =93 + - TitleButton: + Control: Button@0.0.45 + Properties: + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + BorderStyle: =BorderStyle.Solid + BorderThickness: =1 + Height: =PopupButtonHeight + Text: ="Title" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonTitleY + - BioButton: + Control: Button@0.0.45 + Properties: + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + Height: =PopupButtonHeight + Text: ="Bio" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonBioY + - SummaryButton: + Control: Button@0.0.45 + Properties: + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + Height: =PopupButtonHeight + Text: ="Summary" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonSummaryY + - ButtonCanvas2: + Control: Button@0.0.45 + Properties: + OnSelect: |+ + =//UpdateContext( {InitialX: (Parent.Height - SampleCardImage.Height) / 2}); + //UpdateContext( {InitialY: (Parent.Width - SampleCardImage.Width) / 2}); + //UpdateContext( {InitialImageHeight: Parent.Height - 100}); + //UpdateContext( {InitialImageWidth: Parent.Width - 100}); + + UpdateContext({TimerGo: false}); + + + Set( InitialImageHeight, Parent.Height - 150); + Set( InitialImageWidth, Parent.Width - 150); + Set( InitialX, (Parent.Height - SampleCardImage.Height) / 2 - 20); + Set( InitialY, (Parent.Width - SampleCardImage.Width) / 2); + + Set(PopupButtonRadius, 45); + Set(PopupButtonWidth, Parent.Width - SampleCardImage.Width - SampleCardImage.X); + Set(PopupButtonHeight, SampleCardImage.Height/7); + Set(PopupButtonStartY, SampleCardImage.Y + SampleCardImage.Height); + + Set(PopupButtonSummaryY, PopupButtonStartY - SummaryButton.Height - 5); + Set(PopupButtonBioY, PopupButtonSummaryY - BioButton.Height - 5); + Set(PopupButtonTitleY, PopupButtonBioY - TitleButton.Height - 5); + + + Set(TitleButtonX, SampleCardImage.X + SampleCardImage.Width - 1); + + UpdateContext({TimerGo: true}); + Y: =23 + - SampleCardImage: + Control: Image@2.2.3 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =InitialImageHeight + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =Face1 + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Transparency: = + Width: =InitialImageWidth + X: =InitialX + Y: =InitialY diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1.pa.yaml new file mode 100644 index 00000000..fa8551f6 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1.pa.yaml @@ -0,0 +1,302 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSample1: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery2: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =628 + Items: =PeopleGallery + NavigationStep: =0 + OnSelect: =Set(varSelectedItem,ThisItem); + ShowNavigation: =true + ShowScrollbar: =false + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(200, Self.Width - 60), Min(200, Self.Height - 60)) + Width: =1310 + WrapCount: =2 + X: =40 + Children: + - GalleryContainer: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderThickness: =1 + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =200 + Y: =4 + Children: + - GalleryImage: + Control: Image@2.2.3 + Properties: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: '=Parent.Height*2/3 ' + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + - SummaryLabel: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + Height: =50 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2) + Size: =10 + Text: =ThisItem.Summary + Width: =Parent.Width + - NameLabel: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage.Height - Self.Height + - MoreInfoContainer: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderStyle: =BorderStyle.None + DropShadow: =DropShadow.None + Height: =40 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + LayoutJustifyContent: =LayoutJustifyContent.Center + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =200 + Y: =GalleryContainer.Height - Self.Height - 10 + Children: + - ButtonCanvas1: + Control: Button@0.0.45 + Properties: + Appearance: ='ButtonCanvas.Appearance'.Secondary + BorderRadius: =45 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: |- + =Set(ImagePopupDisplay, ThisItem.Img); + Set(NamePopupDisplay, ThisItem.Name); + Set(JobTitlePopupDisplay, ThisItem.JobTitle); + Set(BioPopupDisplay, ThisItem.Bio); + Set(SummaryPopupDisplay, ThisItem.Summary); + + Set(CardPopupVisible, true) + Text: ="More" + - CardPopupContainer_1: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + BorderThickness: =1 + Height: =App.Height - 100 + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Visible: =CardPopupVisible + Width: =Parent.Width - 100 + X: =50 + Y: =50 + Children: + - PopupGlassmorphismHtml_1: + Control: HtmlViewer@2.1.0 + Properties: + Font: =Font.'Open Sans' + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Width: =Parent.Width + - PopupDataContainer_1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =Parent.Width + Children: + - PopupImage: + Control: Image@2.2.3 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FillPortions: =1 + FocusedBorderThickness: =4 + Height: =Parent.Height + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ImagePopupDisplay + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Set(CardPopupVisible, false) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + - PopupDetailsContainer: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + FillPortions: =2 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Children: + - NamePopupTextCanvas: + Control: Text@0.0.51 + Properties: + AutoHeight: =true + FontColor: =Color.White + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =NamePopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + - Rectangle1: + Control: Rectangle@2.3.0 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledFill: =RGBA(161, 159, 157, 1) + Fill: =RGBA(0, 0, 0, 1) + FocusedBorderThickness: =4 + Height: =2 + HoverFill: =RGBA(0, 120, 212, 1) + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedFill: =RGBA(0, 120, 212, 1) + Width: =Parent.Width + - JobTitlePopupTextCanvas: + Control: Text@0.0.51 + Properties: + AutoHeight: =true + FontColor: =Color.White + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =JobTitlePopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + - BioPopupTextCanvas: + Control: Text@0.0.51 + Properties: + AutoHeight: =true + FontColor: =Color.White + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =BioPopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + - SummaryPopupTextCanvas: + Control: Text@0.0.51 + Properties: + AutoHeight: =true + FontColor: =Color.White + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =SummaryPopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_1_test.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_1_test.pa.yaml new file mode 100644 index 00000000..a6adc131 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_1_test.pa.yaml @@ -0,0 +1,122 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSample1_1_test: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery2_1: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Items: =PeopleGallery + Width: =1310 + X: =48 + Y: =40 + Children: + - GalleryContainer_1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderThickness: =1 + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.Height - 30 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + Y: =4 + Children: + - GalleryImage_1: + Control: Image@2.2.3 + Properties: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + - SummaryLabel_1: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Text: =ThisItem.Summary + Width: =Parent.Width + - NameLabel_1: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_1.Height - Self.Height + - MoreButton_1: + Control: Classic/Button@2.2.0 + Properties: + BorderColor: =RGBA(0, 0, 0, 1) + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Fill: =RGBA(113, 111, 110, 1) + Font: =Font.'Segoe UI' + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + PressedBorderColor: =RGBA(0, 69, 120, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Size: =12 + Text: ="More ⌄" + X: =(GalleryContainer_1.Width - MoreButton_1.Width) / 2 + Y: =GalleryContainer_1.Height - MoreButton_1.Height - 10 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_2.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_2.pa.yaml new file mode 100644 index 00000000..a3f93e85 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_2.pa.yaml @@ -0,0 +1,147 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSample1_2: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery2_2: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =440 + Items: =PeopleGallery + NavigationStep: =0 + OnSelect: |- + =Set( + varSelectedItem, + ThisItem + );Notify("Test") + ShowNavigation: =true + ShowScrollbar: =false + Width: =1310 + X: =40 + Y: =40 + Children: + - GalleryContainer_2: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderThickness: =1 + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + Y: =4 + Children: + - GalleryImage_2: + Control: Image@2.2.3 + Properties: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 //Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_2) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + - SummaryLabel_2: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_2) + Text: =ThisItem.Summary + Width: =Parent.Width + - NameLabel_2: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_2.Height - Self.Height + - MoreInfoContainer_1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + DropShadow: =DropShadow.None + Height: =40 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + LayoutJustifyContent: =LayoutJustifyContent.Center + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =320 + Y: =GalleryContainer_2.Height - Self.Height - 10 + Children: + - TextCanvas1_1: + Control: Text@0.0.51 + Properties: + Align: ='TextCanvas.Align'.End + AutoHeight: =true + FontColor: =RGBA(255, 255, 255, 1) + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =18 + Text: ="More" + - MoreInfoButton_1: + Control: InfoButton@0.0.33 + Properties: + AlignInContainer: =AlignInContainer.Start + Content: =ThisItem.Bio + FontSize: =18 + Height: =30 + Width: =40 + X: = + Y: = diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_3_test.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_3_test.pa.yaml new file mode 100644 index 00000000..20fa3511 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_3_test.pa.yaml @@ -0,0 +1,125 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSample1_3_test: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery2_3: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =453 + Items: =PeopleGallery + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(200, Self.Width - 60), Min(200, Self.Height - 60)) + Width: =1239 + X: =48 + Y: =56 + Children: + - GalleryContainer_3: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderThickness: =1 + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight //Parent.Height - 30 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =200 + Y: =4 + Children: + - GalleryImage_3: + Control: Image@2.2.3 + Properties: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + - SummaryLabel_3: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =10 + Text: =ThisItem.Summary + Width: =Parent.Width + - NameLabel_3: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_3.Height - Self.Height + - MoreButton_2: + Control: Classic/Button@2.2.0 + Properties: + BorderColor: =RGBA(0, 0, 0, 1) + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Fill: =RGBA(113, 111, 110, 1) + Font: =Font.'Segoe UI' + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + PressedBorderColor: =RGBA(0, 69, 120, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Size: =12 + Text: ="More ⌄" + X: =(GalleryContainer_3.Width - MoreButton_2.Width) / 2 + Y: =GalleryContainer_3.Height - MoreButton_2.Height - 10 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_4_nested.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_4_nested.pa.yaml new file mode 100644 index 00000000..ef675063 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSample1_4_nested.pa.yaml @@ -0,0 +1,145 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSample1_4_nested: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery2_4: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =709 + Items: =PeopleSample + NavigationStep: =0 + OnSelect: |- + =Set( + varSelectedItem, + ThisItem + );Notify("Test") + ShowNavigation: =true + ShowScrollbar: =false + Width: =1310 + WrapCount: =2 + X: =40 + Y: =40 + Children: + - GalleryContainer_4: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + BorderThickness: =1 + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + Children: + - GalleryImage_4: + Control: Image@2.2.3 + Properties: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 //Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_4) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + - SummaryLabel_4: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_4) + Text: =ThisItem.Summary + Width: =Parent.Width + - NameLabel_4: + Control: Label@2.5.1 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_4.Height - Self.Height + - MoreInfoContainer_2: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + DropShadow: =DropShadow.None + Height: =60 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + LayoutJustifyContent: =LayoutJustifyContent.Center + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =320 + Y: =GalleryContainer_4.Height - Self.Height - 10 + Children: + - Gallery4: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =Parent.Height + Items: =ThisItem.Roles + ShowNavigation: =true + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(100, Self.Width - 60), Min(100, Self.Height - 60)) + Width: =Parent.Width + Children: + - ButtonCanvas3: + Control: Button@0.0.45 + Properties: + Appearance: ='ButtonCanvas.Appearance'.Outline + FontColor: =RGBA(255, 255, 255, 1) + FontSize: =11 + OnSelect: =Select(Parent) + Text: =ThisItem.Role + Width: =Parent.TemplateWidth diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSampleVisual.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSampleVisual.pa.yaml new file mode 100644 index 00000000..5c348519 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSampleVisual.pa.yaml @@ -0,0 +1,24 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSampleVisual: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - HtmlText1_1: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =454 + HtmlText: "=\"
\n

Plans

\n\n \n \n\n \n
\"" + Width: =756 + X: =32 + Y: =92 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery1.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery1.pa.yaml new file mode 100644 index 00000000..ff9f5a88 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery1.pa.yaml @@ -0,0 +1,40 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSubstitutionGallery1: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery1: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =518 + Items: =SampleVisual + Width: =978 + X: =40 + Y: =40 + Children: + - Container4: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + Height: =Parent.TemplateHeight + Width: =320 + Children: + - HtmlText1_4: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: "=\"
\n

\" & ThisItem.Heading & \"

\n\n \n \n\n \n
\"" + Width: =Parent.Width diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery2.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery2.pa.yaml new file mode 100644 index 00000000..e33e6e0a --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionGallery2.pa.yaml @@ -0,0 +1,46 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSubstitutionGallery2: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Gallery3: + Control: Gallery@2.15.0 + Variant: Horizontal + Properties: + BorderColor: =RGBA(245, 245, 245, 1) + Height: =487 + Items: =SampleVisual + Width: =1042 + X: =40 + Y: =40 + Children: + - Container5_1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =320 + Children: + - HtmlText2_2: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: "=\"\n\n
\n \n
\n\n \n

\" & ThisItem.Heading & \"

\n\n
\nemblem\n
\n\n
\n\n
\n\n
\n
\n\n \n
\n
\n \n\n
\n
\n

\" & ThisItem.SubHeading & \"

\n

\n \" & ThisItem.Item1 & \"
\" & ThisItem.Item2 & \"\n

\n
\n
\n Activate Lumen\n
\n
\n
\n
\n\n\n\n\n\"" + Width: =Parent.Width diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionTest1.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionTest1.pa.yaml new file mode 100644 index 00000000..021a5d7e --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/CardSubstitutionTest1.pa.yaml @@ -0,0 +1,64 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + CardSubstitutionTest1: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Container3: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Height: =467 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =393 + X: =23 + Y: =16 + Children: + - HtmlText1_3: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: "=\"
\n

\" & First(SampleVisual).Heading & \"

\n\n \n \n\n \n
\"" + Width: =Parent.Width + X: =711 + Y: =40 + - Container5: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Height: =459 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =345 + X: =604 + Y: =40 + Children: + - HtmlText2_1: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: "=\"\n\n
\n \n
\n\n \n

\" & First(SampleVisual).Heading & \"

\n\n
\nemblem\n
\n\n
\n\n
\n\n
\n
\n\n \n
\n
\n \n\n
\n
\n

\" & First(SampleVisual).SubHeading & \"

\n

\n \" & First(SampleVisual).Item1 & \"
\" & First(SampleVisual).Item2 & \"\n

\n
\n
\n Activate Lumen\n
\n
\n
\n
\n\n\n\n\n\"" + Width: =Parent.Width + X: =440 + Y: =308 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen1.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen1.pa.yaml new file mode 100644 index 00000000..3ddd45bc --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen1.pa.yaml @@ -0,0 +1,90 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + Screen1: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - ScreenContainer1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Fill: =RGBA(245, 245, 245, 1) + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Stretch + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =16 + PaddingBottom: =16 + PaddingLeft: =16 + PaddingRight: =16 + PaddingTop: =16 + Width: =Parent.Width + Children: + - HeaderContainer1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Fill: =RGBA(255, 255, 255, 1) + FillPortions: =0 + Height: =75 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 + - MainContainer1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Fill: =RGBA(255, 255, 255, 1) + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 + - FooterContainer1: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Fill: =RGBA(255, 255, 255, 1) + FillPortions: =0 + Height: =75 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Horizontal + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen2.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen2.pa.yaml new file mode 100644 index 00000000..7bbe5a23 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen2.pa.yaml @@ -0,0 +1,207 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + Screen2: + Properties: + Fill: =RGBA(255, 255, 255, 1) + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + Children: + - Container1: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + BorderStyle: =BorderStyle.None + DropShadow: =DropShadow.None + Height: =428 + Width: =475 + X: =540 + Y: =40 + Children: + - hmtl_Glassmorphism_1: + Control: HtmlViewer@2.1.0 + Properties: + Font: =Font.'Open Sans' + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Width: =475 + - TextCanvas2: + Control: Text@0.0.51 + Properties: + Height: =153 + Size: =20 + Text: ="Text dsds sdsdsd sdsdsd" + Width: =227 + X: =40 + Y: =40 + - Image1: + Control: Image@2.2.3 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height - 1 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: ='847408384' + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Width: =Parent.Width + Y: =1 + - PopupContainer: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + BorderThickness: =1 + Height: =428 + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Width: =475 + X: =660 + Y: =40 + Children: + - Image1_1: + Control: Image@2.2.3 + Properties: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height - 1 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: ='847408384' + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Visible: =false + Width: =Parent.Width + - TextCanvas2_1: + Control: Text@0.0.51 + Properties: + Height: =153 + Size: =20 + Text: ="Text dsds sdsdsd sdsdsd" + Width: =227 + X: =40 + Y: =40 + - GlassmorphismHtml: + Control: HtmlViewer@2.1.0 + Properties: + Font: =Font.'Open Sans' + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Width: =Parent.Width + - DataContainer: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + Width: =Parent.Width + - HtmlText1: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =469 + HtmlText: "=\"
\n

Plans

\n\n \n \n\n \n
\"" + Width: =416 + Y: =40 + - HtmlText2: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =460 + HtmlText: "=\n\"\n\n\n
\n \n
\n\n
\n\n
\nemblem\n
\n\n
\n\n
\n\n
\n
\n\n \n
\n
\n \n\n
\n
\n

Luminous Design

\n

\n Light Folds Around Form
Revealing Layers Of Depth\n

\n
\n
\n Activate Lumen\n
\n
\n
\n
\n\n\n\n\n\"" + Width: =381 + X: =440 + Y: =308 + - HtmlText3: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =93 + HtmlText: |- + =" + emblem + + " + X: =72 + Y: =604 + - HtmlText4: + Control: HtmlViewer@2.1.0 + Properties: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =160 + HtmlText: |- + =" + emblem + + " + Width: =247 + X: =1051 + Y: =564 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen_Main.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen_Main.pa.yaml new file mode 100644 index 00000000..2820a51e --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/Screen_Main.pa.yaml @@ -0,0 +1,171 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +Screens: + Screen_Main: + Properties: + BackgroundImage: |- + ="data:image/svg+xml;utf8, "&EncodeUrl("") + Fill: =RGBA(0, 0, 0, 1) + ImagePosition: =ImagePosition.Fill + Children: + - ctr_Screen: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + DropShadow: =DropShadow.None + Height: =App.Height + LayoutDirection: =LayoutDirection.Vertical + LayoutJustifyContent: =LayoutJustifyContent.Center + RadiusBottomLeft: =0 + RadiusBottomRight: =0 + RadiusTopLeft: =0 + RadiusTopRight: =0 + Width: =App.Width + Children: + - ctr_Main: + Control: GroupContainer@1.3.0 + Variant: ManualLayout + Properties: + AlignInContainer: =AlignInContainer.Center + DropShadow: =DropShadow.None + FillPortions: =0 + Height: =450 + Width: =600 + Children: + - hmtl_Glassmorphism: + Control: HtmlViewer@2.1.0 + Properties: + Font: =Font.'Open Sans' + Height: =Parent.Height + HtmlText: |- + =" +
+ " + Width: =Parent.Width + - ctr_MainPane: + Control: GroupContainer@1.3.0 + Variant: AutoLayout + Properties: + DropShadow: =DropShadow.None + Height: =Parent.Height + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =8 + PaddingBottom: =32 + PaddingLeft: =32 + PaddingRight: =32 + PaddingTop: =32 + RadiusBottomLeft: =0 + RadiusBottomRight: =0 + RadiusTopLeft: =0 + RadiusTopRight: =0 + Width: =Parent.Width + Children: + - txt_Header: + Control: Text@0.0.51 + Properties: + AlignInContainer: =AlignInContainer.Stretch + FontColor: =RGBA(255, 255, 255, 1) + Height: =80 + Size: =32 + Text: ="Your Details" + VerticalAlign: =VerticalAlign.Top + Weight: ='TextCanvas.Weight'.Semibold + - lbl_Name: + Control: Text@0.0.51 + Properties: + AlignInContainer: =AlignInContainer.Stretch + FontColor: =RGBA(255, 255, 255, 1) + Size: =22 + Text: ="Name" + Weight: ='TextCanvas.Weight'.Semibold + - txt_Name: + Control: TextInput@0.0.54 + Properties: + AlignInContainer: =AlignInContainer.Stretch + Height: =40 + - lbl_JobTitle: + Control: Text@0.0.51 + Properties: + AlignInContainer: =AlignInContainer.Stretch + FontColor: =RGBA(255, 255, 255, 1) + Size: =22 + Text: ="Job Title" + Weight: ='TextCanvas.Weight'.Semibold + - txt_JobTitle: + Control: TextInput@0.0.54 + Properties: + AlignInContainer: =AlignInContainer.Stretch + Height: =40 + - lbl_Email: + Control: Text@0.0.51 + Properties: + AlignInContainer: =AlignInContainer.Stretch + FontColor: =RGBA(255, 255, 255, 1) + Size: =22 + Text: ="Contact Email" + Weight: ='TextCanvas.Weight'.Semibold + - txt_Email: + Control: TextInput@0.0.54 + Properties: + AlignInContainer: =AlignInContainer.Stretch + Height: =40 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/_EditorState.pa.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/_EditorState.pa.yaml new file mode 100644 index 00000000..c595afde --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Other/Src/_EditorState.pa.yaml @@ -0,0 +1,23 @@ +# ************************************************************************************************ +# Warning: YAML source code for Canvas Apps should only be used to review changes made within Power Apps Studio and for minor edits (Preview). +# Use the maker portal to create and edit your Power Apps. +# +# The schema file for Canvas Apps is available at https://go.microsoft.com/fwlink/?linkid=2304907 +# +# For more information, visit https://go.microsoft.com/fwlink/?linkid=2292623 +# ************************************************************************************************ +EditorState: + ScreensOrder: + - Screen1 + - CardSample1 + - CardSample1_2 + - CardSampleVisual + - CardSample1_1_test + - CardSample1_3_test + - CardSample1_4_nested + - Screen2 + - Screen_Main + - CardPopoutSample + - CardSubstitutionTest1 + - CardSubstitutionGallery1 + - CardSubstitutionGallery2 diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/App.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/App.fx.yaml new file mode 100644 index 00000000..6010c028 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/App.fx.yaml @@ -0,0 +1,416 @@ +App As appinfo: + BackEnabled: =true + Formulas: = + OnStart: |+ + =ClearCollect( + PeopleGallery, + { + Name: "Aaliyah Clarke", + JobTitle: "Event Producer", + Bio: "Aaliyah has produced over 200 cultural events across the Caribbean, blending logistics with creative storytelling. She specializes in artist-led programming and community engagement.", + Summary: "Cultural event producer focused on artist-led programming.", + Img: Face1 + }, + { + Name: "Jamal Browne", + JobTitle: "Digital Strategist", + Bio: "Jamal designs digital ecosystems for Caribbean startups, integrating branding, UX, and monetization strategies. He’s known for his bold, abstract visual language.", + Summary: "Digital strategist for Caribbean startups.", + Img: Face2 + }, + { + Name: "Sasha Griffith", + JobTitle: "Visual Archivist", + Bio: "Sasha curates and tags visual IP libraries for editorial and commercial use. Her work preserves cultural memory through metadata and licensing frameworks.", + Summary: "Curator of visual IP and metadata systems.", + Img: Face3 + }, + { + Name: "Julie Jordan", + JobTitle: "UX Researcher", + Bio: "Julie conducts field research across Barbados to refine accessibility and user flows in mobile platforms. He bridges technical logic with lived experience.", + Summary: "UX researcher focused on accessibility and local context.", + Img: Face4 + }, + { + Name: "Tanya Roach", + JobTitle: "Brand Consultant", + Bio: "Tanya helps Caribbean artists and entrepreneurs define their brand voice through editorial design and strategic messaging. Her work is rooted in cultural fluency.", + Summary: "Brand consultant for artists and entrepreneurs.", + Img: Face5 + }, + { + Name: "Darius King", + JobTitle: "Platform Architect", + Bio: "Darius builds scalable media platforms that connect sponsors, artists, and audiences. He specializes in schema design and onboarding logic.", + Summary: "Architect of scalable media platforms.", + Img: Face6 + }, + { + Name: "David Forde", + JobTitle: "Creative Director", + Bio: "David leads multidisciplinary teams to produce editorial campaigns that celebrate Caribbean abstraction. He merges fashion, folklore, and futurism.", + Summary: "Creative director blending fashion and folklore.", + Img: Face7 + }, + { + Name: "Linda Alleyne", + JobTitle: "Data Modeler", + Bio: "Linda troubleshoots Dataverse schema issues and formats calculated columns for clean presentation. She’s known for her precision and logic.", + Summary: "Dataverse expert focused on schema integrity.", + Img: Face8 + }, + { + Name: "Rhea Sobers", + JobTitle: "Cultural Critic", + Bio: "Rhea writes and speaks on Caribbean identity, abstraction, and epistemic sabotage. Her essays challenge conventional design norms.", + Summary: "Writer exploring Caribbean abstraction and critique.", + Img: Face9 + }, + { + Name: "Andre Callender", + JobTitle: "Sponsor Liaison", + Bio: "Andre builds bridges between corporate sponsors and creative communities. He crafts pitch decks and onboarding flows that align business goals with cultural impact.", + Summary: "Connector between sponsors and creatives.", + Img: Face10 + }, + { + Name: "John Springer", + JobTitle: "Editorial Designer", + Bio: "John designs magazine identities and layout systems that reflect Caribbean exuberance. His work balances clarity, abstraction, and rhythm.", + Summary: "Editorial designer of Caribbean publications.", + Img: Face11 + }, + { + Name: "Nathaniel Hoyte", + JobTitle: "Photographer", + Bio: "Nathaniel documents weddings, festivals, and speculative fiction scenes with a cinematic eye. He builds shot lists that evoke emotion and narrative.", + Summary: "Photographer blending culture and fiction.", + Img: Face12 + }, + { + Name: "Pete Mayers", + JobTitle: "Licensing Strategist", + Bio: "Pete structures licensing deals for visual IP across editorial, commercial, and platform contexts. He ensures artists retain control and value.", + Summary: "Strategist for visual IP licensing.", + Img: Face13 + }, + { + Name: "Omar Best", + JobTitle: "App Prototyper", + Bio: "Omar rapidly prototypes Power Apps interfaces for artist onboarding and sponsor engagement. He’s known for his iterative logic and clean UI.", + Summary: "Power Apps prototyper for creative platforms.", + Img: Face14 + }, + { + Name: "Luke Thomas", + JobTitle: "Narrative Designer", + Bio: "Luke crafts speculative fiction worlds rooted in Caribbean myth and lost archives. His work spans prose, visual layouts, and interactive media.", + Summary: "Designer of Caribbean speculative fiction worlds.", + Img: Face15 + }, + { + Name: "Trevor Gaskin", + JobTitle: "Media Curator", + Bio: "Trevor curates homepage visuals and media layouts for entertainment platforms. He balances sponsor visibility with cultural storytelling.", + Summary: "Curator of media layouts and sponsor visuals.", + Img: Face16 + }, + { + Name: "Nick Prescott", + JobTitle: "Accessibility Advocate", + Bio: "Nick audits customer-facing apps for accessibility and inclusion. He champions design systems that reflect diverse user needs.", + Summary: "Advocate for inclusive design systems.", + Img: Face17 + }, + { + Name: "Jared Walcott", + JobTitle: "Strategic Analyst", + Bio: "Jared refines business models and pricing logic for Barbados-based platforms. He aligns creative ambition with market realities.", + Summary: "Analyst aligning creativity with market logic.", + Img: Face18 + }, + { + Name: "Roger Beckles", + JobTitle: "Metadata Engineer", + Bio: "Roger builds tagging workflows for RAW files and visual assets. His systems support licensing, discovery, and editorial reuse.", + Summary: "Engineer of metadata systems for visual IP.", + Img: Face19 + } + ); + + ClearCollect(SampleVisual, + { + Heading: "Plans", + SubHeading: "Starter", + AmountValue: "19", + Item1: "Feature one", + Item2: "Feature two", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Medium", + AmountValue: "39", + Item1: "Feature three", + Item2: "Feature four", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + }, + { + Heading: "Plans", + SubHeading: "Advanced", + AmountValue: "45", + Item1: "Feature five", + Item2: "Feature six", + Symbol1: "✓", + Symbol2: "×", + ItemLabel: "Choose" + } + ); + + + ClearCollect( + PeopleSample, + { + Name: "Aaliyah Clarke", + JobTitle: "Event Producer", + Bio: "Aaliyah has produced over 200 cultural events across the Caribbean, blending logistics with creative storytelling. She specializes in artist-led programming and community engagement.", + Summary: "Cultural event producer focused on artist-led programming.", + Img: Face1, + Roles: Table( + { Role: "Producer", Area: "Events", Level: "Senior" }, + { Role: "Logistics Lead", Area: "Operations", Level: "Mid" }, + { Role: "Community Liaison", Area: "Programming", Level: "Mid" } + ) + }, + { + Name: "Jamal Browne", + JobTitle: "Digital Strategist", + Bio: "Jamal designs digital ecosystems for Caribbean startups, integrating branding, UX, and monetization strategies. He’s known for his bold, abstract visual language.", + Summary: "Digital strategist for Caribbean startups.", + Img: Face2, + Roles: Table( + { Role: "Strategy Lead", Area: "Growth", Level: "Senior" }, + { Role: "UX Partner", Area: "Product", Level: "Mid" }, + { Role: "Monetization Analyst", Area: "Business", Level: "Mid" } + ) + }, + { + Name: "Sasha Griffith", + JobTitle: "Visual Archivist", + Bio: "Sasha curates and tags visual IP libraries for editorial and commercial use. Her work preserves cultural memory through metadata and licensing frameworks.", + Summary: "Curator of visual IP and metadata systems.", + Img: Face3, + Roles: Table( + { Role: "Archivist", Area: "Libraries", Level: "Senior" }, + { Role: "Metadata Tagger", Area: "Cataloging", Level: "Mid" }, + { Role: "Licensing Coordinator", Area: "Rights", Level: "Associate" } + ) + }, + { + Name: "Julie Jordan", + JobTitle: "UX Researcher", + Bio: "Julie conducts field research across Barbados to refine accessibility and user flows in mobile platforms. He bridges technical logic with lived experience.", + Summary: "UX researcher focused on accessibility and local context.", + Img: Face4, + Roles: Table( + { Role: "Field Researcher", Area: "Accessibility", Level: "Mid" }, + { Role: "Usability Tester", Area: "Mobile UX", Level: "Associate" }, + { Role: "Insights Synthesizer", Area: "Product", Level: "Mid" } + ) + }, + { + Name: "Tanya Roach", + JobTitle: "Brand Consultant", + Bio: "Tanya helps Caribbean artists and entrepreneurs define their brand voice through editorial design and strategic messaging. Her work is rooted in cultural fluency.", + Summary: "Brand consultant for artists and entrepreneurs.", + Img: Face5, + Roles: Table( + { Role: "Brand Strategist", Area: "Positioning", Level: "Senior" }, + { Role: "Messaging Lead", Area: "Editorial", Level: "Mid" }, + { Role: "Identity Reviewer", Area: "Design", Level: "Associate" } + ) + }, + { + Name: "Darius King", + JobTitle: "Platform Architect", + Bio: "Darius builds scalable media platforms that connect sponsors, artists, and audiences. He specializes in schema design and onboarding logic.", + Summary: "Architect of scalable media platforms.", + Img: Face6, + Roles: Table( + { Role: "Schema Designer", Area: "Dataverse", Level: "Senior" }, + { Role: "Onboarding Architect", Area: "Flows", Level: "Mid" }, + { Role: "Integration Reviewer", Area: "APIs", Level: "Mid" } + ) + }, + { + Name: "David Forde", + JobTitle: "Creative Director", + Bio: "David leads multidisciplinary teams to produce editorial campaigns that celebrate Caribbean abstraction. He merges fashion, folklore, and futurism.", + Summary: "Creative director blending fashion and folklore.", + Img: Face7, + Roles: Table( + { Role: "Campaign Director", Area: "Editorial", Level: "Senior" }, + { Role: "Art Lead", Area: "Visuals", Level: "Senior" }, + { Role: "Narrative Reviewer", Area: "Story", Level: "Mid" } + ) + }, + { + Name: "Linda Alleyne", + JobTitle: "Data Modeler", + Bio: "Linda troubleshoots Dataverse schema issues and formats calculated columns for clean presentation. She’s known for her precision and logic.", + Summary: "Dataverse expert focused on schema integrity.", + Img: Face8, + Roles: Table( + { Role: "Data Modeler", Area: "Schema", Level: "Senior" }, + { Role: "Calculated Columns", Area: "Formatting", Level: "Mid" }, + { Role: "Validation Reviewer", Area: "Integrity", Level: "Associate" } + ) + }, + { + Name: "Rhea Sobers", + JobTitle: "Cultural Critic", + Bio: "Rhea writes and speaks on Caribbean identity, abstraction, and epistemic sabotage. Her essays challenge conventional design norms.", + Summary: "Writer exploring Caribbean abstraction and critique.", + Img: Face9, + Roles: Table( + { Role: "Essayist", Area: "Editorial", Level: "Senior" }, + { Role: "Panelist", Area: "Public Discourse", Level: "Mid" }, + { Role: "Research Contributor", Area: "Culture", Level: "Associate" } + ) + }, + { + Name: "Andre Callender", + JobTitle: "Sponsor Liaison", + Bio: "Andre builds bridges between corporate sponsors and creative communities. He crafts pitch decks and onboarding flows that align business goals with cultural impact.", + Summary: "Connector between sponsors and creatives.", + Img: Face10, + Roles: Table( + { Role: "Partnerships", Area: "Sponsors", Level: "Senior" }, + { Role: "Pitch Designer", Area: "Decks", Level: "Mid" }, + { Role: "Onboarding Coordinator", Area: "Flows", Level: "Associate" } + ) + }, + { + Name: "John Springer", + JobTitle: "Editorial Designer", + Bio: "John designs magazine identities and layout systems that reflect Caribbean exuberance. His work balances clarity, abstraction, and rhythm.", + Summary: "Editorial designer of Caribbean publications.", + Img: Face11, + Roles: Table( + { Role: "Layout Designer", Area: "Editorial", Level: "Senior" }, + { Role: "Identity Systems", Area: "Design", Level: "Mid" }, + { Role: "Typography Reviewer", Area: "Visuals", Level: "Associate" } + ) + }, + { + Name: "Nathaniel Hoyte", + JobTitle: "Photographer", + Bio: "Nathaniel documents weddings, festivals, and speculative fiction scenes with a cinematic eye. He builds shot lists that evoke emotion and narrative.", + Summary: "Photographer blending culture and fiction.", + Img: Face12, + Roles: Table( + { Role: "Lead Photographer", Area: "Editorial", Level: "Senior" }, + { Role: "Cinematic Shooter", Area: "Campaigns", Level: "Mid" }, + { Role: "Shot List Curator", Area: "Planning", Level: "Associate" } + ) + }, + { + Name: "Pete Mayers", + JobTitle: "Licensing Strategist", + Bio: "Pete structures licensing deals for visual IP across editorial, commercial, and platform contexts. He ensures artists retain control and value.", + Summary: "Strategist for visual IP licensing.", + Img: Face13, + Roles: Table( + { Role: "Licensing Lead", Area: "IP", Level: "Senior" }, + { Role: "Contract Reviewer", Area: "Legal", Level: "Mid" }, + { Role: "Rights Manager", Area: "Editorial", Level: "Associate" } + ) + }, + { + Name: "Omar Best", + JobTitle: "App Prototyper", + Bio: "Omar rapidly prototypes Power Apps interfaces for artist onboarding and sponsor engagement. He’s known for his iterative logic and clean UI.", + Summary: "Power Apps prototyper for creative platforms.", + Img: Face14, + Roles: Table( + { Role: "Prototype Builder", Area: "Power Apps", Level: "Senior" }, + { Role: "UI Implementer", Area: "Design", Level: "Mid" }, + { Role: "Flow Integrator", Area: "Automation", Level: "Associate" } + ) + }, + { + Name: "Luke Thomas", + JobTitle: "Narrative Designer", + Bio: "Luke crafts speculative fiction worlds rooted in Caribbean myth and lost archives. His work spans prose, visual layouts, and interactive media.", + Summary: "Designer of Caribbean speculative fiction worlds.", + Img: Face15, + Roles: Table( + { Role: "World Builder", Area: "Story", Level: "Senior" }, + { Role: "Layout Narrator", Area: "Visuals", Level: "Mid" }, + { Role: "Interactive Author", Area: "Media", Level: "Associate" } + ) + }, + { + Name: "Trevor Gaskin", + JobTitle: "Media Curator", + Bio: "Trevor curates homepage visuals and media layouts for entertainment platforms. He balances sponsor visibility with cultural storytelling.", + Summary: "Curator of media layouts and sponsor visuals.", + Img: Face16, + Roles: Table( + { Role: "Homepage Curator", Area: "Media", Level: "Senior" }, + { Role: "Sponsor Balancer", Area: "UX", Level: "Mid" }, + { Role: "Editorial Assembler", Area: "Content", Level: "Associate" } + ) + }, + { + Name: "Nick Prescott", + JobTitle: "Accessibility Advocate", + Bio: "Nick audits customer-facing apps for accessibility and inclusion. He champions design systems that reflect diverse user needs.", + Summary: "Advocate for inclusive design systems.", + Img: Face17, + Roles: Table( + { Role: "Accessibility Auditor", Area: "UX", Level: "Senior" }, + { Role: "Inclusive Design", Area: "Systems", Level: "Mid" }, + { Role: "WCAG Reviewer", Area: "Standards", Level: "Associate" } + ) + }, + { + Name: "Jared Walcott", + JobTitle: "Strategic Analyst", + Bio: "Jared refines business models and pricing logic for Barbados-based platforms. He aligns creative ambition with market realities.", + Summary: "Analyst aligning creativity with market logic.", + Img: Face18, + Roles: Table( + { Role: "Modeling Analyst", Area: "Finance", Level: "Senior" }, + { Role: "Pricing Strategist", Area: "Growth", Level: "Mid" }, + { Role: "Market Researcher", Area: "Insights", Level: "Associate" } + ) + }, + { + Name: "Roger Beckles", + JobTitle: "Metadata Engineer", + Bio: "Roger builds tagging workflows for RAW files and visual assets. His systems support licensing, discovery, and editorial reuse.", + Summary: "Engineer of metadata systems for visual IP.", + Img: Face19, + Roles: Table( + { Role: "Tagging Engineer", Area: "Assets", Level: "Senior" }, + { Role: "Workflow Designer", Area: "Pipelines", Level: "Mid" }, + { Role: "Discovery Ops", Area: "Editorial", Level: "Associate" } + ) + } + ); + + Theme: =Blank + + Host As hostControl.DefaultHostControlVariant: + OnCancel: =false + OnEdit: =false + OnNew: =false + OnSave: =false + OnView: =false + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardPopoutSample.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardPopoutSample.fx.yaml new file mode 100644 index 00000000..c7a2d3fd --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardPopoutSample.fx.yaml @@ -0,0 +1,145 @@ +CardPopoutSample As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Container2 As groupContainer.manualLayoutContainer: + DropShadow: =DropShadow.Light + Height: =453 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =512 + X: =40 + Y: =40 + ZIndex: =1 + + Timer1 As timer: + BorderColor: =RGBA(0, 120, 212, 1) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(242, 242, 241, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Duration: =1000 + Fill: =RGBA(0, 120, 212, 1) + Font: =Font.'Segoe UI' + Height: =23 + HoverBorderColor: =RGBA(16, 110, 190, 1) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + OnTimerStart: | + =//UpdateContext( {InitialX: (Parent.Height - SampleCardImage.Height) / 2}); + //UpdateContext( {InitialY: (Parent.Width - SampleCardImage.Width) / 2}); + //UpdateContext( {InitialImageHeight: Parent.Height - 100}); + //UpdateContext( {InitialImageWidth: Parent.Width - 100}); + + //animate the title button to slide out to a maximum position + PressedBorderColor: =RGBA(16, 110, 190, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + Start: =TimerGo + Width: =93 + ZIndex: =1 + + TitleButton As Button: + BasePaletteColor: = + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + BorderStyle: =BorderStyle.Solid + BorderThickness: =1 + DisplayMode: =DisplayMode.Edit + FontColor: = + Height: =PopupButtonHeight + IconStyle: ="Outline" + Text: ="Title" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonTitleY + ZIndex: =2 + + BioButton As Button: + BasePaletteColor: = + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + DisplayMode: =DisplayMode.Edit + FontColor: = + Height: =PopupButtonHeight + Text: ="Bio" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonBioY + ZIndex: =3 + + SummaryButton As Button: + BasePaletteColor: = + BorderColor: =RGBA(40, 134, 222, 1) + BorderRadiusBottomRight: =PopupButtonRadius + BorderRadiusTopRight: =PopupButtonRadius + DisplayMode: =DisplayMode.Edit + FontColor: = + Height: =PopupButtonHeight + Text: ="Summary" + Width: =PopupButtonWidth + X: =SampleCardImage.X + SampleCardImage.Width - Self.Width + ((Timer1.Value / Timer1.Duration) * Self.Width) + Y: =PopupButtonSummaryY + ZIndex: =4 + + ButtonCanvas2 As Button: + BasePaletteColor: = + BorderColor: = + DisplayMode: =DisplayMode.Edit + FontColor: = + Height: =32 + OnSelect: | + =//UpdateContext( {InitialX: (Parent.Height - SampleCardImage.Height) / 2}); + //UpdateContext( {InitialY: (Parent.Width - SampleCardImage.Width) / 2}); + //UpdateContext( {InitialImageHeight: Parent.Height - 100}); + //UpdateContext( {InitialImageWidth: Parent.Width - 100}); + + UpdateContext({TimerGo: false}); + + + Set( InitialImageHeight, Parent.Height - 150); + Set( InitialImageWidth, Parent.Width - 150); + Set( InitialX, (Parent.Height - SampleCardImage.Height) / 2 - 20); + Set( InitialY, (Parent.Width - SampleCardImage.Width) / 2); + + Set(PopupButtonRadius, 45); + Set(PopupButtonWidth, Parent.Width - SampleCardImage.Width - SampleCardImage.X); + Set(PopupButtonHeight, SampleCardImage.Height/7); + Set(PopupButtonStartY, SampleCardImage.Y + SampleCardImage.Height); + + Set(PopupButtonSummaryY, PopupButtonStartY - SummaryButton.Height - 5); + Set(PopupButtonBioY, PopupButtonSummaryY - BioButton.Height - 5); + Set(PopupButtonTitleY, PopupButtonBioY - TitleButton.Height - 5); + + + Set(TitleButtonX, SampleCardImage.X + SampleCardImage.Width - 1); + + UpdateContext({TimerGo: true}); + Width: =96 + X: =0 + Y: =23 + ZIndex: =5 + + SampleCardImage As image: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =InitialImageHeight + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =Face1 + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Transparency: = + Width: =InitialImageWidth + X: =InitialX + Y: =InitialY + ZIndex: =6 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1.fx.yaml new file mode 100644 index 00000000..ea397f3f --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1.fx.yaml @@ -0,0 +1,333 @@ +CardSample1 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery2 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =628 + Items: =PeopleGallery + LoadingSpinner: =LoadingSpinner.Data + NavigationStep: =0 + OnSelect: =Set(varSelectedItem,ThisItem); + ShowNavigation: =true + ShowScrollbar: =false + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(200, Self.Width - 60), Min(200, Self.Height - 60)) + Width: =1310 + WrapCount: =2 + X: =40 + ZIndex: =1 + + GalleryContainer As groupContainer.verticalAutoLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =200 + Y: =4 + ZIndex: =2 + + GalleryImage As image: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + ZIndex: =1 + + SummaryLabel As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + Height: =50 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2) + Size: =10 + Text: =ThisItem.Summary + Width: =Parent.Width + ZIndex: =2 + + NameLabel As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage.Height - Self.Height + ZIndex: =3 + + MoreInfoContainer As groupContainer.verticalAutoLayoutContainer: + BorderStyle: =BorderStyle.None + Height: =40 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutJustifyContent: =LayoutJustifyContent.Center + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =200 + Y: =GalleryContainer.Height - Self.Height - 10 + ZIndex: =4 + + ButtonCanvas1 As Button: + Appearance: ='ButtonCanvas.Appearance'.Secondary + BasePaletteColor: = + BorderColor: = + BorderRadius: =45 + DisplayMode: =DisplayMode.Edit + FontColor: = + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: |- + =Set(ImagePopupDisplay, ThisItem.Img); + Set(NamePopupDisplay, ThisItem.Name); + Set(JobTitlePopupDisplay, ThisItem.JobTitle); + Set(BioPopupDisplay, ThisItem.Bio); + Set(SummaryPopupDisplay, ThisItem.Summary); + + Set(CardPopupVisible, true) + Text: ="More" + Width: =96 + X: =0 + Y: =0 + ZIndex: =3 + + CardPopupContainer_1 As groupContainer.manualLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Height: =App.Height - 100 + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Visible: =CardPopupVisible + Width: =Parent.Width - 100 + X: =50 + Y: =50 + ZIndex: =2 + + PopupGlassmorphismHtml_1 As htmlViewer: + DisabledBorderColor: =RGBA(166, 166, 166, 1) + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Size: =13 + Width: =Parent.Width + ZIndex: =1 + + PopupDataContainer_1 As groupContainer.horizontalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Center + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =Parent.Width + ZIndex: =2 + + PopupImage As image: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FillPortions: =1 + FocusedBorderThickness: =4 + Height: =Parent.Height + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ImagePopupDisplay + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Set(CardPopupVisible, false) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + ZIndex: =1 + + PopupDetailsContainer As groupContainer.horizontalAutoLayoutContainer: + DropShadow: =DropShadow.Light + FillPortions: =2 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + ZIndex: =2 + + NamePopupTextCanvas As Text: + AutoHeight: =true + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: =Color.White + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PaddingBottom: = + Size: =30 + Text: =NamePopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + X: =0 + Y: =0 + ZIndex: =1 + + Rectangle1 As rectangle: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledFill: =RGBA(161, 159, 157, 1) + Fill: =RGBA(0, 0, 0, 1) + FocusedBorderThickness: =4 + Height: =2 + HoverFill: =RGBA(0, 120, 212, 1) + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedFill: =RGBA(0, 120, 212, 1) + Width: =Parent.Width + ZIndex: =2 + + JobTitlePopupTextCanvas As Text: + AutoHeight: =true + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: =Color.White + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =JobTitlePopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + X: =0 + Y: =0 + ZIndex: =3 + + BioPopupTextCanvas As Text: + AutoHeight: =true + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: =Color.White + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =BioPopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + Wrap: =true + X: =0 + Y: =0 + ZIndex: =4 + + SummaryPopupTextCanvas As Text: + AutoHeight: =true + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: =Color.White + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =30 + Text: =SummaryPopupDisplay + Weight: ="Bold" + Width: =Parent.Width - 10 + X: =0 + Y: =0 + ZIndex: =5 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_1_test.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_1_test.fx.yaml new file mode 100644 index 00000000..e85fad77 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_1_test.fx.yaml @@ -0,0 +1,113 @@ +CardSample1_1_test As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery2_1 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Items: =PeopleGallery + LoadingSpinner: =LoadingSpinner.Data + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60)) + Width: =1310 + X: =48 + Y: =40 + ZIndex: =1 + + GalleryContainer_1 As groupContainer.verticalAutoLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.Height - 30 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + Y: =4 + ZIndex: =1 + + GalleryImage_1 As image: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + ZIndex: =2 + + SummaryLabel_1 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =13 + Text: =ThisItem.Summary + Width: =Parent.Width + ZIndex: =3 + + NameLabel_1 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_1.Height - Self.Height + ZIndex: =4 + + MoreButton_1 As button: + BorderColor: =RGBA(0, 0, 0, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Fill: =RGBA(113, 111, 110, 1) + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Semibold + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + PressedBorderColor: =RGBA(0, 69, 120, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Size: =12 + Text: ="More ⌄" + X: =(GalleryContainer_1.Width - MoreButton_1.Width) / 2 + Y: =GalleryContainer_1.Height - MoreButton_1.Height - 10 + ZIndex: =5 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_2.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_2.fx.yaml new file mode 100644 index 00000000..89886f8e --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_2.fx.yaml @@ -0,0 +1,166 @@ +CardSample1_2 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery2_2 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =440 + Items: =PeopleGallery + LoadingSpinner: =LoadingSpinner.Data + NavigationStep: =0 + OnSelect: |- + =Set( + varSelectedItem, + ThisItem + );Notify("Test") + ShowNavigation: =true + ShowScrollbar: =false + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60)) + Width: =1310 + X: =40 + Y: =40 + ZIndex: =1 + + GalleryContainer_2 As groupContainer.verticalAutoLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + Y: =4 + ZIndex: =1 + + GalleryImage_2 As image: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 //Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_2) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + ZIndex: =2 + + SummaryLabel_2 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_2) + Size: =13 + Text: =ThisItem.Summary + Width: =Parent.Width + ZIndex: =3 + + NameLabel_2 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_2.Height - Self.Height + ZIndex: =4 + + MoreInfoContainer_1 As groupContainer.verticalAutoLayoutContainer: + Height: =40 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutJustifyContent: =LayoutJustifyContent.Center + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =320 + Y: =GalleryContainer_2.Height - Self.Height - 10 + ZIndex: =5 + + TextCanvas1_1 As Text: + Align: ='TextCanvas.Align'.End + AutoHeight: =true + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: =RGBA(255, 255, 255, 1) + Height: =32 + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =18 + Text: ="More" + Width: =96 + X: =0 + Y: =0 + ZIndex: =6 + + "MoreInfoButton_1 As 'Information button'": + AcceptsFocus: =true + AccessibleLabel: ="" + AlignInContainer: =AlignInContainer.Start + BasePaletteColor: = + Content: =ThisItem.Bio + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Font: ="" + FontColor: = + FontItalic: =false + FontSize: =18 + FontStrikethrough: =false + FontUnderline: =false + FontWeight: ="" + Height: =30 + IconColor: = + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =32 + OnSelect: =false + TabIndex: =0 + Tooltip: ="" + Visible: =true + Width: =40 + X: = + Y: = + ZIndex: =7 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_3_test.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_3_test.fx.yaml new file mode 100644 index 00000000..643e9af4 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_3_test.fx.yaml @@ -0,0 +1,114 @@ +CardSample1_3_test As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery2_3 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =453 + Items: =PeopleGallery + LoadingSpinner: =LoadingSpinner.Data + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(200, Self.Width - 60), Min(200, Self.Height - 60)) + Width: =1239 + X: =48 + Y: =56 + ZIndex: =1 + + GalleryContainer_3 As groupContainer.verticalAutoLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight //Parent.Height - 30 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =200 + Y: =4 + ZIndex: =1 + + GalleryImage_3 As image: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + ZIndex: =2 + + SummaryLabel_3 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + Size: =10 + Text: =ThisItem.Summary + Width: =Parent.Width + ZIndex: =3 + + NameLabel_3 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_3.Height - Self.Height + ZIndex: =4 + + MoreButton_2 As button: + BorderColor: =RGBA(0, 0, 0, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + DisabledFill: =RGBA(242, 242, 241, 0) + Fill: =RGBA(113, 111, 110, 1) + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Semibold + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverColor: =RGBA(255, 255, 255, 1) + HoverFill: =RGBA(16, 110, 190, 1) + PressedBorderColor: =RGBA(0, 69, 120, 1) + PressedColor: =RGBA(255, 255, 255, 1) + PressedFill: =RGBA(16, 110, 190, 1) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Size: =12 + Text: ="More ⌄" + X: =(GalleryContainer_3.Width - MoreButton_2.Width) / 2 + Y: =GalleryContainer_3.Height - MoreButton_2.Height - 10 + ZIndex: =5 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_4_nested.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_4_nested.fx.yaml new file mode 100644 index 00000000..d3b33ba6 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSample1_4_nested.fx.yaml @@ -0,0 +1,148 @@ +CardSample1_4_nested As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery2_4 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =709 + Items: =PeopleSample + LoadingSpinner: =LoadingSpinner.Data + NavigationStep: =0 + OnSelect: |- + =Set( + varSelectedItem, + ThisItem + );Notify("Test") + ShowNavigation: =true + ShowScrollbar: =false + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60)) + Width: =1310 + WrapCount: =2 + X: =40 + Y: =40 + ZIndex: =1 + + GalleryContainer_4 As groupContainer.verticalAutoLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Fill: =RGBA(113, 111, 110, 1) + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =5 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + RadiusBottomLeft: =20 + RadiusBottomRight: =20 + RadiusTopLeft: =20 + RadiusTopRight: =20 + Width: =320 + ZIndex: =1 + + GalleryImage_4 As image: + AlignInContainer: =AlignInContainer.Center + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height*2/3 //Parent.Width*5/4 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: =ThisItem.Img + ImagePosition: =ImagePosition.Fill + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_4) + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + Width: =Parent.Width + ZIndex: =2 + + SummaryLabel_4 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + OnSelect: =Select(Gallery2_4) + Size: =13 + Text: =ThisItem.Summary + Width: =Parent.Width + ZIndex: =3 + + NameLabel_4 As label: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + Color: =RGBA(255, 255, 255, 1) + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledColor: =RGBA(161, 159, 157, 1) + FocusedBorderThickness: =4 + Font: =Font.'Segoe UI' + FontWeight: =FontWeight.Bold + Size: =15 + Text: =ThisItem.Name + X: =10 + Y: =GalleryImage_4.Height - Self.Height + ZIndex: =4 + + MoreInfoContainer_2 As groupContainer.verticalAutoLayoutContainer: + Height: =60 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutJustifyContent: =LayoutJustifyContent.Center + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =320 + Y: =GalleryContainer_4.Height - Self.Height - 10 + ZIndex: =5 + + Gallery4 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =Parent.Height + Items: =ThisItem.Roles + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =287 + LayoutMinWidth: =320 + LoadingSpinner: =LoadingSpinner.Data + ShowNavigation: =true + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(100, Self.Width - 60), Min(100, Self.Height - 60)) + Width: =Parent.Width + ZIndex: =1 + + ButtonCanvas3 As Button: + Appearance: ='ButtonCanvas.Appearance'.Outline + BasePaletteColor: = + BorderColor: = + DisplayMode: =DisplayMode.Edit + FontColor: =RGBA(255, 255, 255, 1) + FontSize: =11 + FontStrikethrough: =false + Height: =32 + OnSelect: =Select(Parent) + Text: =ThisItem.Role + Width: =Parent.TemplateWidth + X: =0 + Y: =0 + ZIndex: =1 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSampleVisual.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSampleVisual.fx.yaml new file mode 100644 index 00000000..59d1e099 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSampleVisual.fx.yaml @@ -0,0 +1,105 @@ +CardSampleVisual As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + HtmlText1_1 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =454 + HtmlText: |- + ="
+

Plans

+ + + + + +
" + Size: =13 + Width: =756 + X: =32 + Y: =92 + ZIndex: =1 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery1.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery1.fx.yaml new file mode 100644 index 00000000..5b4177f3 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery1.fx.yaml @@ -0,0 +1,126 @@ +CardSubstitutionGallery1 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery1 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =518 + Items: =SampleVisual + LoadingSpinner: =LoadingSpinner.Data + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60)) + Width: =978 + X: =40 + Y: =40 + ZIndex: =1 + + Container4 As groupContainer.manualLayoutContainer: + DropShadow: =DropShadow.Light + Height: =Parent.TemplateHeight + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =320 + ZIndex: =1 + + HtmlText1_4 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: |- + ="
+

" & ThisItem.Heading & "

+ + + + + +
" + Size: =13 + Width: =Parent.Width + ZIndex: =2 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery2.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery2.fx.yaml new file mode 100644 index 00000000..01fbbae7 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionGallery2.fx.yaml @@ -0,0 +1,139 @@ +CardSubstitutionGallery2 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Gallery3 As gallery.galleryHorizontal: + BorderColor: =RGBA(245, 245, 245, 1) + DelayItemLoading: =true + Height: =487 + Items: =SampleVisual + LoadingSpinner: =LoadingSpinner.Data + TemplateSize: =If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60)) + Width: =1042 + X: =40 + Y: =40 + ZIndex: =1 + + Container5_1 As groupContainer.horizontalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Height: =Parent.TemplateHeight + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =320 + ZIndex: =2 + + HtmlText2_2 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: |- + =" + +
+ +
+ + +

" & ThisItem.Heading & "

+ +
+ emblem +
+ +
+ +
+ +
+
+ + +
+
+ + +
+
+

" & ThisItem.SubHeading & "

+

+ " & ThisItem.Item1 & "
" & ThisItem.Item2 & " +

+
+
+ Activate Lumen +
+
+
+
+ + + + + " + LayoutMaxHeight: = + LayoutMaxWidth: = + Size: =13 + Width: =Parent.Width + ZIndex: =1 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionTest1.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionTest1.fx.yaml new file mode 100644 index 00000000..eb65ee03 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/CardSubstitutionTest1.fx.yaml @@ -0,0 +1,255 @@ +CardSubstitutionTest1 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Container3 As groupContainer.verticalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Height: =467 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =393 + X: =23 + Y: =16 + ZIndex: =2 + + HtmlText1_3 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: |- + ="
+

" & First(SampleVisual).Heading & "

+ + + + + +
" + LayoutMaxHeight: = + LayoutMaxWidth: = + Size: =13 + Width: =Parent.Width + X: =711 + Y: =40 + ZIndex: =1 + + Container5 As groupContainer.verticalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Height: =459 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =345 + X: =604 + Y: =40 + ZIndex: =3 + + HtmlText2_1 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =Parent.Height + HtmlText: |- + =" + +
+ +
+ + +

" & First(SampleVisual).Heading & "

+ +
+ emblem +
+ +
+ +
+ +
+
+ + +
+
+ + +
+
+

" & First(SampleVisual).SubHeading & "

+

+ " & First(SampleVisual).Item1 & "
" & First(SampleVisual).Item2 & " +

+
+
+ Activate Lumen +
+
+
+
+ + + + + " + LayoutMaxHeight: = + LayoutMaxWidth: = + Size: =13 + Width: =Parent.Width + X: =440 + Y: =308 + ZIndex: =2 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/App.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/App.editorstate.json new file mode 100644 index 00000000..7cea3094 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/App.editorstate.json @@ -0,0 +1,140 @@ +{ + "ControlStates": { + "App": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "MinScreenHeight", + "MinScreenWidth", + "ConfirmExit", + "SizeBreakpoints", + "BackEnabled", + "Theme", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "OnStart", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Formulas", + "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" + }, + { + "Category": "Formulas", + "PropertyName": "Formulas", + "RuleProviderType": "User" + } + ], + "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/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardPopoutSample.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardPopoutSample.editorstate.json new file mode 100644 index 00000000..0b7cb122 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardPopoutSample.editorstate.json @@ -0,0 +1,1286 @@ +{ + "ControlStates": { + "BioButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "365", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "182", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "32", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BasePaletteColor", + "FontColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BioButton", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusBottomRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusTopRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ButtonCanvas2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BasePaletteColor", + "FontColor", + "BorderColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ButtonCanvas2", + "OptimizeForDevices": "Off", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "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": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CardPopoutSample": { + "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": "CardPopoutSample", + "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" + }, + "Container2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container2", + "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": "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" + }, + "SampleCardImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "(Parent.Height - Self.Height) / 2 //(Parent.Height - Self.Height) / 2", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "28", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "143", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "148", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "BorderThickness", + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Transparency", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SampleCardImage", + "OptimizeForDevices": "Off", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transparency", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "SummaryButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "365", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "236", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "32", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BasePaletteColor", + "FontColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryButton", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusBottomRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusTopRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "Timer1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Text", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "BorderThickness", + "FocusedBorderThickness", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnTimerStart", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60000", + "InvariantPropertyName": "Duration", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "Start", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Timer1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Duration", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Start", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "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" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnTimerStart", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultTimerStyle", + "Type": "ControlInfo" + }, + "TitleButton": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "365", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "127", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "32", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "IconStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BasePaletteColor", + "FontColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TitleButton", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "IconStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusBottomRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BorderRadiusTopRight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardPopoutSample" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1.editorstate.json new file mode 100644 index 00000000..922a8cd5 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1.editorstate.json @@ -0,0 +1,4339 @@ +{ + "ControlStates": { + "BioPopupTextCanvas": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "14", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Wrap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Regular\"", + "InvariantPropertyName": "Weight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "BioPopupTextCanvas", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "ButtonCanvas1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Appearance", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderRadius", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BasePaletteColor", + "FontColor", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ButtonCanvas1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Appearance", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderRadius", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "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" + }, + "CardPopupContainer_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "minimumHeight", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "680", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutAlignItems", + "Fill", + "DisplayMode", + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "475", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingLeft", + "BorderStyle", + "minimumWidth", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "RadiusTopRight", + "maximumWidth", + "EnableChildFocus", + "LayoutDirection", + "ContentLanguage", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "428", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderThickness", + "DropShadow", + "RadiusTopLeft", + "LayoutWrap", + "PaddingBottom", + "LayoutMode", + "LayoutOverflowY", + "LayoutOverflowX", + "PaddingRight", + "LayoutGap", + "ChildTabPriority", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "maximumHeight", + "RadiusBottomLeft", + "RadiusBottomRight", + "PaddingTop" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "CardPopupContainer_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutJustifyContent", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "LayoutAlignItems", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutDirection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutWrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutOverflowY", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutOverflowX", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutGap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "CardSample1": { + "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": "CardSample1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "User" + }, + { + "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" + }, + "Gallery2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60))", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplatePadding", + "Layout", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Transition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowNavigation", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "NavigationStep", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight" + ], + "GalleryTemplateChildName": "galleryTemplate2", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowNavigation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "NavigationStep", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "GalleryContainer": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "560", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutGap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryContainer", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "GalleryImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoDisableOnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryImage", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "JobTitlePopupTextCanvas": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "14", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Regular\"", + "InvariantPropertyName": "Weight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "JobTitlePopupTextCanvas", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreInfoContainer": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "200", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutDirection", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutAlignItems", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutJustifyContent", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DropShadow", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreInfoContainer", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "NameLabel": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NameLabel", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "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": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "NamePopupTextCanvas": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "14", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Regular\"", + "InvariantPropertyName": "Weight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NamePopupTextCanvas", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "PopupDataContainer_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "minimumHeight", + "LayoutJustifyContent", + "X", + "LayoutAlignItems", + "Fill", + "DisplayMode", + "BorderColor", + "Width", + "PaddingLeft", + "BorderStyle", + "minimumWidth", + "Y", + "RadiusTopRight", + "maximumWidth", + "EnableChildFocus", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutDirection", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ContentLanguage", + "Height", + "BorderThickness", + "DropShadow", + "RadiusTopLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutWrap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "LayoutMode", + "LayoutOverflowY", + "LayoutOverflowX", + "PaddingRight", + "LayoutGap", + "ChildTabPriority", + "Visible", + "maximumHeight", + "RadiusBottomLeft", + "RadiusBottomRight", + "PaddingTop" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PopupDataContainer_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutJustifyContent", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutAlignItems", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutDirection", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusTopLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutWrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutOverflowY", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutOverflowX", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LayoutGap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "RadiusBottomRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "PopupDetailsContainer": { + "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", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PopupDetailsContainer", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "PopupGlassmorphismHtml_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "minimumHeight", + "X", + "Fill", + "DisabledFill", + "DisplayMode", + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "475", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Tooltip", + "PaddingLeft", + "BorderStyle", + "minimumWidth", + "Y", + "maximumWidth", + "Size", + "ContentLanguage", + "Font", + "Height", + "BorderThickness", + "Color", + "PressedBorderColor", + "PaddingBottom", + "AutoHeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\n
\n\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PaddingRight", + "HoverBorderColor", + "OnSelect", + "Visible", + "maximumHeight", + "PaddingTop" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PopupGlassmorphismHtml_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "PopupImage": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "BorderThickness", + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PopupImage", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "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": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Rectangle1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "BorderStyle", + "FocusedBorderColor", + "DisplayMode", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "BorderThickness", + "FocusedBorderThickness" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Rectangle1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultRectangleStyle", + "Type": "ControlInfo" + }, + "SummaryLabel": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryLabel", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SummaryPopupTextCanvas": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "14", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Regular\"", + "InvariantPropertyName": "Weight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryPopupTextCanvas", + "OptimizeForDevices": "Off", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSample1" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_1_test.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_1_test.editorstate.json new file mode 100644 index 00000000..6edace1a --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_1_test.editorstate.json @@ -0,0 +1,1822 @@ +{ + "ControlStates": { + "CardSample1_1_test": { + "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": "CardSample1_1_test", + "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" + }, + "Gallery2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplateSize", + "TemplatePadding", + "Layout", + "Transition", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex" + ], + "GalleryTemplateChildName": "galleryTemplate2_1", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery2_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "GalleryContainer_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "560", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutGap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryContainer_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "GalleryImage_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoDisableOnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryImage_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreButton_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreButton_1", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "NameLabel_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NameLabel_1", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "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": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SummaryLabel_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + "Size", + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryLabel_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSample1_1_test" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_2.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_2.editorstate.json new file mode 100644 index 00000000..e1f49b5d --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_2.editorstate.json @@ -0,0 +1,2253 @@ +{ + "ControlStates": { + "CardSample1_2": { + "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": "CardSample1_2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "User" + }, + { + "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" + }, + "Gallery2_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplateSize", + "TemplatePadding", + "Layout", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Transition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowNavigation", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "NavigationStep", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight" + ], + "GalleryTemplateChildName": "galleryTemplate2_2", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery2_2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowNavigation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "NavigationStep", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "GalleryContainer_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "560", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutGap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryContainer_2", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "GalleryImage_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoDisableOnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryImage_2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreInfoButton_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "AcceptsFocus", + "AccessibleLabel", + "Content", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "0", + "InvariantPropertyName": "FontSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FontWeight", + "FontItalic", + "FontUnderline", + "FontStrikethrough", + "TabIndex", + "Tooltip", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "(GalleryContainer_2.Width - MoreInfoButton_1.Width) / 2", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "GalleryContainer_2.Height - MoreInfoButton_1.Height - 10", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "MoreButton.Height", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "DisplayMode", + "OnSelect", + "ContentLanguage", + "ZIndex", + "BasePaletteColor", + "FontColor", + "IconColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreInfoButton_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "AcceptsFocus", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Content", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontSize", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "IconColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreInfoContainer_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "200", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutDirection", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutAlignItems", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutJustifyContent", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DropShadow", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreInfoContainer_1", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "NameLabel_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NameLabel_2", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "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": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SummaryLabel_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + "Size", + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryLabel_2", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "TextCanvas1_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + "Width", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Align", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TextCanvas1_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "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" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSample1_2" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_3_test.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_3_test.editorstate.json new file mode 100644 index 00000000..ce23b337 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_3_test.editorstate.json @@ -0,0 +1,1869 @@ +{ + "ControlStates": { + "CardSample1_3_test": { + "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": "CardSample1_3_test", + "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" + }, + "Gallery2_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60))", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "TemplatePadding", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Layout", + "Transition", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "AutoHeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "GalleryTemplateChildName": "galleryTemplate2_3", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery2_3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "GalleryContainer_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "320", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "560", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutGap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryContainer_3", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "GalleryImage_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoDisableOnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryImage_3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreButton_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderColor", + "Color", + "DisabledColor", + "PressedColor", + "HoverColor", + "DisplayMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreButton_2", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultButtonStyle", + "Type": "ControlInfo" + }, + "NameLabel_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NameLabel_3", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "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": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SummaryLabel_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryLabel_3", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSample1_3_test" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_4_nested.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_4_nested.editorstate.json new file mode 100644 index 00000000..32e695bd --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSample1_4_nested.editorstate.json @@ -0,0 +1,2277 @@ +{ + "ControlStates": { + "ButtonCanvas3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "16", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "8", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "96", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "OnSelect", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Button\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Appearance", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BasePaletteColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontColor", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontStrikethrough", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ButtonCanvas3", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Appearance", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "CardSample1_4_nested": { + "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": "CardSample1_4_nested", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "User" + }, + { + "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" + }, + "Gallery2_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplateSize", + "TemplatePadding", + "Layout", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Transition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowScrollbar", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowNavigation", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "NavigationStep", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "WrapCount", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "GalleryTemplateChildName": "galleryTemplate2_4", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery2_4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "ShowScrollbar", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowNavigation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "NavigationStep", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "Gallery4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "CustomGallerySample", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "If(Self.Layout = Layout.Horizontal, Min(320, Self.Width - 60), Min(320, Self.Height - 60))", + "InvariantPropertyName": "TemplateSize", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "TemplatePadding", + "Layout", + "Transition", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "640", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "575", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ShowNavigation", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "GalleryTemplateChildName": "galleryTemplate4", + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ShowNavigation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "GalleryContainer_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "560", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutGap", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryContainer_4", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "GalleryImage_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "SampleImage", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoDisableOnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GalleryImage_4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "galleryTemplate2_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate2_4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "galleryTemplate4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "MoreInfoContainer_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "200", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutDirection", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutAlignItems", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "LayoutJustifyContent", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DropShadow", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "MoreInfoContainer_2", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "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": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "NameLabel_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "FontWeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Align", + "VerticalAlign", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "13", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "NameLabel_4", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "User" + }, + { + "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": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + }, + "SummaryLabel_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Live", + "Overflow", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Role", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Color", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisabledColor", + "PressedColor", + "HoverColor", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "Font", + "FontWeight", + "Align", + "VerticalAlign", + "X", + "Y", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "150", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "DisplayMode", + "ZIndex", + "LineHeight", + "BorderThickness", + "FocusedBorderThickness", + "Size", + "Italic", + "Underline", + "Strikethrough", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "false", + "InvariantPropertyName": "OnSelect", + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "SummaryLabel_4", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Live", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Role", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Overflow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LineHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Italic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Underline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Strikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "User" + } + ], + "StyleName": "defaultLabelStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSample1_4_nested" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSampleVisual.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSampleVisual.editorstate.json new file mode 100644 index 00000000..26751780 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSampleVisual.editorstate.json @@ -0,0 +1,282 @@ +{ + "ControlStates": { + "CardSampleVisual": { + "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": "CardSampleVisual", + "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" + }, + "HtmlText1_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "HtmlText", + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + "Width", + "Height", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSampleVisual" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery1.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery1.editorstate.json new file mode 100644 index 00000000..9071d7ee --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery1.editorstate.json @@ -0,0 +1,671 @@ +{ + "ControlStates": { + "CardSubstitutionGallery1": { + "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": "CardSubstitutionGallery1", + "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" + }, + "Container4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "200", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container4", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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" + }, + "Gallery1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + "TemplateSize", + "TemplatePadding", + "Layout", + "Transition", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "AutoHeight" + ], + "GalleryTemplateChildName": "galleryTemplate1", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "galleryTemplate1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HtmlText1_4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"
\n

\" & First(SampleVisual).Heading & \"

\n\n \n \n\n \n
\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + "Width", + "Height", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1_4", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSubstitutionGallery1" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery2.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery2.editorstate.json new file mode 100644 index 00000000..e09e193d --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionGallery2.editorstate.json @@ -0,0 +1,819 @@ +{ + "ControlStates": { + "CardSubstitutionGallery2": { + "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": "CardSubstitutionGallery2", + "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" + }, + "Container5_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ContentLanguage", + "BorderColor", + "BorderStyle", + "BorderThickness", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "40", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "459", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Visible", + "DisplayMode", + "ChildTabPriority", + "EnableChildFocus", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "DropShadow", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container5_1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "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": "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": "User" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "Gallery3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Items", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "WrapCount", + "TemplateSize", + "TemplatePadding", + "Layout", + "Transition", + "DelayItemLoading", + "LoadingSpinner", + "LoadingSpinnerColor", + "DisplayMode", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "FocusedBorderColor", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "X", + "Y", + "Width", + "Height", + "ZIndex", + "AutoHeight" + ], + "GalleryTemplateChildName": "galleryTemplate3", + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Gallery3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Items", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "WrapCount", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplateSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TemplatePadding", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Layout", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DelayItemLoading", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinner", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "LoadingSpinnerColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "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" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGalleryStyle", + "Type": "ControlInfo" + }, + "galleryTemplate3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "TemplateFill" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": true, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "galleryTemplate3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Design", + "PropertyName": "TemplateFill", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "HtmlText2_2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\n\n
\n \n
\n\n \n

\" & First(SampleVisual).Heading & \"

\n\n
\nemblem\n
\n\n
\n\n
\n\n
\n
\n\n \n
\n
\n \n\n
\n
\n

\" & First(SampleVisual).SubHeading & \"

\n

\n \" & First(SampleVisual).Item1 & \"
\" & First(SampleVisual).Item2 & \"\n

\n
\n
\n Activate Lumen\n
\n
\n
\n
\n\n\n\n\n\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + "Width", + "Height", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "440", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "308", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText2_2", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSubstitutionGallery2" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionTest1.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionTest1.editorstate.json new file mode 100644 index 00000000..209094a4 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/CardSubstitutionTest1.editorstate.json @@ -0,0 +1,1026 @@ +{ + "ControlStates": { + "CardSubstitutionTest1": { + "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": "CardSubstitutionTest1", + "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" + }, + "Container3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container3", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "Container5": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container5", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "HtmlText1_3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"
\n

\" & First(SampleVisual).Heading & \"

\n\n \n \n\n \n
\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "612", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "439", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingRight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "ZIndex" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1_3", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "HtmlText2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\n\"\n\n\n
\n \n
\n\n
\n\n
\nemblem\n
\n\n
\n\n
\n\n
\n
\n\n \n
\n
\n \n\n
\n
\n

Luminous Design

\n

\n Light Folds Around Form
Revealing Layers Of Depth\n

\n
\n
\n Activate Lumen\n
\n
\n
\n
\n\n\n\n\n\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "381", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "460", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "ZIndex" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText2_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + } + }, + "TopParentName": "CardSubstitutionTest1" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen1.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen1.editorstate.json new file mode 100644 index 00000000..aa74d679 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen1.editorstate.json @@ -0,0 +1,978 @@ +{ + "ControlStates": { + "FooterContainer1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "DropShadow", + "ZIndex" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": true, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "%FooterContainer.ID%", + "Name": "FooterContainer1", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "HeaderContainer1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "DropShadow", + "ZIndex" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": true, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "%HeaderContainer.ID%", + "Name": "HeaderContainer1", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "MainContainer1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "DropShadow", + "ZIndex" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": true, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "%MainContainer.ID%", + "Name": "MainContainer1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "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" + }, + "ScreenContainer1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "DropShadow", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": true, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "%ScreenContainer.ID%", + "Name": "ScreenContainer1", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + } + }, + "TopParentName": "Screen1" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen2.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen2.editorstate.json new file mode 100644 index 00000000..5d82879d --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen2.editorstate.json @@ -0,0 +1,2627 @@ +{ + "ControlStates": { + "Container1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Y", + "Width", + "Height", + "DisplayMode", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DropShadow", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Container1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "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": "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" + }, + "DataContainer": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "BorderColor", + "BorderStyle", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Fill", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "60", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "475", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "200", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "DropShadow", + "ZIndex", + "PaddingTop", + "PaddingBottom", + "PaddingLeft", + "PaddingRight", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "DataContainer", + "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": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "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" + }, + "GlassmorphismHtml": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "HtmlText", + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "475", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "GlassmorphismHtml", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "hmtl_Glassmorphism_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"\n
\n\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingTop", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingBottom", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "PaddingLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "hmtl_Glassmorphism_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "HtmlText1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + "X", + "Y", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "HtmlText2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + "X", + "Y", + "ZIndex", + "Size", + "AutoHeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText2", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "HtmlText3": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + "X", + "Y", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText3", + "OptimizeForDevices": "Off", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "HtmlText4": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "Width", + "Height", + "X", + "Y", + "ZIndex", + "Size", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Show your HTML text here.\"", + "InvariantPropertyName": "HtmlText", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "AutoHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "HtmlText4", + "OptimizeForDevices": "Off", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "Image1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Image", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ImageRotation", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "84", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "64", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Width", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "100", + "InvariantPropertyName": "Height", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "FocusedBorderColor", + "BorderStyle", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "BorderThickness", + "FocusedBorderThickness", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + } + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Image1", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "User" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "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": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "Image1_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Image", + "Transparency", + "ImagePosition", + "CalculateOriginalDimensions", + "ImageRotation", + "FlipHorizontal", + "FlipVertical", + "ApplyEXIFOrientation", + "AccessibleLabel", + "Tooltip", + "ContentLanguage", + "AutoDisableOnSelect", + "X", + "Y", + "Width", + "Height", + "Visible", + "Fill", + "DisabledFill", + "PressedFill", + "HoverFill", + "BorderColor", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderThickness", + "FocusedBorderColor", + "FocusedBorderThickness", + "BorderStyle", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "DisplayMode", + "TabIndex", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Image1_1", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Image", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Transparency", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImagePosition", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "CalculateOriginalDimensions", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ImageRotation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FlipHorizontal", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FlipVertical", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ApplyEXIFOrientation", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoDisableOnSelect", + "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "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": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "FocusedBorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultImageStyle", + "Type": "ControlInfo" + }, + "PopupContainer": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ContentLanguage", + "BorderColor", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderStyle", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "BorderThickness", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusTopRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomLeft", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "RadiusBottomRight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Fill", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "X", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Y", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Width", + "Height", + "Visible", + "DisplayMode", + "ChildTabPriority", + "EnableChildFocus", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "DropShadow", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "ZIndex" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "PopupContainer", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "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": "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "Screen2": { + "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": "Screen2", + "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" + }, + "TextCanvas2": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Height", + "X", + "Y", + "Width", + "DisplayMode", + "ZIndex", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "AutoHeight", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Size", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "\"Text\"", + "InvariantPropertyName": "Text", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "FontColor", + "Fill", + "BorderColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TextCanvas2", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "User" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "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" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "TextCanvas2_1": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Text", + "Size", + "Weight", + "Align", + "VerticalAlign", + "AutoHeight", + "Height", + "Font", + "FontItalic", + "FontStrikethrough", + "FontUnderline", + "Wrap", + "BorderStyle", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Visible", + "DisplayMode", + "ContentLanguage", + "FontColor", + "Fill", + "BorderColor" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "TextCanvas2_1", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } + }, + "TopParentName": "Screen2" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen_Main.editorstate.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen_Main.editorstate.json new file mode 100644 index 00000000..30c8c5a8 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/EditorState/Screen_Main.editorstate.json @@ -0,0 +1,2807 @@ +{ + "ControlStates": { + "ctr_Main": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "ContentLanguage", + "BorderColor", + "BorderStyle", + "BorderThickness", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "EnableChildFocus", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "DropShadow" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ctr_Main", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "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": "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "ctr_MainPane": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "ContentLanguage", + "BorderColor", + "BorderStyle", + "BorderThickness", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + "Visible", + "DisplayMode", + "ChildTabPriority", + "EnableChildFocus", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "DropShadow" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ctr_MainPane", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "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": "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "ctr_Screen": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "ContentLanguage", + "BorderColor", + "BorderStyle", + "BorderThickness", + "RadiusTopLeft", + "RadiusTopRight", + "RadiusBottomLeft", + "RadiusBottomRight", + "Fill", + "X", + "Y", + "Width", + "Height", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "Visible", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "DisplayMode", + "ChildTabPriority", + "EnableChildFocus", + "LayoutMode", + "LayoutDirection", + "LayoutAlignItems", + "LayoutJustifyContent", + "LayoutGap", + "LayoutOverflowX", + "LayoutOverflowY", + "LayoutWrap", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight", + "DropShadow" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "ctr_Screen", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "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": "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ChildTabPriority", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "EnableChildFocus", + "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": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DropShadow", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultGroupContainerStyle", + "Type": "ControlInfo" + }, + "hmtl_Glassmorphism": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "HtmlText", + "AutoHeight", + "Tooltip", + "ContentLanguage", + "DisplayMode", + "DisabledFill", + "Font", + "Color", + "Size", + "Fill", + "BorderColor", + "DisabledBorderColor", + "PressedBorderColor", + "HoverBorderColor", + "BorderStyle", + "BorderThickness", + "Visible", + "Width", + "Height", + "PaddingTop", + "PaddingRight", + "PaddingBottom", + "PaddingLeft", + "X", + "Y", + "OnSelect", + "minimumWidth", + "minimumHeight", + "maximumWidth", + "maximumHeight" + ], + "HasDynamicProperties": false, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "hmtl_Glassmorphism", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "HtmlText", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledFill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Color", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisabledBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PressedBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "HoverBorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "BorderThickness", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingTop", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingRight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingBottom", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "PaddingLeft", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "minimumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumWidth", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "maximumHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnSelect", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "defaultHtmlViewerStyle", + "Type": "ControlInfo" + }, + "lbl_Email": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Text", + "Size", + "Weight", + "Align", + "VerticalAlign", + "AutoHeight", + "Height", + "Font", + "FontColor", + "FontItalic", + "FontStrikethrough", + "FontUnderline", + "Wrap", + "BorderStyle", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Visible", + "DisplayMode", + "ContentLanguage", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "lbl_Email", + "OptimizeForDevices": "Off", + "ParentIndex": 5, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "lbl_JobTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Text", + "Size", + "Weight", + "Align", + "VerticalAlign", + "AutoHeight", + "Height", + "Font", + "FontColor", + "FontItalic", + "FontStrikethrough", + "FontUnderline", + "Wrap", + "BorderStyle", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Visible", + "DisplayMode", + "ContentLanguage", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "lbl_JobTitle", + "OptimizeForDevices": "Off", + "ParentIndex": 3, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "lbl_Name": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Text", + "Size", + "Weight", + "Align", + "VerticalAlign", + "AutoHeight", + "Height", + "Font", + "FontColor", + "FontItalic", + "FontStrikethrough", + "FontUnderline", + "Wrap", + "BorderStyle", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Visible", + "DisplayMode", + "ContentLanguage", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "lbl_Name", + "OptimizeForDevices": "Off", + "ParentIndex": 1, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "Screen_Main": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "Fill", + "BackgroundImage", + { + "AFDDataSourceName": "", + "AutoRuleBindingEnabled": false, + "AutoRuleBindingString": "", + "InvariantPropertyName": "ImagePosition", + "IsLockable": false, + "NameMapSourceSchema": "?" + }, + "Height", + "Width", + "Size", + "Orientation", + "LoadingSpinner", + "LoadingSpinnerColor", + "ContentLanguage" + ], + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "Screen_Main", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "BackgroundImage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "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" + }, + "txt_Email": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Align", + "AccessibleLabel", + "MaxLength", + "Mode", + "Placeholder", + "Required", + "Type", + "ValidationState", + "Value", + "Font", + "FontSize", + "FontWeight", + "FontItalic", + "FontUnderline", + "FontStrikethrough", + "Appearance", + "BorderStyle", + "TriggerOutput", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Height", + "Visible", + "DisplayMode", + "OnChange", + "ContentLanguage", + "BasePaletteColor", + "FontColor", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "txt_Email", + "OptimizeForDevices": "Off", + "ParentIndex": 6, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "MaxLength", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Placeholder", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Required", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Type", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ValidationState", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Value", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Appearance", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "TriggerOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "txt_Header": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Text", + "Size", + "Weight", + "Align", + "VerticalAlign", + "AutoHeight", + "Height", + "Font", + "FontColor", + "FontItalic", + "FontStrikethrough", + "FontUnderline", + "Wrap", + "BorderStyle", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Visible", + "DisplayMode", + "ContentLanguage", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "txt_Header", + "OptimizeForDevices": "Off", + "ParentIndex": 0, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Text", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Size", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Weight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "VerticalAlign", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AutoHeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Wrap", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Height", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "X", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Y", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Width", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "txt_JobTitle": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Align", + "AccessibleLabel", + "MaxLength", + "Mode", + "Placeholder", + "Required", + "Type", + "ValidationState", + "Value", + "Font", + "FontSize", + "FontWeight", + "FontItalic", + "FontUnderline", + "FontStrikethrough", + "Appearance", + "BorderStyle", + "TriggerOutput", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Height", + "Visible", + "DisplayMode", + "OnChange", + "ContentLanguage", + "BasePaletteColor", + "FontColor", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "txt_JobTitle", + "OptimizeForDevices": "Off", + "ParentIndex": 4, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "MaxLength", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Placeholder", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Required", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Type", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ValidationState", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Value", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Appearance", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "TriggerOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + }, + "txt_Name": { + "AllowAccessToGlobals": true, + "ControlPropertyState": [ + "ZIndex", + "Align", + "AccessibleLabel", + "MaxLength", + "Mode", + "Placeholder", + "Required", + "Type", + "ValidationState", + "Value", + "Font", + "FontSize", + "FontWeight", + "FontItalic", + "FontUnderline", + "FontStrikethrough", + "Appearance", + "BorderStyle", + "TriggerOutput", + "TabIndex", + "Tooltip", + "X", + "Y", + "Width", + "Height", + "Visible", + "DisplayMode", + "OnChange", + "ContentLanguage", + "BasePaletteColor", + "FontColor", + "Fill", + "BorderColor" + ], + "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" + }, + { + "ControlPropertyState": "LayoutMaxWidth", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxWidth", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxWidth" + }, + { + "ControlPropertyState": "LayoutMaxHeight", + "Property": { + "Category": "Design", + "PropertyName": "LayoutMaxHeight", + "RuleProviderType": "Unknown" + }, + "PropertyName": "LayoutMaxHeight" + } + ], + "HasDynamicProperties": true, + "IsAutoGenerated": false, + "IsComponentDefinition": false, + "IsDataControl": false, + "IsFromScreenLayout": false, + "IsGroupControl": false, + "IsLocked": false, + "LayoutName": "", + "MetaDataIDKey": "", + "Name": "txt_Name", + "OptimizeForDevices": "Off", + "ParentIndex": 2, + "PersistMetaDataIDKey": false, + "Properties": [ + { + "Category": "Data", + "PropertyName": "Align", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "AccessibleLabel", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "MaxLength", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Mode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Placeholder", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Required", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Type", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ValidationState", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Value", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Font", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontSize", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontWeight", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontItalic", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontUnderline", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontStrikethrough", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Appearance", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderStyle", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "TriggerOutput", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "ContentLanguage", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BasePaletteColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "FontColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "Fill", + "RuleProviderType": "Unknown" + }, + { + "Category": "Data", + "PropertyName": "BorderColor", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "ZIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "TabIndex", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "Tooltip", + "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": "Visible", + "RuleProviderType": "Unknown" + }, + { + "Category": "Design", + "PropertyName": "DisplayMode", + "RuleProviderType": "Unknown" + }, + { + "Category": "Behavior", + "PropertyName": "OnChange", + "RuleProviderType": "Unknown" + } + ], + "StyleName": "", + "Type": "ControlInfo" + } + }, + "TopParentName": "Screen_Main" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen1.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen1.fx.yaml new file mode 100644 index 00000000..b8e91277 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen1.fx.yaml @@ -0,0 +1,84 @@ +"Screen1 As screen.'autoLayout_HeaderFooter_ver1.0'": + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + ScreenContainer1 As groupContainer.verticalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Fill: =RGBA(245, 245, 245, 1) + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Stretch + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =16 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =16 + PaddingLeft: =16 + PaddingRight: =16 + PaddingTop: =16 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =Parent.Width + ZIndex: =1 + + HeaderContainer1 As groupContainer.horizontalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Fill: =RGBA(255, 255, 255, 1) + FillPortions: =0 + Height: =75 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 + ZIndex: =1 + + MainContainer1 As groupContainer.verticalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Fill: =RGBA(255, 255, 255, 1) + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 + ZIndex: =2 + + FooterContainer1 As groupContainer.horizontalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Fill: =RGBA(255, 255, 255, 1) + FillPortions: =0 + Height: =75 + LayoutAlignItems: =LayoutAlignItems.Center + LayoutMaxHeight: =0 + LayoutMaxWidth: =0 + LayoutMinHeight: =16 + LayoutMinWidth: =16 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =8 + RadiusBottomRight: =8 + RadiusTopLeft: =8 + RadiusTopRight: =8 + ZIndex: =3 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen2.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen2.fx.yaml new file mode 100644 index 00000000..575346c7 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen2.fx.yaml @@ -0,0 +1,419 @@ +Screen2 As screen: + LoadingSpinnerColor: =RGBA(0, 120, 212, 1) + + Container1 As groupContainer.manualLayoutContainer: + BorderStyle: =BorderStyle.None + Height: =428 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =475 + X: =540 + Y: =40 + ZIndex: =1 + + hmtl_Glassmorphism_1 As htmlViewer: + DisabledBorderColor: =RGBA(166, 166, 166, 1) + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Size: =13 + Width: =475 + ZIndex: =1 + + TextCanvas2 As Text: + AutoHeight: =false + BorderColor: = + DisplayMode: =DisplayMode.Edit + Fill: = + FontColor: = + Height: =153 + Size: =20 + Text: ="Text dsds sdsdsd sdsdsd" + Width: =227 + X: =40 + Y: =40 + ZIndex: =2 + + Image1 As image: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height - 1 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: ='847408384' + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Width: =Parent.Width + Y: =1 + ZIndex: =3 + + PopupContainer As groupContainer.manualLayoutContainer: + BorderThickness: =1 + DropShadow: =DropShadow.Light + Height: =428 + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Width: =475 + X: =660 + Y: =40 + ZIndex: =2 + + Image1_1 As image: + BorderColor: =RGBA(0, 0, 0, 0) + BorderStyle: =BorderStyle.None + BorderThickness: =2 + DisabledBorderColor: =RGBA(0, 0, 0, 0) + DisabledFill: =RGBA(0, 0, 0, 0) + FocusedBorderThickness: =4 + Height: =Parent.Height - 1 + HoverBorderColor: =RGBA(0, 0, 0, 0) + HoverFill: =RGBA(0, 0, 0, 0) + Image: ='847408384' + ImagePosition: =ImagePosition.Fill + PressedBorderColor: =RGBA(0, 0, 0, 0) + PressedFill: =RGBA(0, 0, 0, 0) + RadiusBottomLeft: =45 + RadiusBottomRight: =45 + RadiusTopLeft: =45 + RadiusTopRight: =45 + Visible: =false + Width: =Parent.Width + ZIndex: =1 + + TextCanvas2_1 As Text: + Align: ="Start" + AutoHeight: =false + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: = + FontItalic: =false + FontStrikethrough: =false + FontUnderline: =false + Height: =153 + Size: =20 + TabIndex: =0 + Text: ="Text dsds sdsdsd sdsdsd" + Tooltip: ="" + VerticalAlign: ="" + Visible: =true + Weight: ="Regular" + Width: =227 + Wrap: =true + X: =40 + Y: =40 + ZIndex: =2 + + GlassmorphismHtml As htmlViewer: + DisabledBorderColor: =RGBA(166, 166, 166, 1) + Height: =Parent.Height + HtmlText: |- + =" +
+ " + PaddingBottom: =0 + PaddingLeft: =0 + PaddingRight: =0 + PaddingTop: =0 + Size: =13 + Width: =Parent.Width + ZIndex: =3 + + DataContainer As groupContainer.verticalAutoLayoutContainer: + DropShadow: =DropShadow.Light + Height: =Parent.Height + LayoutAlignItems: =LayoutAlignItems.Center + LayoutDirection: =LayoutDirection.Vertical + LayoutMode: =LayoutMode.Auto + PaddingBottom: =8 + PaddingLeft: =8 + PaddingRight: =8 + PaddingTop: =8 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =Parent.Width + ZIndex: =4 + + HtmlText1 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =469 + HtmlText: |- + ="
+

Plans

+ + + + + +
" + Size: =13 + Width: =416 + Y: =40 + ZIndex: =3 + + HtmlText2 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =460 + HtmlText: |- + = + " + + +
+ +
+ +
+ +
+ emblem +
+ +
+ +
+ +
+
+ + +
+
+ + +
+
+

Luminous Design

+

+ Light Folds Around Form
Revealing Layers Of Depth +

+
+
+ Activate Lumen +
+
+
+
+ + + + + " + Size: =13 + Width: =381 + X: =440 + Y: =308 + ZIndex: =4 + + HtmlText3 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =93 + HtmlText: |- + =" + emblem + + " + Size: =13 + X: =72 + Y: =604 + ZIndex: =5 + + HtmlText4 As htmlViewer: + DisabledBorderColor: =RGBA(161, 159, 157, 1) + Font: =Font.'Segoe UI' + Height: =160 + HtmlText: |- + =" + emblem + + " + Size: =13 + Width: =247 + X: =1051 + Y: =564 + ZIndex: =6 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen_Main.fx.yaml b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen_Main.fx.yaml new file mode 100644 index 00000000..cdd6c491 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Screen_Main.fx.yaml @@ -0,0 +1,356 @@ +Screen_Main As screen: + BackgroundImage: |- + ="data:image/svg+xml;utf8, "&EncodeUrl("") + ContentLanguage: ="" + Fill: =RGBA(0, 0, 0, 1) + ImagePosition: =ImagePosition.Fill + LoadingSpinnerColor: =App.Theme.Colors.Primary + + ctr_Screen As groupContainer.horizontalAutoLayoutContainer: + Height: =App.Height + LayoutDirection: =LayoutDirection.Vertical + LayoutJustifyContent: =LayoutJustifyContent.Center + LayoutMode: =LayoutMode.Auto + Width: =App.Width + ZIndex: =1 + + ctr_Main As groupContainer.manualLayoutContainer: + AlignInContainer: =AlignInContainer.Center + FillPortions: =0 + Height: =450 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =100 + LayoutMinWidth: =250 + RadiusBottomLeft: =4 + RadiusBottomRight: =4 + RadiusTopLeft: =4 + RadiusTopRight: =4 + Width: =600 + ZIndex: =1 + + hmtl_Glassmorphism As htmlViewer: + DisabledBorderColor: =RGBA(166, 166, 166, 1) + Height: =Parent.Height + HtmlText: |- + =" +
+ " + Size: =13 + Width: =Parent.Width + ZIndex: =1 + + ctr_MainPane As groupContainer.horizontalAutoLayoutContainer: + Height: =Parent.Height + LayoutDirection: =LayoutDirection.Vertical + LayoutGap: =8 + LayoutMode: =LayoutMode.Auto + PaddingBottom: =32 + PaddingLeft: =32 + PaddingRight: =32 + PaddingTop: =32 + Width: =Parent.Width + ZIndex: =2 + + txt_Header As Text: + Align: ="Start" + AlignInContainer: =AlignInContainer.Stretch + AutoHeight: =false + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: =RGBA(255, 255, 255, 1) + FontItalic: =false + FontStrikethrough: =false + FontUnderline: =false + Height: =80 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =96 + Size: =32 + TabIndex: =0 + Text: ="Your Details" + Tooltip: ="" + VerticalAlign: =VerticalAlign.Top + Visible: =true + Weight: ='TextCanvas.Weight'.Semibold + Width: =96 + Wrap: =true + X: =0 + Y: =0 + ZIndex: =1 + + lbl_Name As Text: + Align: ="Start" + AlignInContainer: =AlignInContainer.Stretch + AutoHeight: =false + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: =RGBA(255, 255, 255, 1) + FontItalic: =false + FontStrikethrough: =false + FontUnderline: =false + Height: =32 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =96 + Size: =22 + TabIndex: =0 + Text: ="Name" + Tooltip: ="" + VerticalAlign: ="" + Visible: =true + Weight: ='TextCanvas.Weight'.Semibold + Width: =96 + Wrap: =true + X: =0 + Y: =0 + ZIndex: =2 + + "txt_Name As 'Text input'": + AccessibleLabel: ="" + Align: ="" + AlignInContainer: =AlignInContainer.Stretch + Appearance: ="FilledDarker" + BasePaletteColor: = + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: = + FontItalic: =false + FontSize: =0 + FontStrikethrough: =false + FontUnderline: =false + FontWeight: ="" + Height: =40 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =320 + MaxLength: =-1 + Mode: ="SingleLine" + OnChange: =false + Placeholder: ="" + Required: =false + TabIndex: =0 + Tooltip: ="" + TriggerOutput: ="FocusOut" + Type: ="Text" + ValidationState: ="None" + Value: ="" + Visible: =true + Width: =320 + X: =0 + Y: =0 + ZIndex: =3 + + lbl_JobTitle As Text: + Align: ="Start" + AlignInContainer: =AlignInContainer.Stretch + AutoHeight: =false + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: =RGBA(255, 255, 255, 1) + FontItalic: =false + FontStrikethrough: =false + FontUnderline: =false + Height: =32 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =96 + Size: =22 + TabIndex: =0 + Text: ="Job Title" + Tooltip: ="" + VerticalAlign: ="" + Visible: =true + Weight: ='TextCanvas.Weight'.Semibold + Width: =96 + Wrap: =true + X: =0 + Y: =0 + ZIndex: =4 + + "txt_JobTitle As 'Text input'": + AccessibleLabel: ="" + Align: ="" + AlignInContainer: =AlignInContainer.Stretch + Appearance: ="FilledDarker" + BasePaletteColor: = + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: = + FontItalic: =false + FontSize: =0 + FontStrikethrough: =false + FontUnderline: =false + FontWeight: ="" + Height: =40 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =320 + MaxLength: =-1 + Mode: ="SingleLine" + OnChange: =false + Placeholder: ="" + Required: =false + TabIndex: =0 + Tooltip: ="" + TriggerOutput: ="FocusOut" + Type: ="Text" + ValidationState: ="None" + Value: ="" + Visible: =true + Width: =320 + X: =0 + Y: =0 + ZIndex: =5 + + lbl_Email As Text: + Align: ="Start" + AlignInContainer: =AlignInContainer.Stretch + AutoHeight: =false + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: =RGBA(255, 255, 255, 1) + FontItalic: =false + FontStrikethrough: =false + FontUnderline: =false + Height: =32 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =96 + Size: =22 + TabIndex: =0 + Text: ="Contact Email" + Tooltip: ="" + VerticalAlign: ="" + Visible: =true + Weight: ='TextCanvas.Weight'.Semibold + Width: =96 + Wrap: =true + X: =0 + Y: =0 + ZIndex: =6 + + "txt_Email As 'Text input'": + AccessibleLabel: ="" + Align: ="" + AlignInContainer: =AlignInContainer.Stretch + Appearance: ="FilledDarker" + BasePaletteColor: = + BorderColor: = + BorderStyle: ="" + ContentLanguage: ="" + DisplayMode: =DisplayMode.Edit + Fill: = + Font: ="" + FontColor: = + FontItalic: =false + FontSize: =0 + FontStrikethrough: =false + FontUnderline: =false + FontWeight: ="" + Height: =40 + LayoutMaxHeight: = + LayoutMaxWidth: = + LayoutMinHeight: =32 + LayoutMinWidth: =320 + MaxLength: =-1 + Mode: ="SingleLine" + OnChange: =false + Placeholder: ="" + Required: =false + TabIndex: =0 + Tooltip: ="" + TriggerOutput: ="FocusOut" + Type: ="Text" + ValidationState: ="None" + Value: ="" + Visible: =true + Width: =320 + X: =0 + Y: =0 + ZIndex: =7 + diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Themes.json b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Themes.json new file mode 100644 index 00000000..14db976f --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/Src/Themes.json @@ -0,0 +1,4986 @@ +{ + "CurrentTheme": "v9WebLightTheme", + "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/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Button_0.0.45.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Button_0.0.45.json new file mode 100644 index 00000000..42e9354c --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Button_0.0.45.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.45\",\"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.45" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Information button_0.0.33.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Information button_0.0.33.json new file mode 100644 index 00000000..e3d01eee --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Information button_0.0.33.json @@ -0,0 +1,1421 @@ +{ + "AuthConfigProperties": [ + { + "AccessibleLabel": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 0, + "SectionName": null, + "SectionType": "GeneralSection", + "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 + }, + "Content": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 0, + "SectionName": null, + "SectionType": "GeneralSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "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 + }, + "IconColor": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 2, + "SectionName": null, + "SectionType": "StyleAndThemeSection", + "ShowInCanvasInlineActionBar": false, + "Type": 29, + "WizardStep": null + }, + "PaddingBottom": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "Padding", + "PropertyKind": 2, + "SectionIndex": 1, + "SectionName": null, + "SectionType": "SizeAndPositioningSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "WizardStep": null + }, + "PaddingLeft": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "Padding", + "PropertyKind": 2, + "SectionIndex": 1, + "SectionName": null, + "SectionType": "SizeAndPositioningSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "WizardStep": null + }, + "PaddingRight": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "Padding", + "PropertyKind": 2, + "SectionIndex": 1, + "SectionName": null, + "SectionType": "SizeAndPositioningSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "WizardStep": null + }, + "PaddingTop": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "Padding", + "PropertyKind": 2, + "SectionIndex": 1, + "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 + }, + "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": "OnSelect", + "Hidden": false, + "IsPrimaryInput": false, + "Name": "OnSelect", + "PfxDefaultValue": null + } + ], + "ControlConstructor": "InfoButtonCanvas", + "ControlNamespace": "PowerApps.CoreControls", + "DisplayNameKey": "InfoButtonCanvas", + "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": "32", + "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": "32", + "Required": false, + "ShouldAutoBind": false, + "Type": 2, + "Usage": 2, + "WebDefaultValue": "32" + }, + { + "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": "Information button", + "Properties": [ + { + "Category": "data", + "DefaultValue": "true", + "Description": "Whether this field can be reached with Tab key.", + "DescriptionResourceString": "InfoButtonCanvas_AcceptsFocus_Desc", + "DisplayName": "Accepts focus", + "DisplayNameResourceString": "InfoButtonCanvas_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": "InfoButtonCanvas_AccessibleLabel_Desc", + "DisplayName": "Accessible label", + "DisplayNameResourceString": "InfoButtonCanvas_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": "InfoButton content", + "Description": "Text content to display in the popup.", + "DescriptionResourceString": "InfoButtonCanvas_Content_Desc", + "DisplayName": "Content", + "DisplayNameResourceString": "InfoButtonCanvas_Content", + "EnumValues": [], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": true, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Content", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 6, + "Usage": 2, + "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 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 icon.", + "DescriptionResourceString": "IconColor_Description", + "DisplayName": "Icon color", + "DisplayNameResourceString": "IconColor", + "EnumValues": [], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": true, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": true, + "Name": "IconColor", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 6, + "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.InfoButtonCanvas\",\"CustomControlId\":\"PowerApps.CoreControls.InfoButtonCanvas\",\"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\":\"\"},\"Content\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"InfoButton content\"},\"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\"},\"IconColor\":{\"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\":{\"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\":\"Content\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":true,\"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\":\"IconColor\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Color\",\"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\":\"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.33\",\"IsFirstParty\":true}}", + "Type": 3 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 11, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/InfoButtonCanvas.js", + "Type": 0 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 10, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1033.resx", + "Type": 2 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1025.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1026.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1027.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1028.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1029.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1030.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1031.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1032.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1033.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1035.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1036.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1037.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1038.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1040.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1041.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1042.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1043.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1044.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1045.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1046.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1048.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1049.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1050.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1051.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1053.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1054.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1055.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1057.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1058.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1060.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1061.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1062.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1063.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1066.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1069.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1081.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1086.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1087.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.1110.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2052.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2070.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.2074.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3076.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3082.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_InfoButtonCanvas/strings/InfoButtonCanvas.3098.json", + "Type": 5 + }, + { + "IsControlSpecific": false, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"InfoButtonCanvas\":\"Information button\",\"InfoButtonCanvas_Desc\":\"A way to display additional information about a form field or an area in the UI.\",\"InfoButtonCanvas_AcceptsFocus\":\"Accepts focus\",\"InfoButtonCanvas_AcceptsFocus_Desc\":\"Whether this field can be reached with Tab key.\",\"InfoButtonCanvas_AccessibleLabel\":\"Accessible label\",\"InfoButtonCanvas_AccessibleLabel_Desc\":\"Label read out by screen readers.\",\"InfoButtonCanvas_Content\":\"Content\",\"InfoButtonCanvas_Content_Desc\":\"Text content to display in the popup.\",\"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.\",\"Default_Value_Content\":\"InfoButton content\",\"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\",\"IconColor\":\"Icon color\",\"IconColor_Description\":\"The color of the icon.\",\"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.\",\"PaddingTop\":\"Top\",\"PaddingTop_Description\":\"Padding to apply to the top 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 + }, + { + "IsControlSpecific": false, + "LoadingOrder": 0, + "ModifiedPath": "", + "Path": "React/16.8.6/16.14.0", + "Type": 4 + } + ], + "SubscribedFunctionalities": { + "supportSetFocus": "true" + }, + "Version": "0.0.33" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text input_0.0.54.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text input_0.0.54.json new file mode 100644 index 00000000..196cac50 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text input_0.0.54.json @@ -0,0 +1,1987 @@ +{ + "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 + }, + "Fill": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 3, + "SectionName": null, + "SectionType": "StyleAndThemeSection", + "ShowInCanvasInlineActionBar": false, + "Type": 32, + "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 + }, + "Mode": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 1, + "SectionName": null, + "SectionType": "BehaviorSection", + "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 + }, + "Placeholder": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 0, + "SectionName": null, + "SectionType": "GeneralSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "WizardStep": null + }, + "TriggerOutput": { + "EnabledForFlyout": false, + "HelperUI": null, + "Hidden": false, + "PropertyGroupName": "", + "PropertyKind": 1, + "SectionIndex": 1, + "SectionName": null, + "SectionType": "BehaviorSection", + "ShowInCanvasInlineActionBar": false, + "Type": 0, + "WizardStep": null + }, + "Type": { + "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 + } + } + ], + "CommonEvents": [ + { + "Description": "", + "DisplayName": "OnChange", + "Hidden": false, + "IsPrimaryInput": false, + "Name": "OnChange", + "PfxDefaultValue": null + } + ], + "ControlConstructor": "TextInputCanvas", + "ControlNamespace": "PowerApps.CoreControls", + "DisplayNameKey": "TextInputCanvas", + "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": "320", + "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": "320", + "Required": false, + "ShouldAutoBind": false, + "Type": 2, + "Usage": 2, + "WebDefaultValue": "320" + }, + { + "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": "Text input", + "Properties": [ + { + "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": 2, + "WebDefaultValue": "" + }, + { + "Category": "data", + "DefaultValue": "", + "Description": "Label for screen readers.", + "DescriptionResourceString": "TextInputCanvas_AccessibleLabel_Desc", + "DisplayName": "Accessible label", + "DisplayNameResourceString": "TextInputCanvas_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": "-1", + "Description": "The maximum content length of the Text input.", + "DescriptionResourceString": "TextInputCanvas_MaxLength_Desc", + "DisplayName": "Maximum length", + "DisplayNameResourceString": "TextInputCanvas_MaxLength", + "EnumValues": [], + "HelperUI": "", + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "MaxLength", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 16, + "Usage": 0, + "WebDefaultValue": "" + }, + { + "Category": "data", + "DefaultValue": "SingleLine", + "Description": "Type of text input: single line or multiline.", + "DescriptionResourceString": "TextInputCanvas_Mode_Desc", + "DisplayName": "Mode", + "DisplayNameResourceString": "TextInputCanvas_Mode", + "EnumValues": [ + { + "Description": "Single line", + "DisplayName": "Single line", + "IsDefaultValue": true, + "Name": "SingleLine", + "Value": "SingleLine" + }, + { + "Description": "Multiline", + "DisplayName": "Multiline", + "IsDefaultValue": false, + "Name": "Multiline", + "Value": "Multiline" + } + ], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Mode", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "SingleLine", + "Required": false, + "ShouldAutoBind": false, + "Type": 1, + "Usage": 0, + "WebDefaultValue": "SingleLine" + }, + { + "Category": "data", + "DefaultValue": "", + "Description": "The placeholder text of the text input.", + "DescriptionResourceString": "TextInputCanvas_Placeholder_Desc", + "DisplayName": "Placeholder text", + "DisplayNameResourceString": "TextInputCanvas_Placeholder", + "EnumValues": [], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Placeholder", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 6, + "Usage": 0, + "WebDefaultValue": "" + }, + { + "Category": "data", + "DefaultValue": "false", + "Description": "Whether this control must contain text.", + "DescriptionResourceString": "TextInputCanvas_Required_Desc", + "DisplayName": "Required", + "DisplayNameResourceString": "TextInputCanvas_Required", + "EnumValues": [], + "HelperUI": "", + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Required", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 20, + "Usage": 0, + "WebDefaultValue": "" + }, + { + "Category": "data", + "DefaultValue": "Text", + "Description": "Content type of text input: plain text, password, or search.", + "DescriptionResourceString": "TextInputCanvas_Type_Desc", + "DisplayName": "Type", + "DisplayNameResourceString": "TextInputCanvas_Type", + "EnumValues": [ + { + "Description": "Password", + "DisplayName": "Password", + "IsDefaultValue": false, + "Name": "Password", + "Value": "Password" + }, + { + "Description": "Search", + "DisplayName": "Search", + "IsDefaultValue": false, + "Name": "Search", + "Value": "Search" + }, + { + "Description": "Text", + "DisplayName": "Text", + "IsDefaultValue": true, + "Name": "Text", + "Value": "Text" + } + ], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Type", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "Text", + "Required": false, + "ShouldAutoBind": false, + "Type": 1, + "Usage": 0, + "WebDefaultValue": "Text" + }, + { + "Category": "data", + "DefaultValue": "None", + "Description": "The current status of the Text input, with regard to validation.", + "DescriptionResourceString": "TextInputCanvas_ValidationState_Desc", + "DisplayName": "Validation state", + "DisplayNameResourceString": "TextInputCanvas_ValidationState", + "EnumValues": [ + { + "Description": "Error", + "DisplayName": "Error", + "IsDefaultValue": false, + "Name": "Error", + "Value": "Error" + }, + { + "Description": "None", + "DisplayName": "None", + "IsDefaultValue": true, + "Name": "None", + "Value": "None" + } + ], + "HelperUI": "", + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "ValidationState", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "None", + "Required": false, + "ShouldAutoBind": false, + "Type": 1, + "Usage": 2, + "WebDefaultValue": "None" + }, + { + "Category": "data", + "DefaultValue": "", + "Description": "Text that appears on a control or that the user types into a control.", + "DescriptionResourceString": "TextInputCanvas_Value_Desc", + "DisplayName": "Value", + "DisplayNameResourceString": "TextInputCanvas_Value", + "EnumValues": [], + "HelperUI": "", + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": true, + "IsPrimaryOutput": true, + "IsResettable": true, + "IsResettableToManifestDefault": false, + "Name": "Value", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "", + "Required": false, + "ShouldAutoBind": false, + "Type": 6, + "Usage": 2, + "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 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": "Background color of 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": "FilledDarker", + "Description": "Appearance of the control's borders and fill", + "DescriptionResourceString": "Appearance_Description", + "DisplayName": "Appearance", + "DisplayNameResourceString": "Appearance", + "EnumValues": [ + { + "Description": "Filled Darker", + "DisplayName": "Filled Darker", + "IsDefaultValue": true, + "Name": "FilledDarker", + "Value": "FilledDarker" + }, + { + "Description": "Filled Lighter", + "DisplayName": "Filled Lighter", + "IsDefaultValue": false, + "Name": "FilledLighter", + "Value": "FilledLighter" + }, + { + "Description": "Outline", + "DisplayName": "Outline", + "IsDefaultValue": false, + "Name": "Outline", + "Value": "Outline" + } + ], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "Appearance", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "FilledDarker", + "Required": false, + "ShouldAutoBind": false, + "Type": 1, + "Usage": 0, + "WebDefaultValue": "FilledDarker" + }, + { + "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": "The value of the control's top padding.", + "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": "The value of the control's right padding.", + "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": "The value of the control's bottom padding.", + "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": "The value of the control's left padding.", + "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": "FocusOut", + "Description": "When to trigger the OnChange function.\r\n\r\nFocusOut: Triggers OnChange only when the text input control loses focus.\r\n\r\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\r\n\r\nKeypress: Triggers OnChange immediately as the user types.", + "DescriptionResourceString": "TriggerOutput_Description", + "DisplayName": "Trigger output", + "DisplayNameResourceString": "TriggerOutput", + "EnumValues": [ + { + "Description": "Delayed", + "DisplayName": "Delayed", + "IsDefaultValue": false, + "Name": "Delayed", + "Value": "Delayed" + }, + { + "Description": "Focus out", + "DisplayName": "Focus out", + "IsDefaultValue": true, + "Name": "FocusOut", + "Value": "FocusOut" + }, + { + "Description": "Key press", + "DisplayName": "Key press", + "IsDefaultValue": false, + "Name": "Keypress", + "Value": "Keypress" + } + ], + "HelperUI": null, + "Hidden": false, + "IsDataSourceProperty": false, + "IsLinkableToParentTheme": false, + "IsPrimaryBehavioral": false, + "IsPrimaryInput": false, + "IsPrimaryOutput": false, + "IsResettable": false, + "IsResettableToManifestDefault": false, + "Name": "TriggerOutput", + "ParentDataSetName": "", + "PassThroughProperty": "", + "PfxDefaultValue": "", + "PhoneDefaultValue": "FocusOut", + "Required": false, + "ShouldAutoBind": false, + "Type": 1, + "Usage": 0, + "WebDefaultValue": "FocusOut" + }, + { + "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.TextInputCanvas\",\"CustomControlId\":\"PowerApps.CoreControls.TextInputCanvas\",\"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\":{\"Align\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"\"},\"AccessibleLabel\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"MaxLength\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"-1\"},\"Mode\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"SingleLine\"},\"Placeholder\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Required\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"false\"},\"Type\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"Text\"},\"ValidationState\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"None\"},\"Value\":{\"Required\":true,\"Usage\":0,\"DefaultValue\":\"\"},\"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\"},\"Fill\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Appearance\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"FilledDarker\"},\"BorderStyle\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderThickness\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderColor\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"BorderRadius\":{\"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\":\"\"},\"TriggerOutput\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"FocusOut\"},\"TabIndex\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"},\"Tooltip\":{\"Required\":true,\"Usage\":1,\"DefaultValue\":\"\"}},\"FeatureUsage\":null},\"Events\":null,\"CommonEvents\":{\"OnChange\":{\"EventName\":\"OnChange\"}},\"DesignMap\":null,\"PropertyDependencies\":[],\"Children\":null}}", + "Type": 3 + }, + { + "IsControlSpecific": false, + "LoadingOrder": 9, + "ModifiedPath": "", + "Path": "{\"Id\":\"ManifestPropertyTypes\",\"Data\":{\"Properties\":[{\"Name\":\"Align\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"Align\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"AccessibleLabel\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"MaxLength\",\"Type\":\"Whole_None\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Mode\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Placeholder\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Required\",\"Type\":\"TwoOptions\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Type\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"ValidationState\",\"Type\":\"Enum\",\"ComplexType\":\"\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Value\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"\",\"IsPrimary\":true,\"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\":\"Fill\",\"Type\":\"SingleLine_Text\",\"ComplexType\":\"FillColor\",\"IsPrimary\":false,\"IsIncluded\":false},{\"Name\":\"Appearance\",\"Type\":\"Enum\",\"ComplexType\":\"None\",\"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\":\"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\":\"TriggerOutput\",\"Type\":\"Enum\",\"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\":\"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.54\",\"IsFirstParty\":true}}", + "Type": 3 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 11, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/TextInputCanvas.js", + "Type": 0 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 10, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.resx", + "Type": 2 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1025.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1026.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1027.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1028.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1029.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1030.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1031.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1032.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1033.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1035.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1036.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1037.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1038.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1040.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1041.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1042.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1043.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1044.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1045.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1046.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1048.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1049.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1050.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1051.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1053.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1054.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1055.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1057.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1058.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1060.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1061.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1062.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1063.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1066.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1069.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1081.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1086.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1087.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.1110.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2052.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2070.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.2074.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3076.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3082.json", + "Type": 5 + }, + { + "IsControlSpecific": true, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "/PCFControls/PowerApps_CoreControls_TextInputCanvas/strings/TextInputCanvas.3098.json", + "Type": 5 + }, + { + "IsControlSpecific": false, + "LoadingOrder": 13, + "ModifiedPath": "", + "Path": "{\"Id\":\"LocalizedStrings\",\"Data\":{\"LocStrings\":{\"TextInputCanvas\":\"Text input\",\"Align\":\"Align\",\"Align_Desc\":\"Display text using the selected text alignment.\",\"TextInputCanvas_Align\":\"Align\",\"TextInputCanvas_Align_Desc\":\"Display text using the selected text alignment.\",\"TextInputCanvas_Align_Start\":\"Start\",\"TextInputCanvas_Align_End\":\"End\",\"TextInputCanvas_Align_Center\":\"Center\",\"TextInputCanvas_Align_Justify\":\"Justify\",\"TextInputCanvas_AccessibleLabel\":\"Accessible label\",\"TextInputCanvas_AccessibleLabel_Desc\":\"Label for screen readers.\",\"TextInputCanvas_Mode\":\"Mode\",\"TextInputCanvas_Mode_Desc\":\"Type of text input: single line or multiline.\",\"TextInputCanvas_Mode_SingleLine\":\"Single line\",\"TextInputCanvas_Mode_Multiline\":\"Multiline\",\"TextInputCanvas_Required\":\"Required\",\"TextInputCanvas_Required_Desc\":\"Whether this control must contain text.\",\"TextInputCanvas_Value\":\"Value\",\"TextInputCanvas_Value_Desc\":\"Text that appears on a control or that the user types into a control.\",\"TextInputCanvas_Placeholder\":\"Placeholder text\",\"TextInputCanvas_Placeholder_Desc\":\"The placeholder text of the text input.\",\"TextInputCanvas_Type\":\"Type\",\"TextInputCanvas_Type_Desc\":\"Content type of text input: plain text, password, or search.\",\"TextInputCanvas_Type_Text\":\"Text\",\"TextInputCanvas_Type_Password\":\"Password\",\"TextInputCanvas_Type_Search\":\"Search\",\"TextInputCanvas_MaxLength\":\"Maximum length\",\"TextInputCanvas_MaxLength_Desc\":\"The maximum content length of the Text input.\",\"Base_Palette_Color\":\"Color palette\",\"Base_Palette_Color_description\":\"Choose a color palette that's different from the theme.\",\"TextInputCanvas_ValidationState\":\"Validation state\",\"TextInputCanvas_ValidationState_Desc\":\"The current status of the Text input, with regard to validation.\",\"TextInputCanvas_ValidationState_None\":\"None\",\"TextInputCanvas_ValidationState_Error\":\"Error\",\"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\",\"Fill\":\"Fill\",\"Fill_Description\":\"Background color of 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.\",\"BorderRadius\":\"Border radius\",\"BorderRadius_Description\":\"Roundedness of the control's corners. A value of 0 is perfectly square.\",\"PaddingTop\":\"Top\",\"PaddingTop_Description\":\"The value of the control's top padding.\",\"PaddingRight\":\"Right\",\"PaddingRight_Description\":\"The value of the control's right padding.\",\"PaddingBottom\":\"Bottom\",\"PaddingBottom_Description\":\"The value of the control's bottom padding.\",\"PaddingLeft\":\"Left\",\"PaddingLeft_Description\":\"The value of the control's left padding.\",\"HoverBorderColor\":\"Hover border color\",\"HoverBorderColor_Description\":\"Color of borders while hovering over the control.\",\"PressedBorderColor\":\"Pressed border color\",\"PressedBorderColor_Description\":\"Color of borders while pressing or selecting the control.\",\"FocusedBorderColor\":\"Focused border color\",\"FocusedBorderColor_Description\":\"Color of borders while the control has focus.\",\"DisabledBorderColor\":\"Disabled border color\",\"DisabledBorderColor_Description\":\"Color of borders while the control is disabled.\",\"Appearance\":\"Appearance\",\"Appearance_Description\":\"Appearance of the control's borders and fill\",\"Appearance_FilledDarker\":\"Filled Darker\",\"Appearance_FilledLighter\":\"Filled Lighter\",\"Appearance_Outline\":\"Outline\",\"TriggerOutput\":\"Trigger output\",\"TriggerOutput_Description\":\"When to trigger the OnChange function.\\r\\n\\r\\nFocusOut: Triggers OnChange only when the text input control loses focus.\\r\\n\\r\\nDelayed: Triggers OnChange after a half-second delay. Useful for delaying expensive operations until user completes inputting text (i.e. for filtering when input is used in other formulas).\\r\\n\\r\\nKeypress: Triggers OnChange immediately as the user types.\",\"TriggerOutput_Delayed\":\"Delayed\",\"TriggerOutput_FocusOut\":\"Focus out\",\"TriggerOutput_Keypress\":\"Key press\"}}}", + "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 + }, + { + "IsControlSpecific": false, + "LoadingOrder": 0, + "ModifiedPath": "", + "Path": "React/16.8.6/16.14.0", + "Type": 4 + } + ], + "SubscribedFunctionalities": { + "autoDisabledViewState": "true", + "supportResettableProperties": "true", + "supportSetFocus": "true" + }, + "Version": "0.0.54" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text_0.0.51.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text_0.0.51.json new file mode 100644 index 00000000..060d8ef0 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfControlTemplates/Text_0.0.51.json @@ -0,0 +1,1795 @@ +{ + "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": 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 + }, + "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": "", + "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": 2, + "WebDefaultValue": "" + }, + { + "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\":\"\"},\"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\":\"SingleLine_Text\",\"ComplexType\":\"VerticalAlign\",\"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.51\",\"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\",\"VerticalAlign\":\"Vertical align\",\"VerticalAlign_Desc\":\"Display text using the selected text verlitcal alignment.\",\"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.51" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_ButtonCanvas.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_ButtonCanvas.json new file mode 100644 index 00000000..65b27d4b --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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.45" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_InfoButtonCanvas.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_InfoButtonCanvas.json new file mode 100644 index 00000000..9a61a1ca --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_InfoButtonCanvas.json @@ -0,0 +1,100 @@ +{ + "Name": "PowerApps_CoreControls_InfoButtonCanvas", + "PcfConversions": [ + { + "Action": [ + { + "Name": "BasePaletteColor", + "Type": "add" + } + ], + "From": "0.0.15", + "To": "0.0.16" + }, + { + "Action": [ + { + "Name": "FontSize", + "Type": "add" + } + ], + "From": "0.0.17", + "To": "0.0.18" + }, + { + "Action": [ + { + "Name": "OnSelect", + "Type": "add" + }, + { + "Name": "OnChange", + "Type": "remove" + } + ], + "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.22", + "To": "0.0.23" + }, + { + "Action": [ + { + "Name": "IconColor", + "Type": "add" + }, + { + "Name": "PaddingTop", + "Type": "add" + }, + { + "Name": "PaddingRight", + "Type": "add" + }, + { + "Name": "PaddingBottom", + "Type": "add" + }, + { + "Name": "PaddingLeft", + "Type": "add" + }, + { + "Name": "IconSize", + "Type": "remove" + } + ], + "From": "0.0.30", + "To": "0.0.31" + } + ], + "Version": "0.0.33" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_TextCanvas.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_TextCanvas.json new file mode 100644 index 00000000..bc853f80 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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.51" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_TextInputCanvas.json b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_TextInputCanvas.json new file mode 100644 index 00000000..94e9d9f4 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/PcfConversions/PowerApps_CoreControls_TextInputCanvas.json @@ -0,0 +1,222 @@ +{ + "Name": "PowerApps_CoreControls_TextInputCanvas", + "PcfConversions": [ + { + "Action": [ + { + "Name": "MaxLength", + "Type": "add" + }, + { + "Name": "Placeholder", + "Type": "add" + }, + { + "Name": "Type", + "Type": "add" + } + ], + "From": "0.0.13", + "To": "0.0.14" + }, + { + "Action": [ + { + "Name": "BasePaletteColor", + "Type": "add" + } + ], + "From": "0.0.15", + "To": "0.0.16" + }, + { + "Action": [ + { + "Name": "ValidationState", + "Type": "add" + } + ], + "From": "0.0.16", + "To": "0.0.17" + }, + { + "Action": [ + { + "Name": "FontSize", + "Type": "add" + } + ], + "From": "0.0.18", + "To": "0.0.19" + }, + { + "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.21", + "To": "0.0.22" + }, + { + "Action": [ + { + "Name": "Align", + "Type": "add" + } + ], + "From": "0.0.22", + "To": "0.0.23" + }, + { + "Action": [ + { + "Name": "Appearance", + "Type": "add" + }, + { + "Name": "BorderColor", + "Type": "add" + }, + { + "Name": "BorderRadius", + "Type": "add" + }, + { + "Name": "BorderStyle", + "Type": "add" + }, + { + "Name": "BorderThickness", + "Type": "add" + }, + { + "Name": "DisabledBorderColor", + "Type": "add" + }, + { + "Name": "Fill", + "Type": "add" + }, + { + "Name": "FocusedBorderColor", + "Type": "add" + }, + { + "Name": "HoverBorderColor", + "Type": "add" + }, + { + "Name": "PaddingBottom", + "Type": "add" + }, + { + "Name": "PaddingLeft", + "Type": "add" + }, + { + "Name": "PaddingRight", + "Type": "add" + }, + { + "Name": "PaddingTop", + "Type": "add" + }, + { + "Name": "PressedBorderColor", + "Type": "add" + } + ], + "From": "0.0.26", + "To": "0.0.27" + }, + { + "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.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" + }, + { + "Action": [ + { + "Name": "TriggerOutput", + "Type": "add" + }, + { + "Name": "DelayOutput", + "Type": "remove" + } + ], + "From": "0.0.38", + "To": "0.0.39" + } + ], + "Version": "0.0.54" +} \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/button_2.2.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/button_2.2.0.xml new file mode 100644 index 00000000..2fb31df9 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/button_2.2.0.xml @@ -0,0 +1,230 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + +
+ + +
+]]> + + + The pressed state of the button. + data + boolean + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/gallery_2.15.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/gallery_2.15.0.xml new file mode 100644 index 00000000..ccbf8855 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/gallery_2.15.0.xml @@ -0,0 +1,767 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + + + + + + + + + + + + + ##gallery_IsSelected_Description## + data + + + Accessible label for a gallery item + data + ##gallery_ItemAccessibleLabel_DisplayName## + ##gallery_ItemAccessibleLabel_Tooltip## + + + + ##gallery_TemplateFill_Description## + ##gallery_TemplateFill_Tooltip## + design + color + ##gallery_TemplateFill_DisplayName## + + + + On select + ##gallery_OnSelect_Tooltip## + behavior + ##gallery_OnSelect_DisplayName## + + + + + + + ##gallery_Items_Description## + data + + ##gallery_Items_DisplayName## + ##gallery_Items_Tooltip## + + + + ##gallery_Default_Description## + data + Items + ##gallery_Default_DisplayName## + ##gallery_Default_Tooltip## + + + ##gallery_AllItems_Description## + data + Items + + + + ##gallery_AllItemsCount_Description## + data + + + + Selectable + data + ##gallery_Selectable_DisplayName## + ##gallery_Selectable_Tooltip## + + + ##gallery_Selected_Description## + data + Items + + + + ##gallery_VisibleIndex_Description## + data + ##gallery_VisibleIndex_DisplayName## + + + ##gallery_TemplateSize_Description## + design + templateSize + ##gallery_TemplateSize_DisplayName## + ##gallery_TemplateSize_Tooltip## + + + ##gallery_TemplateWidth_Description## + design + ##gallery_TemplateWidth_DisplayName## + + + + + ##gallery_TemplateHeight_Description## + design + ##gallery_TemplateHeight_DisplayName## + + + ##gallery_TemplatePadding_Description## + design + ##gallery_TemplatePadding_DisplayName## + templatePadding + ##gallery_TemplatePadding_Tooltip## + + + + + ##gallery_Transition_Description## + design + transition + ##gallery_Transition_DisplayName## + ##gallery_Transition_Tooltip## + + + ##gallery_ShowNavigation_Description## + design + boolean + ##gallery_ShowNavigation_DisplayName## + ##gallery_ShowNavigation_Tooltip## + + + ##gallery_NavigationStep_Description## + design + ##gallery_NavigationStep_DisplayName## + ##gallery_NavigationStep_Tooltip## + + + ShowScrollbar + ##gallery_ShowScrollbar_Tooltip## + design + boolean + ##gallery_ShowScrollbar_DisplayName## + + + Valid + data + ##commonProperties_Valid_DisplayName## + ##commonProperties_Valid_Tooltip## + + + + + + + + DelayItemLoading + design + boolean + ##gallery_DelayItemLoading_DisplayName## + ##gallery_DelayItemLoading_Tooltip## + + + LoadingSpinner + design + ##CommonProperties_LoadingSpinner_DisplayName## + ##CommonProperties_LoadingSpinner_Tooltip## + + + LoadingSpinner + design + color + ##CommonProperties_LoadingSpinnerColor_DisplayName## + ##CommonProperties_LoadingSpinnerColor_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/groupContainer_1.3.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/groupContainer_1.3.0.xml new file mode 100644 index 00000000..1c5f4db4 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/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/exploring-visual-cards-in-galleries/sourcecode/pkgs/htmlViewer_2.1.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/htmlViewer_2.1.0.xml new file mode 100644 index 00000000..abc91278 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/htmlViewer_2.1.0.xml @@ -0,0 +1,143 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + +
+
+
+
+
+
+
+
+ ]]>
+ + + HtmlViewer contents + data + ##htmlViewer_HtmlText_DisplayName## + ##htmlViewer_HtmlText_Tooltip## + + + + AutoHeight + design + ##CommonProperties_AutoHeight_DisplayName## + ##CommonProperties_AutoHeight_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/image_2.2.3.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/image_2.2.3.xml new file mode 100644 index 00000000..0436d5c8 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/image_2.2.3.xml @@ -0,0 +1,345 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + = 1 ? '0' : 1 - properties.Transparency(), + visibility: properties.Transparency() >= 1 ? 'hidden' : '' + }, + visible: properties.Visible + }"> + +
+
+ + + + +
+
+ + + + ]]>
+ + + Image content + true + data + ##image_Image_DisplayName## + ##CommonProperties_Image_Tooltip## + + + + Image transparency + design + ##image_Transparency_DisplayName## + ##image_Transparency_Tooltip## + + + Image stretch style + design + imagePosition + ##image_ImagePosition_DisplayName## + ##CommonProperties_ImagePosition_Tooltip## + + + CalculateOriginalDimensions + design + boolean + ##image_CalculateOriginalDimensions_DisplayName## + + + ImageRotation + design + ##image_ImageRotation_DisplayName## + ##image_ImageRotation_Tooltip## + + + FlipHorizontal + design + boolean + ##image_FlipHorizontal_DisplayName## + + + FlipVertical + design + boolean + ##image_FlipVertical_DisplayName## + + + ApplyEXIFOrientation + design + boolean + ##image_ApplyEXIFOrientation_DisplayName## + + + EXIFOrientation + design + ##image_EXIFOrientation_DisplayName## + + + OriginalWidth + design + imagePosition + ##image_OriginalWidth_DisplayName## + + + OriginalHeight + design + imagePosition + ##image_OriginalHeight_DisplayName## + + + DisplayedWidth + design + ##image_DisplayedWidth_DisplayName## + + + DisplayedHeight + design + ##image_DisplayedHeight_DisplayName## + + + OffsetX + design + ##image_OffsetX_DisplayName## + + + OffsetY + design + ##image_OffsetY_DisplayName## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/label_2.5.1.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/label_2.5.1.xml new file mode 100644 index 00000000..aa420973 --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/label_2.5.1.xml @@ -0,0 +1,340 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + = 0 ? 'button' : 'presentation', + 'aria-disabled': properties.TabIndex() >= 0 && viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit + }, + event: { + click: handleClick + }, + shortcut: { + provider: shortcutProvider, + enabled: shortcutsEnabled + }" + > + +
+
+ + +

+

+ + +

+

+ + +

+

+ + +

+

+ + + ]]>
+ + + + Live + data + ##label_Live_DisplayName## + ##label_Live_Tooltip## + + + + Line Height + design + ##label_LineHeight_DisplayName## + ##label_LineHeight_Tooltip## + lineWidth + + + Overflow + design + ##label_Overflow_DisplayName## + ##label_Overflow_Tooltip## + overflow + + + + AutoHeight + design + ##CommonProperties_AutoHeight_DisplayName## + ##CommonProperties_AutoHeight_Tooltip## + + + Wrap + design + ##label_Wrap_DisplayName## + ##label_Wrap_Tooltip## + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/rectangle_2.3.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/rectangle_2.3.0.xml new file mode 100644 index 00000000..dce0729a --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/rectangle_2.3.0.xml @@ -0,0 +1,147 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + = 0) && (viewState.displayMode() !== AppMagic.Constants.DisplayMode.Edit), + 'aria-hidden': properties.TabIndex() < 0 && !properties.AccessibleLabel() + }"> + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file diff --git a/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/timer_2.1.0.xml b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/timer_2.1.0.xml new file mode 100644 index 00000000..e40075ed --- /dev/null +++ b/samples/exploring-visual-cards-in-galleries/sourcecode/pkgs/timer_2.1.0.xml @@ -0,0 +1,283 @@ + + + TODO: Need license text here.

]]>
+ + + + + + + + +
+ +
+ + ]]>
+ + + When true, timer will start playing or continue to play. When false, timer stops playing + data + boolean + ##timer_Start_DisplayName## + ##timer_Start_Tooltip## + + + Duration value for the timer + data + ##timer_Duration_DisplayName## + ##timer_Duration_Tooltip## + + + When End is reached, reset Value property to 0 and continues + data + boolean + ##timer_Repeat_DisplayName## + ##timer_Repeat_Tooltip## + + + When transistioning from false to true, Resets timer + data + boolean + ##timer_Reset_DisplayName## + ##timer_Reset_Tooltip## + + + Automatically start timer when parent screen becomes active + data + boolean + ##timer_AutoStart_DisplayName## + ##timer_AutoStart_Tooltip## + + + Automatically pause timer when parent screen becomes inactive + data + boolean + ##timer_AutoPause_DisplayName## + ##timer_AutoPause_Tooltip## + + + Value of the timer in milliseconds + data + + + + Timer Start + behavior + ##timer_OnTimerStart_DisplayName## + ##timer_OnTimerStart_Tooltip## + + + Timer End + behavior + ##timer_OnTimerEnd_DisplayName## + ##timer_OnTimerEnd_Tooltip## + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
\ No newline at end of file