gitextract_84etpxc7/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── creator-kit-bug-report.md │ │ └── creator-kit-feature-request.md │ └── workflows/ │ └── sync-to-azdo.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CreatorKitAI/ │ ├── SolutionPackage/ │ │ ├── .gitignore │ │ ├── CreatorKitAI.cdsproj │ │ └── src/ │ │ ├── CanvasApps/ │ │ │ ├── cat_creatorkitaireferenceapp_8ea0d.meta.xml │ │ │ ├── cat_creatorkitaireferenceapp_8ea0d_AdditionalUris0_identity.json │ │ │ ├── cat_creatorkitaireferenceapp_8ea0d_BackgroundImageUri │ │ │ ├── cat_creatorkitaireferenceapp_8ea0d_DocumentUri.msapp │ │ │ └── src/ │ │ │ └── cat_creatorkitaireferenceapp_8ea0d/ │ │ │ ├── Assets/ │ │ │ │ └── SampleImage.json │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections/ │ │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources/ │ │ │ │ ├── 43b0dc67-68af-47ae-9a9c-9e69d396ba3e.json │ │ │ │ ├── AI Anomaly.json │ │ │ │ ├── AI Chart.json │ │ │ │ ├── AI Define.json │ │ │ │ ├── AI Describe Image.json │ │ │ │ ├── AI Diff Image.json │ │ │ │ ├── AI Emoji.json │ │ │ │ ├── AI Expand.json │ │ │ │ ├── AI Extract Categories.json │ │ │ │ ├── AI Fields from Image.json │ │ │ │ ├── AI Flowchart.json │ │ │ │ ├── AI Generate Headline.json │ │ │ │ ├── AI Generate Suggestions.json │ │ │ │ ├── AI Monochromatic Colors.json │ │ │ │ ├── AI Personalized Response.json │ │ │ │ ├── AI QnA Generator.json │ │ │ │ ├── AI Rating.json │ │ │ │ ├── AI Redact.json │ │ │ │ ├── AI Reply.json │ │ │ │ ├── AI Rewrite.json │ │ │ │ ├── AI Synonyms.json │ │ │ │ ├── AI Translate.json │ │ │ │ ├── AIFieldsFromImageResultCol.json │ │ │ │ ├── Canvas Apps.json │ │ │ │ ├── Custom API Request Parameters.json │ │ │ │ ├── Custom APIs.json │ │ │ │ ├── CustomGallerySample.json │ │ │ │ ├── LegendSample.json │ │ │ │ ├── PieChartSample.json │ │ │ │ ├── QnACollection.json │ │ │ │ ├── QnAIndexCollection.json │ │ │ │ ├── Samples.json │ │ │ │ ├── aiChartResponse.json │ │ │ │ ├── categoriesResult.json │ │ │ │ ├── colCategory.json │ │ │ │ ├── colChatMessages.json │ │ │ │ └── colDetails.json │ │ │ ├── Entropy/ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other/ │ │ │ │ ├── .gitignore │ │ │ │ ├── References/ │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ └── QualifiedValues.json │ │ │ │ └── Resources/ │ │ │ │ └── Controls/ │ │ │ │ ├── PowerCAT.AITeachingPopover.bundle.js │ │ │ │ ├── PowerCAT.APICaller.bundle.js │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ ├── PowerCAT.DonutChart.bundle.js │ │ │ │ ├── PowerCAT.FluentAIAssistant.bundle.js │ │ │ │ ├── PowerCAT.FluentAIOutputCard.bundle.js │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ ├── PowerCAT.Mermaid.bundle.js │ │ │ │ ├── PowerCAT.Nav.bundle.js │ │ │ │ ├── PowerCAT.TagList.bundle.js │ │ │ │ ├── css/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ └── strings/ │ │ │ │ ├── PowerCAT.AITeachingPopover.AITeachingPopover.1033.json │ │ │ │ ├── PowerCAT.AITeachingPopover.AITeachingPopover.1033.resx │ │ │ │ ├── PowerCAT.APICaller.APICaller.1033.json │ │ │ │ ├── PowerCAT.APICaller.APICaller.1033.resx │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.json │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.resx │ │ │ │ ├── PowerCAT.FluentAIAssistant.FluentAIAssistant.1033.json │ │ │ │ ├── PowerCAT.FluentAIAssistant.FluentAIAssistant.1033.resx │ │ │ │ ├── PowerCAT.FluentAIOutputCard.OutputCard.1033.json │ │ │ │ ├── PowerCAT.FluentAIOutputCard.OutputCard.1033.resx │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ ├── PowerCAT.Mermaid.Mermaid.1033.json │ │ │ │ ├── PowerCAT.Mermaid.Mermaid.1033.resx │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.json │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.resx │ │ │ │ ├── PowerCAT.TagList.TagList.1033.json │ │ │ │ └── PowerCAT.TagList.TagList.1033.resx │ │ │ ├── Src/ │ │ │ │ ├── AIAssistant Screen.fx.yaml │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── Components/ │ │ │ │ │ ├── AIEmoji.fx.yaml │ │ │ │ │ ├── AIEmoji.json │ │ │ │ │ ├── Component1.fx.yaml │ │ │ │ │ ├── Component1.json │ │ │ │ │ ├── IDScanner.fx.yaml │ │ │ │ │ └── IDScanner.json │ │ │ │ ├── EditorState/ │ │ │ │ │ ├── AIAssistant Screen.editorstate.json │ │ │ │ │ ├── AIEmoji.editorstate.json │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ ├── Component1.editorstate.json │ │ │ │ │ ├── Home Screen.editorstate.json │ │ │ │ │ ├── IDScanner.editorstate.json │ │ │ │ │ └── NoCredit Screen.editorstate.json │ │ │ │ ├── Home Screen.fx.yaml │ │ │ │ ├── NoCredit Screen.fx.yaml │ │ │ │ └── Themes.json │ │ │ └── pkgs/ │ │ │ ├── PcfControlTemplates/ │ │ │ │ ├── AI Output Card_0.0.32.json │ │ │ │ ├── AI Teaching popover_0.0.42.json │ │ │ │ ├── APICaller %28%25VERSION%25%29_0.0.23.json │ │ │ │ ├── Auto Width Label %281.1.39%29_1.1.39.json │ │ │ │ ├── Button_0.0.43.json │ │ │ │ ├── Dropdown_0.0.44.json │ │ │ │ ├── Fluent Details List %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Donut Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Fluent Icon %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Nav %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Tag List %281.1.39%29_1.1.39.json │ │ │ │ ├── FluentAI Assistance %280.0.9%29_0.0.9.json │ │ │ │ ├── Header_0.0.41.json │ │ │ │ ├── Link_0.0.40.json │ │ │ │ ├── Mermaid_0.0.1.json │ │ │ │ ├── Table_1.0.234.json │ │ │ │ ├── Text input_0.0.49.json │ │ │ │ └── Text_0.0.43.json │ │ │ ├── PcfConversions/ │ │ │ │ ├── Header.json │ │ │ │ ├── PowerAppsOneGrid.json │ │ │ │ ├── PowerApps_CoreControls_ButtonCanvas.json │ │ │ │ ├── PowerApps_CoreControls_DropdownCanvas.json │ │ │ │ ├── PowerApps_CoreControls_LinkCanvas.json │ │ │ │ ├── PowerApps_CoreControls_TextCanvas.json │ │ │ │ └── PowerApps_CoreControls_TextInputCanvas.json │ │ │ ├── PowerAppsOneGridTemplate_dataField_1.5.0.xml │ │ │ ├── TableDefinitions/ │ │ │ │ ├── 43b0dc67-68af-47ae-9a9c-9e69d396ba3e.json │ │ │ │ ├── Canvas Apps.json │ │ │ │ ├── Custom API Request Parameters.json │ │ │ │ ├── Custom APIs.json │ │ │ │ └── Samples.json │ │ │ ├── addMedia_2.2.1.xml │ │ │ ├── attachments_2.3.0.xml │ │ │ ├── cat_PowerCAT.FluentDetailsListTemplate_dataField_1.5.0.xml │ │ │ ├── cat_PowerCAT.NavTemplate_dataField_1.5.0.xml │ │ │ ├── form_2.4.2.xml │ │ │ ├── gallery_2.15.0.xml │ │ │ ├── groupContainer_1.3.0.xml │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ ├── image_2.2.3.xml │ │ │ ├── pcfDataField_1.5.0.xml │ │ │ ├── rating_2.1.0.xml │ │ │ ├── rectangle_2.3.0.xml │ │ │ └── timer_2.1.0.xml │ │ ├── Controls/ │ │ │ ├── cat_PowerCAT.AITeachingPopover/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── AITeachingPopover.1033.resx │ │ │ ├── cat_PowerCAT.FluentAIAssistant/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── FluentAIAssistant.1033.resx │ │ │ ├── cat_PowerCAT.FluentAIOutputCard/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── OutputCard.1033.resx │ │ │ └── cat_PowerCAT.Mermaid/ │ │ │ ├── ControlManifest.xml │ │ │ ├── ControlManifest.xml.data.xml │ │ │ ├── bundle.js │ │ │ └── strings/ │ │ │ └── Mermaid.1033.resx │ │ ├── Other/ │ │ │ ├── Customizations.xml │ │ │ └── Solution.xml │ │ ├── aipluginoperations/ │ │ │ ├── aiplugin.name=msdynaib_AIDefine,operationid=msdynaib_AIDefine/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_AIExpand,operationid=msdynaib_AIExpand/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_AIGenerateSuggestions,operationid=msdynaib_AIGenerateSuggestions/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_AINL2Ratings,operationid=msdynaib_AINL2Ratings/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_AIPersonalizedResponse,operationid=msdynaib_AIPersonalizedResponse/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_AIQnAGenerator,operationid=msdynaib_AIQnAGenerator/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_Customprompt124202362324AM,operationid=msdynaib_Customprompt124202362324AM/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_Customprompt228202435537PM,operationid=msdynaib_Customprompt228202435537PM/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_Customprompt228202450236PM,operationid=msdynaib_Customprompt228202450236PM/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_GenerateTitle,operationid=msdynaib_GenerateTitle/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_GetEmojiFromText,operationid=msdynaib_GetEmojiFromText/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_GetSynonyms,operationid=msdynaib_GetSynonyms/ │ │ │ │ └── aipluginoperation.xml │ │ │ ├── aiplugin.name=msdynaib_Rewrite,operationid=msdynaib_Rewrite/ │ │ │ │ └── aipluginoperation.xml │ │ │ └── aiplugin.name=msdynaib_TranslatetoTargetLanguage,operationid=msdynaib_TranslatetoTargetLanguage/ │ │ │ └── aipluginoperation.xml │ │ ├── aiplugins/ │ │ │ ├── msdynaib_AIDefine/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_AIExpand/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_AIGenerateSuggestions/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_AINL2Ratings/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_AIPersonalizedResponse/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_AIQnAGenerator/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_Customprompt124202362324AM/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_Customprompt228202435537PM/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_Customprompt228202450236PM/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_GenerateTitle/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_GetEmojiFromText/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_GetSynonyms/ │ │ │ │ └── aiplugin.xml │ │ │ ├── msdynaib_Rewrite/ │ │ │ │ └── aiplugin.xml │ │ │ └── msdynaib_TranslatetoTargetLanguage/ │ │ │ └── aiplugin.xml │ │ └── customapis/ │ │ ├── msdyn_aibdptaidefinef8eeeb6c0eac4a9db5027e4807163afa/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptaiexpand99d8246ef28549328a076c1572eba975/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ ├── Number_20of_20words/ │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptaigeneratesuggestionsc9130978a0814b35ba173d8d51c771b9/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── param/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptainl2ratingsbaf4e04fb86e48d6b317c98f6b951e03/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Comment/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptaipalette9eed90139df84d1fa914faf83e2bd028/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── param/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptaipersonalizedresponse479c9eaf788947e794aa76caea0de83f/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── input/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptaiqnagenerator54b0c71e86834c2f9a60ea59b9d43dc4/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptcustomprompt124202362324ambbd51cc43b914f54958cd773f856a323/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptcustomprompt228202435537pmbd0d86826d054e2ba9efc694a371f6fb/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptcustomprompt228202450236pmfa03a8f2db2741658a366f471cb5b2b7/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ ├── Special_20character/ │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptgeneratetitle68fdf9bdd5c34a448aa260183afafe0c/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text_cdfe0abf684cf78634f/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptgetemojifromtext67f6033f559a425194ee0aca257f4cd5/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text_f9c863e2b2664663be7/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptgetsynonyms48da36ecfd1449c991593611c3aecaf7/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ └── Text/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ ├── msdyn_aibdptrewritec1632d4d7d4643488bfad9adfbdd6c47/ │ │ │ ├── customapi.xml │ │ │ ├── customapirequestparameters/ │ │ │ │ ├── Original_20Text/ │ │ │ │ │ └── customapirequestparameter.xml │ │ │ │ └── Rewrite_20Text_20Conditions/ │ │ │ │ └── customapirequestparameter.xml │ │ │ └── customapiresponseproperties/ │ │ │ ├── finishReason/ │ │ │ │ └── customapiresponseproperty.xml │ │ │ └── text/ │ │ │ └── customapiresponseproperty.xml │ │ └── msdyn_aibdpttranslatetotargetlanguaged345426b2e2a4062b1a16507d644d53a/ │ │ ├── customapi.xml │ │ └── customapiresponseproperties/ │ │ ├── finishReason/ │ │ │ └── customapiresponseproperty.xml │ │ └── text/ │ │ └── customapiresponseproperty.xml │ ├── config/ │ │ ├── Prod/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ ├── Test/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ └── Validation/ │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── deploy-prod-CreatorKitAI.yml │ ├── deploy-test-CreatorKitAI.yml │ └── deploy-validation-CreatorKitAI.yml ├── CreatorKitCore/ │ ├── SolutionPackage/ │ │ ├── .gitignore │ │ ├── CreatorKitCore.cdsproj │ │ └── src/ │ │ ├── CanvasApps/ │ │ │ ├── cat_powercatcomponentlibrary_0be3a.meta.xml │ │ │ ├── cat_powercatcomponentlibrary_0be3a_AdditionalUris0_identity.json │ │ │ ├── cat_powercatcomponentlibrary_0be3a_BackgroundImageUri │ │ │ ├── cat_powercatcomponentlibrary_0be3a_DocumentUri.msapp │ │ │ └── src/ │ │ │ └── cat_powercatcomponentlibrary_0be3a/ │ │ │ ├── Assets/ │ │ │ │ └── SampleImage.json │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections/ │ │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources/ │ │ │ │ ├── Activities.json │ │ │ │ ├── CustomGallerySample.json │ │ │ │ └── DropDownSample.json │ │ │ ├── Entropy/ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other/ │ │ │ │ ├── .gitignore │ │ │ │ └── References/ │ │ │ │ ├── ModernThemes.json │ │ │ │ ├── NamedValues.json │ │ │ │ └── QualifiedValues.json │ │ │ ├── Src/ │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── Components/ │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── ExpandMenu.fx.yaml │ │ │ │ │ ├── ExpandMenu.json │ │ │ │ │ ├── Header.fx.yaml │ │ │ │ │ ├── Header.json │ │ │ │ │ ├── Material.fx.yaml │ │ │ │ │ ├── Material.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ └── Panel.json │ │ │ │ ├── EditorState/ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ ├── ExpandMenu.editorstate.json │ │ │ │ │ ├── Header.editorstate.json │ │ │ │ │ ├── HomeScreen.editorstate.json │ │ │ │ │ ├── Material.editorstate.json │ │ │ │ │ └── Panel.editorstate.json │ │ │ │ ├── HomeScreen.fx.yaml │ │ │ │ └── Themes.json │ │ │ └── pkgs/ │ │ │ ├── PcfControlTemplates/ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ └── Label_1.6.0.json │ │ │ ├── PcfConversions/ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ ├── TableDefinitions/ │ │ │ │ └── Activities.json │ │ │ ├── gallery_2.15.0.xml │ │ │ ├── groupContainer_1.3.0.xml │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ ├── icon_2.5.0.xml │ │ │ ├── image_2.2.3.xml │ │ │ ├── label_2.5.1.xml │ │ │ └── rectangle_2.3.0.xml │ │ ├── Controls/ │ │ │ ├── cat_PowerCAT.AutoWidthLabel/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── AutoWidthLabel.css │ │ │ │ └── strings/ │ │ │ │ └── AutoWidthLabel.1033.resx │ │ │ ├── cat_PowerCAT.Breadcrumb/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Breadcrumb.1033.resx │ │ │ ├── cat_PowerCAT.Calendar/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── Calendar.css │ │ │ │ └── strings/ │ │ │ │ └── Calendar.1033.resx │ │ │ ├── cat_PowerCAT.Card/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Card.1033.resx │ │ │ ├── cat_PowerCAT.CommandBar/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── CommandBar.css │ │ │ │ └── strings/ │ │ │ │ └── CommandBar.1033.resx │ │ │ ├── cat_PowerCAT.ContextMenu/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── ContextMenu.1033.resx │ │ │ ├── cat_PowerCAT.DonutChart/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── DonutChart.1033.resx │ │ │ ├── cat_PowerCAT.Elevation/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── Elevation.css │ │ │ │ └── strings/ │ │ │ │ └── Elevation.1033.resx │ │ │ ├── cat_PowerCAT.Facepile/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Facepile.1033.resx │ │ │ ├── cat_PowerCAT.FluentDetailsList/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── DetailsList.css │ │ │ │ └── strings/ │ │ │ │ └── DetailsList.1033.resx │ │ │ ├── cat_PowerCAT.GaugeChart/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── GaugeChart.1033.resx │ │ │ ├── cat_PowerCAT.HorizontalBarChart/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── HorizontalBarChart.1033.resx │ │ │ ├── cat_PowerCAT.Icon/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Icon.1033.resx │ │ │ ├── cat_PowerCAT.KeyboardShortcuts/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── KeyboardShortcuts.1033.resx │ │ │ ├── cat_PowerCAT.MaskedTextField/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── MaskedTextField.1033.resx │ │ │ ├── cat_PowerCAT.Nav/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── FluentNav.1033.resx │ │ │ ├── cat_PowerCAT.PeoplePicker/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── PeoplePicker.css │ │ │ │ └── strings/ │ │ │ │ └── PeoplePicker.1033.resx │ │ │ ├── cat_PowerCAT.Persona/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Persona.1033.resx │ │ │ ├── cat_PowerCAT.Picker/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── TagPicker.css │ │ │ │ └── strings/ │ │ │ │ └── TagPicker.1033.resx │ │ │ ├── cat_PowerCAT.Pivot/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Pivot.1033.resx │ │ │ ├── cat_PowerCAT.ProgressIndicator/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── ProgressIndicator.1033.resx │ │ │ ├── cat_PowerCAT.ResizableTextarea/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── ResizableTextarea.css │ │ │ │ └── strings/ │ │ │ │ └── ResizableTextarea.1033.resx │ │ │ ├── cat_PowerCAT.SearchBox/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── SearchBox.1033.resx │ │ │ ├── cat_PowerCAT.Shimmer/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Shimmer.1033.resx │ │ │ ├── cat_PowerCAT.SpinButton/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── SpinButton.1033.resx │ │ │ ├── cat_PowerCAT.Spinner/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Spinner.1033.resx │ │ │ ├── cat_PowerCAT.StackedBarChart/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── StackBarChart.1033.resx │ │ │ ├── cat_PowerCAT.SubwayNav/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── Subwaynav.1033.resx │ │ │ ├── cat_PowerCAT.TagList/ │ │ │ │ ├── ControlManifest.xml │ │ │ │ ├── ControlManifest.xml.data.xml │ │ │ │ ├── bundle.js │ │ │ │ └── strings/ │ │ │ │ └── TagList.1033.resx │ │ │ └── cat_PowerCAT.ThemeDesigner/ │ │ │ ├── ControlManifest.xml │ │ │ ├── ControlManifest.xml.data.xml │ │ │ ├── bundle.js │ │ │ └── strings/ │ │ │ └── FluentThemeDesigner.1033.resx │ │ ├── Entities/ │ │ │ └── cat_Sample/ │ │ │ ├── Entity.xml │ │ │ ├── FormXml/ │ │ │ │ ├── card/ │ │ │ │ │ ├── {73536272-63e9-4125-9676-154090ca1317}.xml │ │ │ │ │ └── {73536272-63e9-4125-9676-154090ca1317}_managed.xml │ │ │ │ ├── main/ │ │ │ │ │ ├── {803b0ad5-1e39-4c8a-9f6d-e42093110fea}.xml │ │ │ │ │ └── {803b0ad5-1e39-4c8a-9f6d-e42093110fea}_managed.xml │ │ │ │ └── quick/ │ │ │ │ ├── {59274d36-0d7b-4f7f-8ed0-93c330781828}.xml │ │ │ │ └── {59274d36-0d7b-4f7f-8ed0-93c330781828}_managed.xml │ │ │ ├── RibbonDiff.xml │ │ │ └── SavedQueries/ │ │ │ ├── {65f77f14-34e1-4b52-8bad-f2620084f133}.xml │ │ │ ├── {6a73483c-55c5-4687-9098-55e2311c720e}.xml │ │ │ ├── {9f88f7fd-5bb3-4f94-a621-8672f2378fcf}.xml │ │ │ ├── {b21f1f8e-6aba-4d47-b948-727753942a79}.xml │ │ │ ├── {e60cbf19-3396-ef11-8a6a-000d3a3728e3}.xml │ │ │ ├── {f91cb2a9-8586-43f4-b72b-c5503c2a126d}.xml │ │ │ └── {fadaabe2-91ab-41ae-a6d1-5738ce67cf68}.xml │ │ └── Other/ │ │ ├── Customizations.xml │ │ ├── Relationships/ │ │ │ ├── BusinessUnit.xml │ │ │ ├── FileAttachment.xml │ │ │ ├── Owner.xml │ │ │ ├── SystemUser.xml │ │ │ └── Team.xml │ │ ├── Relationships.xml │ │ └── Solution.xml │ ├── config/ │ │ ├── Prod/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ ├── Test/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ └── Validation/ │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── deploy-prod-CreatorKitCore.yml │ ├── deploy-test-CreatorKitCore.yml │ └── deploy-validation-CreatorKitCore.yml ├── CreatorKitReferencesCanvas/ │ ├── SolutionPackage/ │ │ ├── .gitignore │ │ ├── CreatorKitReferencesCanvas.cdsproj │ │ └── src/ │ │ ├── CanvasApps/ │ │ │ ├── cat_creatorkitcontrolreferenceapp_d66f8.meta.xml │ │ │ ├── cat_creatorkitcontrolreferenceapp_d66f8_AdditionalUris0_identity.json │ │ │ ├── cat_creatorkitcontrolreferenceapp_d66f8_BackgroundImageUri │ │ │ ├── cat_creatorkitcontrolreferenceapp_d66f8_DocumentUri.msapp │ │ │ ├── cat_fluentthemedesigner_00e67.meta.xml │ │ │ ├── cat_fluentthemedesigner_00e67_BackgroundImageUri │ │ │ ├── cat_fluentthemedesigner_00e67_DocumentUri.msapp │ │ │ ├── cat_fluentuicanvastemplate_51940.meta.xml │ │ │ ├── cat_fluentuicanvastemplate_51940_AdditionalUris0_identity.json │ │ │ ├── cat_fluentuicanvastemplate_51940_BackgroundImageUri │ │ │ ├── cat_fluentuicanvastemplate_51940_DocumentUri.msapp │ │ │ └── src/ │ │ │ ├── cat_creatorkitcontrolreferenceapp_d66f8/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── Accounts.json │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── Office365Users.json │ │ │ │ │ ├── PreSelectedUserCollection.json │ │ │ │ │ ├── UserCollection.json │ │ │ │ │ ├── UserPersonas.json │ │ │ │ │ ├── colAccounts.json │ │ │ │ │ ├── colAccountsExpand.json │ │ │ │ │ ├── colColors.json │ │ │ │ │ ├── colComponentTypes.json │ │ │ │ │ ├── colFiles.json │ │ │ │ │ ├── colIcons.json │ │ │ │ │ ├── colLayoutRows.json │ │ │ │ │ ├── colRowImages.json │ │ │ │ │ ├── colRows.json │ │ │ │ │ ├── colScreens.json │ │ │ │ │ ├── colSelectedTags.json │ │ │ │ │ ├── colSimpleTagList.json │ │ │ │ │ ├── colSimpleTags.json │ │ │ │ │ ├── colTags.json │ │ │ │ │ ├── colTaskTags.json │ │ │ │ │ ├── colTasks.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Breadcrumb.bundle.js │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.ContextMenu.bundle.js │ │ │ │ │ ├── PowerCAT.DonutChart.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Facepile.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.GaugeChart.bundle.js │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.bundle.js │ │ │ │ │ ├── PowerCAT.Nav.bundle.js │ │ │ │ │ ├── PowerCAT.PeoplePicker.bundle.js │ │ │ │ │ ├── PowerCAT.Persona.bundle.js │ │ │ │ │ ├── PowerCAT.Picker.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.ProgressIndicator.bundle.js │ │ │ │ │ ├── PowerCAT.ResizableTextarea.bundle.js │ │ │ │ │ ├── PowerCAT.SearchBox.bundle.js │ │ │ │ │ ├── PowerCAT.SpinButton.bundle.js │ │ │ │ │ ├── PowerCAT.Spinner.bundle.js │ │ │ │ │ ├── PowerCAT.StackedBarChart.bundle.js │ │ │ │ │ ├── PowerCAT.SubwayNav.bundle.js │ │ │ │ │ ├── PowerCAT.TagList.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ │ ├── PowerCAT.PeoplePicker.PeoplePicker.css │ │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.css │ │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.json │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.resx │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.ContextMenu.ContextMenu.1033.json │ │ │ │ │ ├── PowerCAT.ContextMenu.ContextMenu.1033.resx │ │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.json │ │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.json │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.json │ │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.resx │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.json │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.KeyboardShortcuts.1033.json │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.KeyboardShortcuts.1033.resx │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.json │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.resx │ │ │ │ │ ├── PowerCAT.PeoplePicker.PeoplePicker.1033.json │ │ │ │ │ ├── PowerCAT.PeoplePicker.PeoplePicker.1033.resx │ │ │ │ │ ├── PowerCAT.Persona.Persona.1033.json │ │ │ │ │ ├── PowerCAT.Persona.Persona.1033.resx │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.json │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.ProgressIndicator.ProgressIndicator.1033.json │ │ │ │ │ ├── PowerCAT.ProgressIndicator.ProgressIndicator.1033.resx │ │ │ │ │ ├── PowerCAT.ResizableTextarea.ResizableTextarea.1033.json │ │ │ │ │ ├── PowerCAT.ResizableTextarea.ResizableTextarea.1033.resx │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.json │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.resx │ │ │ │ │ ├── PowerCAT.SpinButton.SpinButton.1033.json │ │ │ │ │ ├── PowerCAT.SpinButton.SpinButton.1033.resx │ │ │ │ │ ├── PowerCAT.Spinner.Spinner.1033.json │ │ │ │ │ ├── PowerCAT.Spinner.Spinner.1033.resx │ │ │ │ │ ├── PowerCAT.StackedBarChart.StackBarChart.1033.json │ │ │ │ │ ├── PowerCAT.StackedBarChart.StackBarChart.1033.resx │ │ │ │ │ ├── PowerCAT.SubwayNav.Subwaynav.1033.json │ │ │ │ │ ├── PowerCAT.SubwayNav.Subwaynav.1033.resx │ │ │ │ │ ├── PowerCAT.TagList.TagList.1033.json │ │ │ │ │ └── PowerCAT.TagList.TagList.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── AutoWidthLabel.fx.yaml │ │ │ │ │ │ ├── AutoWidthLabel.json │ │ │ │ │ │ ├── BestPractices.fx.yaml │ │ │ │ │ │ ├── BestPractices.json │ │ │ │ │ │ ├── BestPractices_10.fx.yaml │ │ │ │ │ │ ├── BestPractices_10.json │ │ │ │ │ │ ├── BreadcrumbBasic.fx.yaml │ │ │ │ │ │ ├── BreadcrumbBasic.json │ │ │ │ │ │ ├── CommandBarColors.fx.yaml │ │ │ │ │ │ ├── CommandBarColors.json │ │ │ │ │ │ ├── CommandBarDisabled.fx.yaml │ │ │ │ │ │ ├── CommandBarDisabled.json │ │ │ │ │ │ ├── CommandBarFocus.fx.yaml │ │ │ │ │ │ ├── CommandBarFocus.json │ │ │ │ │ │ ├── CommandBarOverflowItems.fx.yaml │ │ │ │ │ │ ├── CommandBarOverflowItems.json │ │ │ │ │ │ ├── ContextMenuSimple.fx.yaml │ │ │ │ │ │ ├── ContextMenuSimple.json │ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ │ ├── DetailsListBasic.fx.yaml │ │ │ │ │ │ ├── DetailsListBasic.json │ │ │ │ │ │ ├── DetailsListCellTypes.fx.yaml │ │ │ │ │ │ ├── DetailsListCellTypes.json │ │ │ │ │ │ ├── DetailsListExpand.fx.yaml │ │ │ │ │ │ ├── DetailsListExpand.json │ │ │ │ │ │ ├── DetailsListLayout.fx.yaml │ │ │ │ │ │ ├── DetailsListLayout.json │ │ │ │ │ │ ├── DetailsListPaging.fx.yaml │ │ │ │ │ │ ├── DetailsListPaging.json │ │ │ │ │ │ ├── DetailsListResponsive.fx.yaml │ │ │ │ │ │ ├── DetailsListResponsive.json │ │ │ │ │ │ ├── ElevationHover.fx.yaml │ │ │ │ │ │ ├── ElevationHover.json │ │ │ │ │ │ ├── ElevationPopup.fx.yaml │ │ │ │ │ │ ├── ElevationPopup.json │ │ │ │ │ │ ├── ElevationSummary.fx.yaml │ │ │ │ │ │ ├── ElevationSummary.json │ │ │ │ │ │ ├── Facepile.fx.yaml │ │ │ │ │ │ ├── Facepile.json │ │ │ │ │ │ ├── IconActionButton.fx.yaml │ │ │ │ │ │ ├── IconActionButton.json │ │ │ │ │ │ ├── IconSimple.fx.yaml │ │ │ │ │ │ ├── IconSimple.json │ │ │ │ │ │ ├── KeyboardShortcuts.fx.yaml │ │ │ │ │ │ ├── KeyboardShortcuts.json │ │ │ │ │ │ ├── LeftNav.fx.yaml │ │ │ │ │ │ ├── LeftNav.json │ │ │ │ │ │ ├── MultiHtmlSectionText.fx.yaml │ │ │ │ │ │ ├── MultiHtmlSectionText.json │ │ │ │ │ │ ├── NavBasic.fx.yaml │ │ │ │ │ │ ├── NavBasic.json │ │ │ │ │ │ ├── PeoplePickerO365.fx.yaml │ │ │ │ │ │ ├── PeoplePickerO365.json │ │ │ │ │ │ ├── PivotItemStyles.fx.yaml │ │ │ │ │ │ ├── PivotItemStyles.json │ │ │ │ │ │ ├── PivotShowHidePivotItem.fx.yaml │ │ │ │ │ │ ├── PivotShowHidePivotItem.json │ │ │ │ │ │ ├── PreSelectPeoplePicker.fx.yaml │ │ │ │ │ │ ├── PreSelectPeoplePicker.json │ │ │ │ │ │ ├── ProgressIndicator.fx.yaml │ │ │ │ │ │ ├── ProgressIndicator.json │ │ │ │ │ │ ├── ResizableTextArea.fx.yaml │ │ │ │ │ │ ├── ResizableTextArea.json │ │ │ │ │ │ ├── ResizableTextArea_Controlled.fx.yaml │ │ │ │ │ │ ├── ResizableTextArea_Controlled.json │ │ │ │ │ │ ├── SampleAppCodeHeader.fx.yaml │ │ │ │ │ │ ├── SampleAppCodeHeader.json │ │ │ │ │ │ ├── SpinnerComp.fx.yaml │ │ │ │ │ │ ├── SpinnerComp.json │ │ │ │ │ │ ├── SpinnerComp_2.fx.yaml │ │ │ │ │ │ ├── SpinnerComp_2.json │ │ │ │ │ │ ├── SpinnerComp_3.fx.yaml │ │ │ │ │ │ ├── SpinnerComp_3.json │ │ │ │ │ │ ├── TagListBasic.fx.yaml │ │ │ │ │ │ ├── TagListBasic.json │ │ │ │ │ │ ├── TagPickerBasic.fx.yaml │ │ │ │ │ │ ├── TagPickerBasic.json │ │ │ │ │ │ ├── TagPickerCustomStyle.fx.yaml │ │ │ │ │ │ ├── TagPickerCustomStyle.json │ │ │ │ │ │ ├── TagsInGalleries.fx.yaml │ │ │ │ │ │ ├── TagsInGalleries.json │ │ │ │ │ │ ├── TextPanel.fx.yaml │ │ │ │ │ │ ├── TextPanel.json │ │ │ │ │ │ ├── TextPanel_3.fx.yaml │ │ │ │ │ │ └── TextPanel_3.json │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── AutoWidthLabel.editorstate.json │ │ │ │ │ │ ├── BestPractices.editorstate.json │ │ │ │ │ │ ├── BestPractices_10.editorstate.json │ │ │ │ │ │ ├── BreadcrumbBasic.editorstate.json │ │ │ │ │ │ ├── CommandBarColors.editorstate.json │ │ │ │ │ │ ├── CommandBarDisabled.editorstate.json │ │ │ │ │ │ ├── CommandBarFocus.editorstate.json │ │ │ │ │ │ ├── CommandBarOverflowItems.editorstate.json │ │ │ │ │ │ ├── ContextMenuSimple.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── CustomIcon.editorstate.json │ │ │ │ │ │ ├── DetailsListBasic.editorstate.json │ │ │ │ │ │ ├── DetailsListCellTypes.editorstate.json │ │ │ │ │ │ ├── DetailsListExpand.editorstate.json │ │ │ │ │ │ ├── DetailsListLayout.editorstate.json │ │ │ │ │ │ ├── DetailsListPaging.editorstate.json │ │ │ │ │ │ ├── DetailsListResponsive.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── ElevationHover.editorstate.json │ │ │ │ │ │ ├── ElevationPopup.editorstate.json │ │ │ │ │ │ ├── ElevationSummary.editorstate.json │ │ │ │ │ │ ├── ExpandMenu.editorstate.json │ │ │ │ │ │ ├── Facepile.editorstate.json │ │ │ │ │ │ ├── Header.editorstate.json │ │ │ │ │ │ ├── IconActionButton.editorstate.json │ │ │ │ │ │ ├── IconSimple.editorstate.json │ │ │ │ │ │ ├── KeyboardShortcuts.editorstate.json │ │ │ │ │ │ ├── LeftNav.editorstate.json │ │ │ │ │ │ ├── MultiHtmlSectionText.editorstate.json │ │ │ │ │ │ ├── NavBasic.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── PeoplePickerO365.editorstate.json │ │ │ │ │ │ ├── PivotItemStyles.editorstate.json │ │ │ │ │ │ ├── PivotShowHidePivotItem.editorstate.json │ │ │ │ │ │ ├── PreSelectPeoplePicker.editorstate.json │ │ │ │ │ │ ├── ProgressIndicator.editorstate.json │ │ │ │ │ │ ├── ResizableTextArea.editorstate.json │ │ │ │ │ │ ├── ResizableTextArea_Controlled.editorstate.json │ │ │ │ │ │ ├── SampleAppCodeHeader.editorstate.json │ │ │ │ │ │ ├── SpinnerComp.editorstate.json │ │ │ │ │ │ ├── SpinnerComp_2.editorstate.json │ │ │ │ │ │ ├── SpinnerComp_3.editorstate.json │ │ │ │ │ │ ├── TagListBasic.editorstate.json │ │ │ │ │ │ ├── TagPickerBasic.editorstate.json │ │ │ │ │ │ ├── TagPickerCustomStyle.editorstate.json │ │ │ │ │ │ ├── TagsInGalleries.editorstate.json │ │ │ │ │ │ ├── TextPanel.editorstate.json │ │ │ │ │ │ ├── TextPanel_3.editorstate.json │ │ │ │ │ │ ├── scrAllControlsHolder.editorstate.json │ │ │ │ │ │ ├── scrAutoWidthLabel.editorstate.json │ │ │ │ │ │ ├── scrBreadcrumb.editorstate.json │ │ │ │ │ │ ├── scrCommandBar.editorstate.json │ │ │ │ │ │ ├── scrContextMenu.editorstate.json │ │ │ │ │ │ ├── scrDetailsList_Basic.editorstate.json │ │ │ │ │ │ ├── scrDetailsList_CellTypes.editorstate.json │ │ │ │ │ │ ├── scrDetailsList_Sorting.editorstate.json │ │ │ │ │ │ ├── scrDialog.editorstate.json │ │ │ │ │ │ ├── scrDonut.editorstate.json │ │ │ │ │ │ ├── scrElevation.editorstate.json │ │ │ │ │ │ ├── scrExpandMenu.editorstate.json │ │ │ │ │ │ ├── scrFacepile.editorstate.json │ │ │ │ │ │ ├── scrGauge.editorstate.json │ │ │ │ │ │ ├── scrHorizontalbar.editorstate.json │ │ │ │ │ │ ├── scrIcon.editorstate.json │ │ │ │ │ │ ├── scrKeyboardShortcut.editorstate.json │ │ │ │ │ │ ├── scrNav.editorstate.json │ │ │ │ │ │ ├── scrPanel.editorstate.json │ │ │ │ │ │ ├── scrPeoplePicker.editorstate.json │ │ │ │ │ │ ├── scrPersona.editorstate.json │ │ │ │ │ │ ├── scrPivot.editorstate.json │ │ │ │ │ │ ├── scrProgressIndicator.editorstate.json │ │ │ │ │ │ ├── scrResizableTextArea.editorstate.json │ │ │ │ │ │ ├── scrSearchBox.editorstate.json │ │ │ │ │ │ ├── scrSpinButton.editorstate.json │ │ │ │ │ │ ├── scrSpinner.editorstate.json │ │ │ │ │ │ ├── scrStackbar.editorstate.json │ │ │ │ │ │ ├── scrSubwayNav.editorstate.json │ │ │ │ │ │ ├── scrTagList.editorstate.json │ │ │ │ │ │ ├── scrTagPicker.editorstate.json │ │ │ │ │ │ └── scrTemplate.editorstate.json │ │ │ │ │ ├── Themes.json │ │ │ │ │ ├── scrAllControlsHolder.fx.yaml │ │ │ │ │ ├── scrAutoWidthLabel.fx.yaml │ │ │ │ │ ├── scrBreadcrumb.fx.yaml │ │ │ │ │ ├── scrCommandBar.fx.yaml │ │ │ │ │ ├── scrContextMenu.fx.yaml │ │ │ │ │ ├── scrDetailsList_Basic.fx.yaml │ │ │ │ │ ├── scrDetailsList_CellTypes.fx.yaml │ │ │ │ │ ├── scrDetailsList_Sorting.fx.yaml │ │ │ │ │ ├── scrDialog.fx.yaml │ │ │ │ │ ├── scrDonut.fx.yaml │ │ │ │ │ ├── scrElevation.fx.yaml │ │ │ │ │ ├── scrExpandMenu.fx.yaml │ │ │ │ │ ├── scrFacepile.fx.yaml │ │ │ │ │ ├── scrGauge.fx.yaml │ │ │ │ │ ├── scrHorizontalbar.fx.yaml │ │ │ │ │ ├── scrIcon.fx.yaml │ │ │ │ │ ├── scrKeyboardShortcut.fx.yaml │ │ │ │ │ ├── scrNav.fx.yaml │ │ │ │ │ ├── scrPanel.fx.yaml │ │ │ │ │ ├── scrPeoplePicker.fx.yaml │ │ │ │ │ ├── scrPersona.fx.yaml │ │ │ │ │ ├── scrPivot.fx.yaml │ │ │ │ │ ├── scrProgressIndicator.fx.yaml │ │ │ │ │ ├── scrResizableTextArea.fx.yaml │ │ │ │ │ ├── scrSearchBox.fx.yaml │ │ │ │ │ ├── scrSpinButton.fx.yaml │ │ │ │ │ ├── scrSpinner.fx.yaml │ │ │ │ │ ├── scrStackbar.fx.yaml │ │ │ │ │ ├── scrSubwayNav.fx.yaml │ │ │ │ │ ├── scrTagList.fx.yaml │ │ │ │ │ ├── scrTagPicker.fx.yaml │ │ │ │ │ └── scrTemplate.fx.yaml │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── CustomIcon.fx.yaml │ │ │ │ │ ├── CustomIcon.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── ExpandMenu.fx.yaml │ │ │ │ │ ├── ExpandMenu.json │ │ │ │ │ ├── Header.fx.yaml │ │ │ │ │ ├── Header.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ └── Panel.json │ │ │ │ ├── Microsoft_CoreControls_ComboBoxTemplate_dataField_1.5.0.xml │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Breadcrumb %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Command Bar %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Context Menu %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Details List %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Donut Chart %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Elevation %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Facepile %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Gauge Chart %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Horizontal bar Chart %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Icon %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Nav %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent PeoplePicker %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Persona %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Picker %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Pivot %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Progress Indicator %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent SearchBox %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent SpinButton %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Spinner %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Fluent Stacked bar Chart %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ ├── Fluent Tag List %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Keyboard Shortcuts %281.1.35%29_1.1.35.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ ├── Resizable Text Area %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Slider_1.6.1.json │ │ │ │ │ ├── SubwayNav %281.1.35%29 Preview_1.1.35.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ ├── Microsoft_CoreControls_Slider.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── Wadl/ │ │ │ │ │ └── Office365Users.xml │ │ │ │ ├── button_2.2.0.xml │ │ │ │ ├── gallery_2.15.0.xml │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.3.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.5.0.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ ├── slider_2.1.0.xml │ │ │ │ └── text_2.3.2.xml │ │ │ ├── cat_fluentthemedesigner_00e67/ │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ └── varParsedTheme.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.ThemeDesigner.bundle.js │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.ThemeDesigner.FluentThemeDesigner.1033.json │ │ │ │ │ └── PowerCAT.ThemeDesigner.FluentThemeDesigner.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Theme Designer Screen.editorstate.json │ │ │ │ │ ├── Theme Designer Screen.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ └── Panel.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ └── Fluent Theme Designer %281.0.22%29_1.0.22.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Button.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ └── cat_fluentuicanvastemplate_51940/ │ │ │ ├── Assets/ │ │ │ │ └── SampleImage.json │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections/ │ │ │ │ └── Connections.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources/ │ │ │ │ ├── ComboBoxSample.json │ │ │ │ ├── CustomGallerySample.json │ │ │ │ └── Samples.json │ │ │ ├── Entropy/ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other/ │ │ │ │ ├── .gitignore │ │ │ │ ├── References/ │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ └── QualifiedValues.json │ │ │ │ └── Resources/ │ │ │ │ └── Controls/ │ │ │ │ ├── PowerCAT.Breadcrumb.bundle.js │ │ │ │ ├── PowerCAT.Card.bundle.js │ │ │ │ ├── PowerCAT.DonutChart.bundle.js │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ ├── PowerCAT.GaugeChart.bundle.js │ │ │ │ ├── PowerCAT.HorizontalBarChart.bundle.js │ │ │ │ ├── PowerCAT.Nav.bundle.js │ │ │ │ ├── PowerCAT.StackedBarChart.bundle.js │ │ │ │ ├── css/ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ └── strings/ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.json │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.resx │ │ │ │ ├── PowerCAT.Card.Card.1033.json │ │ │ │ ├── PowerCAT.Card.Card.1033.resx │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.json │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.resx │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.json │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.resx │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.json │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.resx │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.json │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.resx │ │ │ │ ├── PowerCAT.StackedBarChart.StackBarChart.1033.json │ │ │ │ └── PowerCAT.StackedBarChart.StackBarChart.1033.resx │ │ │ ├── Src/ │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── Components/ │ │ │ │ │ ├── CardHeader.fx.yaml │ │ │ │ │ ├── CardHeader.json │ │ │ │ │ ├── CardItem.fx.yaml │ │ │ │ │ ├── CardItem.json │ │ │ │ │ ├── PageHeader.fx.yaml │ │ │ │ │ ├── PageHeader.json │ │ │ │ │ ├── SmallCard.fx.yaml │ │ │ │ │ ├── SmallCard.json │ │ │ │ │ ├── StackNumber.fx.yaml │ │ │ │ │ └── StackNumber.json │ │ │ │ ├── DashboardScreen.fx.yaml │ │ │ │ ├── EditorState/ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ ├── CardHeader.editorstate.json │ │ │ │ │ ├── CardItem.editorstate.json │ │ │ │ │ ├── DashboardScreen.editorstate.json │ │ │ │ │ ├── EmptyStateScreen.editorstate.json │ │ │ │ │ ├── FeatureLandingScreen.editorstate.json │ │ │ │ │ ├── FormScreen.editorstate.json │ │ │ │ │ ├── HubLandingScreen.editorstate.json │ │ │ │ │ ├── ListScreen.editorstate.json │ │ │ │ │ ├── PageHeader.editorstate.json │ │ │ │ │ ├── PaneListScreen.editorstate.json │ │ │ │ │ ├── SmallCard.editorstate.json │ │ │ │ │ ├── StackNumber.editorstate.json │ │ │ │ │ ├── __colors__.editorstate.json │ │ │ │ │ ├── __components__.editorstate.json │ │ │ │ │ └── __typeramp__.editorstate.json │ │ │ │ ├── EmptyStateScreen.fx.yaml │ │ │ │ ├── FeatureLandingScreen.fx.yaml │ │ │ │ ├── FormScreen.fx.yaml │ │ │ │ ├── HubLandingScreen.fx.yaml │ │ │ │ ├── ListScreen.fx.yaml │ │ │ │ ├── PaneListScreen.fx.yaml │ │ │ │ ├── Themes.json │ │ │ │ ├── __colors__.fx.yaml │ │ │ │ ├── __components__.fx.yaml │ │ │ │ └── __typeramp__.fx.yaml │ │ │ └── pkgs/ │ │ │ ├── PcfControlTemplates/ │ │ │ │ ├── Button_0.0.43.json │ │ │ │ ├── Dropdown_0.0.44.json │ │ │ │ ├── Fluent Breadcrumb %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Card %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Fluent Details List %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Donut Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Fluent Gauge Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Fluent Horizontal bar Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Fluent Nav %281.1.39%29_1.1.39.json │ │ │ │ ├── Fluent Stacked bar Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ ├── Icon_0.0.7.json │ │ │ │ ├── Information button_0.0.31.json │ │ │ │ ├── Label_1.6.0.json │ │ │ │ ├── Link_0.0.40.json │ │ │ │ ├── Slider_1.0.29.json │ │ │ │ ├── Spinner_1.4.3.json │ │ │ │ ├── Tab list_2.2.26.json │ │ │ │ ├── Text input_0.0.49.json │ │ │ │ ├── Text_0.0.43.json │ │ │ │ └── Toolbar_2.0.2.json │ │ │ ├── PcfConversions/ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ ├── PowerApps_CoreControls_ButtonCanvas.json │ │ │ │ ├── PowerApps_CoreControls_DropdownCanvas.json │ │ │ │ ├── PowerApps_CoreControls_Icon.json │ │ │ │ ├── PowerApps_CoreControls_InfoButtonCanvas.json │ │ │ │ ├── PowerApps_CoreControls_LinkCanvas.json │ │ │ │ ├── PowerApps_CoreControls_Slider.json │ │ │ │ ├── PowerApps_CoreControls_Spinner.json │ │ │ │ ├── PowerApps_CoreControls_TabList.json │ │ │ │ ├── PowerApps_CoreControls_TextCanvas.json │ │ │ │ ├── PowerApps_CoreControls_TextInputCanvas.json │ │ │ │ └── PowerApps_CoreControls_Toolbar.json │ │ │ ├── PowerApps_CoreControls_DropdownCanvasTemplate_dataField_1.5.0.xml │ │ │ ├── PowerApps_CoreControls_TabListTemplate_dataField_1.5.0.xml │ │ │ ├── PowerApps_CoreControls_ToolbarTemplate_dataField_1.5.0.xml │ │ │ ├── TableDefinitions/ │ │ │ │ └── Samples.json │ │ │ ├── cat_PowerCAT.FluentDetailsListTemplate_dataField_1.5.0.xml │ │ │ ├── form_2.4.2.xml │ │ │ ├── gallery_2.15.0.xml │ │ │ ├── groupContainer_1.3.0.xml │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ ├── icon_2.5.0.xml │ │ │ ├── image_2.2.3.xml │ │ │ ├── label_2.5.1.xml │ │ │ └── rectangle_2.3.0.xml │ │ └── Other/ │ │ ├── Customizations.xml │ │ └── Solution.xml │ ├── config/ │ │ ├── Prod/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ ├── Test/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ └── Validation/ │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── deploy-prod-CreatorKitReferencesCanvas.yml │ ├── deploy-test-CreatorKitReferencesCanvas.yml │ └── deploy-validation-CreatorKitReferencesCanvas.yml ├── CreatorKitReferencesMDA/ │ ├── SolutionPackage/ │ │ ├── .gitignore │ │ ├── CreatorKitReferencesMDA.cdsproj │ │ └── src/ │ │ ├── AppModuleSiteMaps/ │ │ │ ├── cat_CreatorKitReferenceApp/ │ │ │ │ ├── AppModuleSiteMap.xml │ │ │ │ └── AppModuleSiteMap_managed.xml │ │ │ └── cat_TemplateApp/ │ │ │ ├── AppModuleSiteMap.xml │ │ │ └── AppModuleSiteMap_managed.xml │ │ ├── AppModules/ │ │ │ ├── cat_CreatorKitReferenceApp/ │ │ │ │ ├── AppModule.xml │ │ │ │ └── AppModule_managed.xml │ │ │ └── cat_TemplateApp/ │ │ │ ├── AppModule.xml │ │ │ └── AppModule_managed.xml │ │ ├── CanvasApps/ │ │ │ ├── cat_autowidthlabel_53db5.meta.xml │ │ │ ├── cat_autowidthlabel_53db5_BackgroundImageUri │ │ │ ├── cat_autowidthlabel_53db5_DocumentUri.msapp │ │ │ ├── cat_breadcrumbpage_8963e.meta.xml │ │ │ ├── cat_breadcrumbpage_8963e_BackgroundImageUri │ │ │ ├── cat_breadcrumbpage_8963e_DocumentUri.msapp │ │ │ ├── cat_calendarpage_cb349.meta.xml │ │ │ ├── cat_calendarpage_cb349_BackgroundImageUri │ │ │ ├── cat_calendarpage_cb349_DocumentUri.msapp │ │ │ ├── cat_contextmenupage_7df18.meta.xml │ │ │ ├── cat_contextmenupage_7df18_BackgroundImageUri │ │ │ ├── cat_contextmenupage_7df18_DocumentUri.msapp │ │ │ ├── cat_creatorkitreferencepage_60a17.meta.xml │ │ │ ├── cat_creatorkitreferencepage_60a17_BackgroundImageUri │ │ │ ├── cat_creatorkitreferencepage_60a17_DocumentUri.msapp │ │ │ ├── cat_custompagetemplate_231d0.meta.xml │ │ │ ├── cat_custompagetemplate_231d0_BackgroundImageUri │ │ │ ├── cat_custompagetemplate_231d0_DocumentUri.msapp │ │ │ ├── cat_detailslistbasicpage_07690.meta.xml │ │ │ ├── cat_detailslistbasicpage_07690_BackgroundImageUri │ │ │ ├── cat_detailslistbasicpage_07690_DocumentUri.msapp │ │ │ ├── cat_detailslistbasicpage_46cc7.meta.xml │ │ │ ├── cat_detailslistbasicpage_46cc7_BackgroundImageUri │ │ │ ├── cat_detailslistbasicpage_46cc7_DocumentUri.msapp │ │ │ ├── cat_dialogpanel_15d96.meta.xml │ │ │ ├── cat_dialogpanel_15d96_BackgroundImageUri │ │ │ ├── cat_dialogpanel_15d96_DocumentUri.msapp │ │ │ ├── cat_elevationpage_28669.meta.xml │ │ │ ├── cat_elevationpage_28669_BackgroundImageUri │ │ │ ├── cat_elevationpage_28669_DocumentUri.msapp │ │ │ ├── cat_expandmenu_e71c4.meta.xml │ │ │ ├── cat_expandmenu_e71c4_BackgroundImageUri │ │ │ ├── cat_expandmenu_e71c4_DocumentUri.msapp │ │ │ ├── cat_facepile_10ba0.meta.xml │ │ │ ├── cat_facepile_10ba0_BackgroundImageUri │ │ │ ├── cat_facepile_10ba0_DocumentUri.msapp │ │ │ ├── cat_facepilepage_13c32.meta.xml │ │ │ ├── cat_facepilepage_13c32_BackgroundImageUri │ │ │ ├── cat_facepilepage_13c32_DocumentUri.msapp │ │ │ ├── cat_fluentuicustompagetemplate_e3ec8.meta.xml │ │ │ ├── cat_fluentuicustompagetemplate_e3ec8_AdditionalUris0_identity.json │ │ │ ├── cat_fluentuicustompagetemplate_e3ec8_BackgroundImageUri │ │ │ ├── cat_fluentuicustompagetemplate_e3ec8_DocumentUri.msapp │ │ │ ├── cat_homepage_8d348.meta.xml │ │ │ ├── cat_homepage_8d348_BackgroundImageUri │ │ │ ├── cat_homepage_8d348_DocumentUri.msapp │ │ │ ├── cat_iconpage_e2422.meta.xml │ │ │ ├── cat_iconpage_e2422_BackgroundImageUri │ │ │ ├── cat_iconpage_e2422_DocumentUri.msapp │ │ │ ├── cat_keyboardshortcuts_5ca22.meta.xml │ │ │ ├── cat_keyboardshortcuts_5ca22_BackgroundImageUri │ │ │ ├── cat_keyboardshortcuts_5ca22_DocumentUri.msapp │ │ │ ├── cat_navpage_18ad8.meta.xml │ │ │ ├── cat_navpage_18ad8_BackgroundImageUri │ │ │ ├── cat_navpage_18ad8_DocumentUri.msapp │ │ │ ├── cat_pagingreferencesaveselections_211ae.meta.xml │ │ │ ├── cat_pagingreferencesaveselections_211ae_AdditionalUris0_identity.json │ │ │ ├── cat_pagingreferencesaveselections_211ae_BackgroundImageUri │ │ │ ├── cat_pagingreferencesaveselections_211ae_DocumentUri.msapp │ │ │ ├── cat_peoplepicker_80157.meta.xml │ │ │ ├── cat_peoplepicker_80157_BackgroundImageUri │ │ │ ├── cat_peoplepicker_80157_DocumentUri.msapp │ │ │ ├── cat_pivotpage_f0b2a.meta.xml │ │ │ ├── cat_pivotpage_f0b2a_BackgroundImageUri │ │ │ ├── cat_pivotpage_f0b2a_DocumentUri.msapp │ │ │ ├── cat_progressindicatorpage_9ea28.meta.xml │ │ │ ├── cat_progressindicatorpage_9ea28_BackgroundImageUri │ │ │ ├── cat_progressindicatorpage_9ea28_DocumentUri.msapp │ │ │ ├── cat_resizabletextarea_eb7d1.meta.xml │ │ │ ├── cat_resizabletextarea_eb7d1_BackgroundImageUri │ │ │ ├── cat_resizabletextarea_eb7d1_DocumentUri.msapp │ │ │ ├── cat_searchboxpage_2dd0f.meta.xml │ │ │ ├── cat_searchboxpage_2dd0f_BackgroundImageUri │ │ │ ├── cat_searchboxpage_2dd0f_DocumentUri.msapp │ │ │ ├── cat_shimmerpage_9b5cd.meta.xml │ │ │ ├── cat_shimmerpage_9b5cd_BackgroundImageUri │ │ │ ├── cat_shimmerpage_9b5cd_DocumentUri.msapp │ │ │ ├── cat_spinbuttonpage_4c2cb.meta.xml │ │ │ ├── cat_spinbuttonpage_4c2cb_BackgroundImageUri │ │ │ ├── cat_spinbuttonpage_4c2cb_DocumentUri.msapp │ │ │ ├── cat_spinnerpage_39ec0.meta.xml │ │ │ ├── cat_spinnerpage_39ec0_BackgroundImageUri │ │ │ ├── cat_spinnerpage_39ec0_DocumentUri.msapp │ │ │ ├── cat_subwaynavpage_b2b78.meta.xml │ │ │ ├── cat_subwaynavpage_b2b78_BackgroundImageUri │ │ │ ├── cat_subwaynavpage_b2b78_DocumentUri.msapp │ │ │ ├── cat_taglist_6a134.meta.xml │ │ │ ├── cat_taglist_6a134_BackgroundImageUri │ │ │ ├── cat_taglist_6a134_DocumentUri.msapp │ │ │ ├── cat_tagpicker_ca530.meta.xml │ │ │ ├── cat_tagpicker_ca530_BackgroundImageUri │ │ │ ├── cat_tagpicker_ca530_DocumentUri.msapp │ │ │ ├── cr7a3_compdescription_1c3b2.meta.xml │ │ │ ├── cr7a3_compdescription_1c3b2_BackgroundImageUri │ │ │ ├── cr7a3_compdescription_1c3b2_DocumentUri.msapp │ │ │ ├── cr7a3_personapage_404d9.meta.xml │ │ │ ├── cr7a3_personapage_404d9_BackgroundImageUri │ │ │ ├── cr7a3_personapage_404d9_DocumentUri.msapp │ │ │ └── src/ │ │ │ ├── cat_autowidthlabel_53db5/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Auto Width Label Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Auto Width Label Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %280.0.22%29_0.0.22.json │ │ │ │ │ ├── Fluent Elevation %280.0.22%29_0.0.22.json │ │ │ │ │ ├── Fluent Icon %280.0.22%29_0.0.22.json │ │ │ │ │ ├── Fluent Pivot %280.0.22%29_0.0.22.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ └── slider_2.1.0.xml │ │ │ ├── cat_breadcrumbpage_8963e/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Breadcrumb.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.json │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Breadcrumb Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Breadcrumb Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Fluent Breadcrumb %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ └── slider_2.1.0.xml │ │ │ ├── cat_calendarpage_cb349/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Calendar.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Calendar.Calendar.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Calendar.Calendar.1033.json │ │ │ │ │ ├── PowerCAT.Calendar.Calendar.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Calendar Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Calendar Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Calendar %281.0.8%29 Preview_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_contextmenupage_7df18/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.ContextMenu.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.ContextMenu.ContextMenu.1033.json │ │ │ │ │ ├── PowerCAT.ContextMenu.ContextMenu.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── ContextMenu Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ContextMenu Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Context Menu %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_creatorkitreferencepage_60a17/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── CommandBar Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── CommandBar Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Command Bar %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_custompagetemplate_231d0/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ └── Connections.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ └── Accounts.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.SearchBox.bundle.js │ │ │ │ │ ├── PowerCAT.Shimmer.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.json │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.resx │ │ │ │ │ ├── PowerCAT.Shimmer.Shimmer.1033.json │ │ │ │ │ └── PowerCAT.Shimmer.Shimmer.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── SearchBox.fx.yaml │ │ │ │ │ │ └── SearchBox.json │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Home Screen.editorstate.json │ │ │ │ │ │ └── SearchBox.editorstate.json │ │ │ │ │ ├── Home Screen.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Fluent Command Bar %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent Details List %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent Icon %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent SearchBox %281.1.29%29 Preview_1.1.29.json │ │ │ │ │ ├── Fluent Shimmer %281.1.29%29 Preview_1.1.29.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── TableDefinitions/ │ │ │ │ │ └── Accounts.json │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── image_2.2.2.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── text_2.3.2.xml │ │ │ ├── cat_detailslistbasicpage_07690/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ └── Connections.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── Accounts.json │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── colAccounts.json │ │ │ │ │ ├── colAccountsExpand.json │ │ │ │ │ ├── colFiles.json │ │ │ │ │ ├── colIcons.json │ │ │ │ │ ├── colLayoutRows.json │ │ │ │ │ ├── colRowImages.json │ │ │ │ │ ├── colRows.json │ │ │ │ │ ├── colTags.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── DetailList Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── DetailList Page.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Command Bar %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Details List %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Elevation %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Icon %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Pivot %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── TableDefinitions/ │ │ │ │ │ └── Accounts.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ ├── slider_2.1.0.xml │ │ │ │ └── text_2.3.2.xml │ │ │ ├── cat_detailslistbasicpage_46cc7/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel Page.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Panel Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_dialogpanel_15d96/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Dialog Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog Page.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_elevationpage_28669/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Elevation Page.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Elevation Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Icon %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.1.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_expandmenu_e71c4/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Dataverse Screen.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dataverse Screen.editorstate.json │ │ │ │ │ │ ├── ExpandMenu Page.editorstate.json │ │ │ │ │ │ ├── ExpandMenu.editorstate.json │ │ │ │ │ │ ├── Header.editorstate.json │ │ │ │ │ │ ├── PowerAutomate Screen.editorstate.json │ │ │ │ │ │ ├── PowerBI Screen.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── ExpandMenu Page.fx.yaml │ │ │ │ │ ├── PowerAutomate Screen.fx.yaml │ │ │ │ │ ├── PowerBI Screen.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── ExpandMenu.fx.yaml │ │ │ │ │ ├── ExpandMenu.json │ │ │ │ │ ├── Header.fx.yaml │ │ │ │ │ ├── Header.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.1.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_facepile_10ba0/ │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ └── NamedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.Facepile.bundle.js │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.json │ │ │ │ │ └── PowerCAT.Facepile.Facepile.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ └── Screen1.editorstate.json │ │ │ │ │ ├── Screen1.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ └── PcfControlTemplates/ │ │ │ │ └── Fluent Facepile %28%25VERSION%25%29_0.0.1.json │ │ │ ├── cat_facepilepage_13c32/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── Office365Users.json │ │ │ │ │ ├── UserPersonas.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Facepile.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.json │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Calendar Page.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Calendar Page.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Fluent Facepile %281.0.9%29 Preview_1.0.9.json │ │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Slider_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_Slider.json │ │ │ │ ├── Wadl/ │ │ │ │ │ └── Office365Users.xml │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_fluentuicustompagetemplate_e3ec8/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ └── Connections.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComboBoxSample.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ └── Samples.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.Breadcrumb.bundle.js │ │ │ │ │ ├── PowerCAT.Card.bundle.js │ │ │ │ │ ├── PowerCAT.DonutChart.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.GaugeChart.bundle.js │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.bundle.js │ │ │ │ │ ├── PowerCAT.StackedBarChart.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.json │ │ │ │ │ ├── PowerCAT.Breadcrumb.Breadcrumb.1033.resx │ │ │ │ │ ├── PowerCAT.Card.Card.1033.json │ │ │ │ │ ├── PowerCAT.Card.Card.1033.resx │ │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.json │ │ │ │ │ ├── PowerCAT.DonutChart.DonutChart.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.json │ │ │ │ │ ├── PowerCAT.GaugeChart.GaugeChart.1033.resx │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.json │ │ │ │ │ ├── PowerCAT.HorizontalBarChart.HorizontalBarChart.1033.resx │ │ │ │ │ ├── PowerCAT.StackedBarChart.StackBarChart.1033.json │ │ │ │ │ └── PowerCAT.StackedBarChart.StackBarChart.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── CardHeader.fx.yaml │ │ │ │ │ │ ├── CardHeader.json │ │ │ │ │ │ ├── CardItem.fx.yaml │ │ │ │ │ │ ├── CardItem.json │ │ │ │ │ │ ├── PageHeader.fx.yaml │ │ │ │ │ │ ├── PageHeader.json │ │ │ │ │ │ ├── SmallCard.fx.yaml │ │ │ │ │ │ ├── SmallCard.json │ │ │ │ │ │ ├── StackNumber.fx.yaml │ │ │ │ │ │ └── StackNumber.json │ │ │ │ │ ├── DashboardScreen.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── CardHeader.editorstate.json │ │ │ │ │ │ ├── CardItem.editorstate.json │ │ │ │ │ │ ├── DashboardScreen.editorstate.json │ │ │ │ │ │ ├── EmptyStateScreen.editorstate.json │ │ │ │ │ │ ├── FeatureLandingScreen.editorstate.json │ │ │ │ │ │ ├── FormScreen.editorstate.json │ │ │ │ │ │ ├── HubLandingScreen.editorstate.json │ │ │ │ │ │ ├── ListScreen.editorstate.json │ │ │ │ │ │ ├── PageHeader.editorstate.json │ │ │ │ │ │ ├── PaneListScreen.editorstate.json │ │ │ │ │ │ ├── SmallCard.editorstate.json │ │ │ │ │ │ ├── StackNumber.editorstate.json │ │ │ │ │ │ ├── __colors__.editorstate.json │ │ │ │ │ │ ├── __components__.editorstate.json │ │ │ │ │ │ └── __typeramp__.editorstate.json │ │ │ │ │ ├── EmptyStateScreen.fx.yaml │ │ │ │ │ ├── FeatureLandingScreen.fx.yaml │ │ │ │ │ ├── FormScreen.fx.yaml │ │ │ │ │ ├── HubLandingScreen.fx.yaml │ │ │ │ │ ├── ListScreen.fx.yaml │ │ │ │ │ ├── PaneListScreen.fx.yaml │ │ │ │ │ ├── Themes.json │ │ │ │ │ ├── __colors__.fx.yaml │ │ │ │ │ ├── __components__.fx.yaml │ │ │ │ │ └── __typeramp__.fx.yaml │ │ │ │ └── pkgs/ │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Button_0.0.43.json │ │ │ │ │ ├── Dropdown_0.0.44.json │ │ │ │ │ ├── Fluent Breadcrumb %281.1.39%29_1.1.39.json │ │ │ │ │ ├── Fluent Card %281.1.39%29 Preview_1.1.39.json │ │ │ │ │ ├── Fluent Details List %281.1.39%29_1.1.39.json │ │ │ │ │ ├── Fluent Donut Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ │ ├── Fluent Gauge Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ │ ├── Fluent Horizontal bar Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ │ ├── Fluent Stacked bar Chart %281.1.39%29 Preview_1.1.39.json │ │ │ │ │ ├── Icon_0.0.7.json │ │ │ │ │ ├── Information button_0.0.31.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ ├── Link_0.0.40.json │ │ │ │ │ ├── Slider_1.0.29.json │ │ │ │ │ ├── Spinner_1.4.3.json │ │ │ │ │ ├── Tab list_2.2.26.json │ │ │ │ │ ├── Text input_0.0.49.json │ │ │ │ │ ├── Text_0.0.43.json │ │ │ │ │ └── Toolbar_2.0.2.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ ├── PowerApps_CoreControls_ButtonCanvas.json │ │ │ │ │ ├── PowerApps_CoreControls_DropdownCanvas.json │ │ │ │ │ ├── PowerApps_CoreControls_Icon.json │ │ │ │ │ ├── PowerApps_CoreControls_InfoButtonCanvas.json │ │ │ │ │ ├── PowerApps_CoreControls_LinkCanvas.json │ │ │ │ │ ├── PowerApps_CoreControls_Slider.json │ │ │ │ │ ├── PowerApps_CoreControls_Spinner.json │ │ │ │ │ ├── PowerApps_CoreControls_TabList.json │ │ │ │ │ ├── PowerApps_CoreControls_TextCanvas.json │ │ │ │ │ ├── PowerApps_CoreControls_TextInputCanvas.json │ │ │ │ │ └── PowerApps_CoreControls_Toolbar.json │ │ │ │ ├── PowerApps_CoreControls_DropdownCanvasTemplate_dataField_1.5.0.xml │ │ │ │ ├── PowerApps_CoreControls_TabListTemplate_dataField_1.5.0.xml │ │ │ │ ├── PowerApps_CoreControls_ToolbarTemplate_dataField_1.5.0.xml │ │ │ │ ├── TableDefinitions/ │ │ │ │ │ └── Samples.json │ │ │ │ ├── cat_PowerCAT.FluentDetailsListTemplate_dataField_1.5.0.xml │ │ │ │ ├── form_2.4.2.xml │ │ │ │ ├── gallery_2.15.0.xml │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.3.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_homepage_8d348/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ └── CustomGallerySample.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ └── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Home Page.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Home Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ └── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── image_2.2.1.xml │ │ │ │ └── label_2.5.1.xml │ │ │ ├── cat_iconpage_e2422/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Icons Page.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Icons Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Details List %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Icon %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_keyboardshortcuts_5ca22/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── colAccounts.json │ │ │ │ │ ├── colFiles.json │ │ │ │ │ ├── colIcons.json │ │ │ │ │ ├── colRowImages.json │ │ │ │ │ ├── colRows.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.ResizableTextarea.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.KeyboardShortcuts.1033.json │ │ │ │ │ ├── PowerCAT.KeyboardShortcuts.KeyboardShortcuts.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.ResizableTextarea.ResizableTextarea.1033.json │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Keyboard shortcuts Page.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Keyboard shortcuts Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Keyboard Shortcuts %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Resizable Text Area %281.0.8%29_1.0.8.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_navpage_18ad8/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Nav.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.json │ │ │ │ │ ├── PowerCAT.Nav.FluentNav.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Nav Page.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Nav Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Nav %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_pagingreferencesaveselections_211ae/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ └── Connections.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ └── Accounts.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── ModernThemes.json │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.SearchBox.bundle.js │ │ │ │ │ ├── PowerCAT.Shimmer.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.json │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.resx │ │ │ │ │ ├── PowerCAT.Shimmer.Shimmer.1033.json │ │ │ │ │ └── PowerCAT.Shimmer.Shimmer.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── SearchBox.fx.yaml │ │ │ │ │ │ └── SearchBox.json │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── Home Screen.editorstate.json │ │ │ │ │ │ └── SearchBox.editorstate.json │ │ │ │ │ ├── Home Screen.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Fluent Command Bar %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent Details List %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent Icon %281.1.29%29_1.1.29.json │ │ │ │ │ ├── Fluent SearchBox %281.1.29%29 Preview_1.1.29.json │ │ │ │ │ ├── Fluent Shimmer %281.1.29%29 Preview_1.1.29.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── TableDefinitions/ │ │ │ │ │ └── Accounts.json │ │ │ │ ├── groupContainer_1.3.0.xml │ │ │ │ ├── image_2.2.3.xml │ │ │ │ ├── pcfDataField_1.5.0.xml │ │ │ │ └── text_2.3.2.xml │ │ │ ├── cat_peoplepicker_80157/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── Office365Users.json │ │ │ │ │ ├── PreSelectedUserCollection.json │ │ │ │ │ ├── UserCollection.json │ │ │ │ │ ├── colComponentTypes.json │ │ │ │ │ ├── colSelectedTags.json │ │ │ │ │ ├── colSimpleTags.json │ │ │ │ │ ├── colTags.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Facepile.bundle.js │ │ │ │ │ ├── PowerCAT.PeoplePicker.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.PeoplePicker.PeoplePicker.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.json │ │ │ │ │ ├── PowerCAT.Facepile.Facepile.1033.resx │ │ │ │ │ ├── PowerCAT.PeoplePicker.PeoplePicker.1033.json │ │ │ │ │ ├── PowerCAT.PeoplePicker.PeoplePicker.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── People Pickers.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── People Pickers.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Fluent Facepile %281.0.9%29 Preview_1.0.9.json │ │ │ │ │ ├── Fluent PeoplePicker %28%25VERSION%25%29 Preview_0.0.1.json │ │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── Wadl/ │ │ │ │ │ └── Office365Users.xml │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_pivotpage_f0b2a/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Pivot Page.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Pivot Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── rectangle_2.3.0.xml │ │ │ │ └── slider_2.1.0.xml │ │ │ ├── cat_progressindicatorpage_9ea28/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.ProgressIndicator.bundle.js │ │ │ │ │ ├── PowerCAT.ResizableTextarea.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.ProgressIndicator.ProgressIndicator.1033.json │ │ │ │ │ ├── PowerCAT.ProgressIndicator.ProgressIndicator.1033.resx │ │ │ │ │ ├── PowerCAT.ResizableTextarea.ResizableTextarea.1033.json │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── ProgressIndicator Page.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── ProgressIndicator Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Progress Indicator %281.0.8%29 Preview_1.0.8.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ ├── Resizable Text Area %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Slider_1.6.1.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ ├── Microsoft_CoreControls_Slider.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_resizabletextarea_eb7d1/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.ResizableTextarea.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.ResizableTextarea.ResizableTextarea.1033.json │ │ │ │ │ └── PowerCAT.ResizableTextarea.ResizableTextarea.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── ResizableTextAreaPage.editorstate.json │ │ │ │ │ ├── ResizableTextAreaPage.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Resizable Text Area %281.0.9%29_1.0.9.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_searchboxpage_2dd0f/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── colColors.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ ├── currentCompSamplesCol.json │ │ │ │ │ └── fluentUIIconsCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.SearchBox.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ └── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.SearchBox.SearchBox.1033.json │ │ │ │ │ └── PowerCAT.SearchBox.SearchBox.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── SearchBoxPage.editorstate.json │ │ │ │ │ ├── SearchBoxPage.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.14%29_1.0.14.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Details List %281.0.14%29_1.0.14.json │ │ │ │ │ ├── Fluent Elevation %281.0.14%29_1.0.14.json │ │ │ │ │ ├── Fluent Pivot %281.0.14%29_1.0.14.json │ │ │ │ │ ├── Fluent SearchBox %281.0.14%29 Preview_1.0.14.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_shimmerpage_9b5cd/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.Shimmer.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.Shimmer.Shimmer.1033.json │ │ │ │ │ └── PowerCAT.Shimmer.Shimmer.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── Shimmer Page.editorstate.json │ │ │ │ │ ├── Shimmer Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Shimmer %281.0.8%29 Preview_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_spinbuttonpage_4c2cb/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── colColors.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ ├── currentCompSamplesCol.json │ │ │ │ │ └── fluentUIIconsCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.SpinButton.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.SpinButton.SpinButton.1033.json │ │ │ │ │ └── PowerCAT.SpinButton.SpinButton.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── SpinButtonPage.editorstate.json │ │ │ │ │ ├── SpinButtonPage.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.16%29_1.0.16.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.16%29_1.0.16.json │ │ │ │ │ ├── Fluent Pivot %281.0.16%29_1.0.16.json │ │ │ │ │ ├── Fluent SpinButton %281.0.16%29 Preview_1.0.16.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_spinnerpage_39ec0/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.Spinner.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.Spinner.Spinner.1033.json │ │ │ │ │ └── PowerCAT.Spinner.Spinner.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Dialog.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── Spinner Page.editorstate.json │ │ │ │ │ ├── Spinner Page.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Dialog.fx.yaml │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Spinner %281.0.8%29 Preview_1.0.8.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── Text box_1.6.1.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_subwaynavpage_b2b78/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── colColors.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ ├── currentCompSamplesCol.json │ │ │ │ │ └── fluentUIIconsCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.SubwayNav.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.SubwayNav.Subwaynav.1033.json │ │ │ │ │ └── PowerCAT.SubwayNav.Subwaynav.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── SubwayNavPage.editorstate.json │ │ │ │ │ ├── SubwayNavPage.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Panel.fx.yaml │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ │ ├── Fluent Elevation %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Pivot %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Label_1.6.0.json │ │ │ │ │ └── SubwayNav %281.0.19%29 Preview_1.0.19.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_taglist_6a134/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── colSimpleTagList.json │ │ │ │ │ ├── colTags.json │ │ │ │ │ ├── colTaskTags.json │ │ │ │ │ ├── colTasks.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── PowerCAT.TagList.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ │ ├── PowerCAT.TagList.TagList.1033.json │ │ │ │ │ └── PowerCAT.TagList.TagList.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── Tag List.editorstate.json │ │ │ │ │ ├── Tag List.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Elevation %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Pivot %281.0.8%29_1.0.8.json │ │ │ │ │ ├── Fluent Tag List %281.0.8%29_1.0.8.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cat_tagpicker_ca530/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ ├── Connections.json │ │ │ │ │ └── default.cds.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── ComponentInfos.json │ │ │ │ │ ├── ComponentSamples.json │ │ │ │ │ ├── Components.json │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ ├── FluentIcons.json │ │ │ │ │ ├── colComponentTypes.json │ │ │ │ │ ├── colSelectedTags.json │ │ │ │ │ ├── colSimpleTags.json │ │ │ │ │ ├── colTags.json │ │ │ │ │ ├── currentCompCol.json │ │ │ │ │ └── currentCompSamplesCol.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ ├── References/ │ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ │ └── QualifiedValues.json │ │ │ │ │ └── Resources/ │ │ │ │ │ └── Controls/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ │ ├── PowerCAT.CommandBar.bundle.js │ │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ │ ├── PowerCAT.FluentDetailsList.bundle.js │ │ │ │ │ ├── PowerCAT.Icon.bundle.js │ │ │ │ │ ├── PowerCAT.Picker.bundle.js │ │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ │ ├── css/ │ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.css │ │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.css │ │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.css │ │ │ │ │ │ └── PowerCAT.Picker.TagPicker.css │ │ │ │ │ └── strings/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.json │ │ │ │ │ ├── PowerCAT.CommandBar.CommandBar.1033.resx │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.json │ │ │ │ │ ├── PowerCAT.FluentDetailsList.DetailsList.1033.resx │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.json │ │ │ │ │ ├── PowerCAT.Icon.Icon.1033.resx │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.json │ │ │ │ │ ├── PowerCAT.Picker.TagPicker.1033.resx │ │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Recomendation.editorstate.json │ │ │ │ │ │ └── Tag Pickers.editorstate.json │ │ │ │ │ ├── Tag Pickers.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── Components/ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ └── Recomendation.json │ │ │ │ ├── PcfControlTemplates/ │ │ │ │ │ ├── Auto Width Label %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Button_1.5.2.json │ │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ │ ├── Fluent Command Bar %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Details List %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Elevation %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Icon %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Picker %281.0.19%29_1.0.19.json │ │ │ │ │ ├── Fluent Pivot %281.0.19%29_1.0.19.json │ │ │ │ │ └── Label_1.6.0.json │ │ │ │ ├── PcfConversions/ │ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ │ └── Microsoft_CoreControls_Label.json │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ ├── label_2.5.1.xml │ │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ │ └── rectangle_2.3.0.xml │ │ │ ├── cr7a3_compdescription_1c3b2/ │ │ │ │ ├── Assets/ │ │ │ │ │ └── SampleImage.json │ │ │ │ ├── CanvasManifest.json │ │ │ │ ├── ComponentReferences.json │ │ │ │ ├── Connections/ │ │ │ │ │ └── Connections.json │ │ │ │ ├── ControlTemplates.json │ │ │ │ ├── DataSources/ │ │ │ │ │ ├── CustomGallerySample.json │ │ │ │ │ └── DropDownSample.json │ │ │ │ ├── Entropy/ │ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ │ ├── Entropy.json │ │ │ │ │ └── checksum.json │ │ │ │ ├── Other/ │ │ │ │ │ └── References/ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ └── QualifiedValues.json │ │ │ │ ├── Src/ │ │ │ │ │ ├── App.fx.yaml │ │ │ │ │ ├── Components/ │ │ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ │ │ ├── ControlInfo.json │ │ │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ │ │ └── Recomendation.json │ │ │ │ │ ├── EditorState/ │ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ │ ├── Main Screen.editorstate.json │ │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ │ ├── Main Screen.fx.yaml │ │ │ │ │ └── Themes.json │ │ │ │ └── pkgs/ │ │ │ │ ├── gallery_2.13.2.xml │ │ │ │ ├── groupContainer_1.1.0.xml │ │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ │ ├── icon_2.5.0.xml │ │ │ │ └── label_2.5.1.xml │ │ │ └── cr7a3_personapage_404d9/ │ │ │ ├── Assets/ │ │ │ │ └── SampleImage.json │ │ │ ├── CanvasManifest.json │ │ │ ├── ComponentReferences.json │ │ │ ├── Connections/ │ │ │ │ ├── Connections.json │ │ │ │ └── default.cds.json │ │ │ ├── ControlTemplates.json │ │ │ ├── DataSources/ │ │ │ │ ├── ComponentInfos.json │ │ │ │ ├── ComponentSamples.json │ │ │ │ ├── Components.json │ │ │ │ ├── CustomGallerySample.json │ │ │ │ ├── currentCompCol.json │ │ │ │ └── currentCompSamplesCol.json │ │ │ ├── Entropy/ │ │ │ │ ├── AppCheckerResult.sarif │ │ │ │ ├── Entropy.json │ │ │ │ └── checksum.json │ │ │ ├── Other/ │ │ │ │ ├── References/ │ │ │ │ │ ├── NamedValues.json │ │ │ │ │ └── QualifiedValues.json │ │ │ │ └── Resources/ │ │ │ │ └── Controls/ │ │ │ │ ├── PowerCAT.AutoWidthLabel.bundle.js │ │ │ │ ├── PowerCAT.Elevation.bundle.js │ │ │ │ ├── PowerCAT.Persona.bundle.js │ │ │ │ ├── PowerCAT.Pivot.bundle.js │ │ │ │ ├── css/ │ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.css │ │ │ │ │ └── PowerCAT.Elevation.Elevation.css │ │ │ │ └── strings/ │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.json │ │ │ │ ├── PowerCAT.AutoWidthLabel.AutoWidthLabel.1033.resx │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.json │ │ │ │ ├── PowerCAT.Elevation.Elevation.1033.resx │ │ │ │ ├── PowerCAT.Persona.Persona.1033.json │ │ │ │ ├── PowerCAT.Persona.Persona.1033.resx │ │ │ │ ├── PowerCAT.Pivot.Pivot.1033.json │ │ │ │ └── PowerCAT.Pivot.Pivot.1033.resx │ │ │ ├── Src/ │ │ │ │ ├── App.fx.yaml │ │ │ │ ├── EditorState/ │ │ │ │ │ ├── App.editorstate.json │ │ │ │ │ ├── ControlInfo.editorstate.json │ │ │ │ │ ├── Panel.editorstate.json │ │ │ │ │ ├── PersonaPage.editorstate.json │ │ │ │ │ └── Recomendation.editorstate.json │ │ │ │ ├── PersonaPage.fx.yaml │ │ │ │ └── Themes.json │ │ │ └── pkgs/ │ │ │ ├── Components/ │ │ │ │ ├── ControlInfo.fx.yaml │ │ │ │ ├── ControlInfo.json │ │ │ │ ├── Panel.fx.yaml │ │ │ │ ├── Panel.json │ │ │ │ ├── Recomendation.fx.yaml │ │ │ │ └── Recomendation.json │ │ │ ├── PcfControlTemplates/ │ │ │ │ ├── Auto Width Label %281.0.9%29_1.0.9.json │ │ │ │ ├── Button_1.5.2.json │ │ │ │ ├── Check box_1.7.1.json │ │ │ │ ├── Combo box_1.5.0.json │ │ │ │ ├── Fluent Elevation %281.0.9%29_1.0.9.json │ │ │ │ ├── Fluent Persona%28%25VERSION%25%29 Preview_0.0.1.json │ │ │ │ ├── Fluent Pivot %281.0.9%29_1.0.9.json │ │ │ │ ├── Label_1.6.0.json │ │ │ │ └── Text box_1.6.1.json │ │ │ ├── PcfConversions/ │ │ │ │ ├── Microsoft_CoreControls_Button.json │ │ │ │ ├── Microsoft_CoreControls_Checkbox.json │ │ │ │ ├── Microsoft_CoreControls_ComboBox.json │ │ │ │ ├── Microsoft_CoreControls_Label.json │ │ │ │ └── Microsoft_CoreControls_TextBox.json │ │ │ ├── gallery_2.13.2.xml │ │ │ ├── groupContainer_1.1.0.xml │ │ │ ├── htmlViewer_2.1.0.xml │ │ │ ├── icon_2.5.0.xml │ │ │ ├── label_2.5.1.xml │ │ │ ├── pcfDataField_1.4.0.xml │ │ │ └── rectangle_2.3.0.xml │ │ ├── Other/ │ │ │ ├── Customizations.xml │ │ │ └── Solution.xml │ │ └── WebResources/ │ │ ├── cat_autowidthlabel_icon │ │ ├── cat_autowidthlabel_icon.data.xml │ │ ├── cat_breadcrumbicon │ │ ├── cat_breadcrumbicon.data.xml │ │ ├── cat_calendar_icon │ │ ├── cat_calendar_icon.data.xml │ │ ├── cat_commandbar_icon │ │ ├── cat_commandbar_icon.data.xml │ │ ├── cat_contextmenu_icon │ │ ├── cat_contextmenu_icon.data.xml │ │ ├── cat_creator_icon │ │ ├── cat_creator_icon.data.xml │ │ ├── cat_creatorkit_logo │ │ ├── cat_creatorkit_logo.data.xml │ │ ├── cat_dialog_icon │ │ ├── cat_dialog_icon.data.xml │ │ ├── cat_elevation_icon │ │ ├── cat_elevation_icon.data.xml │ │ ├── cat_expandmenu_icon │ │ ├── cat_expandmenu_icon.data.xml │ │ ├── cat_generic_icon │ │ ├── cat_generic_icon.data.xml │ │ ├── cat_home_icon │ │ ├── cat_home_icon.data.xml │ │ ├── cat_keyboard_icon │ │ ├── cat_keyboard_icon.data.xml │ │ ├── cat_nav_icon │ │ ├── cat_nav_icon.data.xml │ │ ├── cat_panel_icon │ │ ├── cat_panel_icon.data.xml │ │ ├── cat_patternicon │ │ ├── cat_patternicon.data.xml │ │ ├── cat_peoplePicker_icon │ │ ├── cat_peoplePicker_icon.data.xml │ │ ├── cat_persona_icon │ │ ├── cat_persona_icon.data.xml │ │ ├── cat_pivot_icon │ │ ├── cat_pivot_icon.data.xml │ │ ├── cat_progressindicator_icon │ │ ├── cat_progressindicator_icon.data.xml │ │ ├── cat_resizabletextarea_icon │ │ ├── cat_resizabletextarea_icon.data.xml │ │ ├── cat_search_icon │ │ ├── cat_search_icon.data.xml │ │ ├── cat_shimmer_icon │ │ ├── cat_shimmer_icon.data.xml │ │ ├── cat_spin_button_icon │ │ ├── cat_spin_button_icon.data.xml │ │ ├── cat_spinner_icon │ │ ├── cat_spinner_icon.data.xml │ │ ├── cat_subwaunav_icon │ │ ├── cat_subwaunav_icon.data.xml │ │ ├── cat_taglist_icon │ │ ├── cat_taglist_icon.data.xml │ │ ├── cat_tagpicker_icon │ │ └── cat_tagpicker_icon.data.xml │ ├── config/ │ │ ├── Prod/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ ├── Test/ │ │ │ ├── customDeploymentSettings.json │ │ │ └── deploymentSettings.json │ │ └── Validation/ │ │ ├── customDeploymentSettings.json │ │ └── deploymentSettings.json │ ├── deploy-prod-CreatorKitReferencesMDA.yml │ ├── deploy-test-CreatorKitReferencesMDA.yml │ └── deploy-validation-CreatorKitReferencesMDA.yml ├── CreatorKitResources/ │ ├── Pipelines/ │ │ └── export-solution-to-github-creator-kit.yml │ └── Release/ │ ├── Collateral/ │ │ └── CreatorKit/ │ │ └── README.md │ ├── Notes/ │ │ └── CreatorKit/ │ │ └── RELEASENOTES.md │ └── Pipelines/ │ └── CreatorKit/ │ └── create-github-release.yml ├── LICENSE ├── PowerCAT.PackageDeployer.Package/ │ ├── AppSourceAssets/ │ │ ├── Input.xml │ │ ├── TermsOfUse.html │ │ └── [Content_Types].xml │ ├── Models/ │ │ └── FlowConfigurationItem.cs │ ├── PackageImportExtension.cs │ ├── PkgAssets/ │ │ ├── ImportConfig.xml │ │ └── manifest.ppkg.json │ ├── PowerCAT.Package.Settings.json │ ├── PowerCAT.PackageDeployer.Package.csproj │ ├── PowerCAT.PackageDeployer.Package.sln │ ├── Resources/ │ │ ├── ConfigSettings.Designer.cs │ │ └── ConfigSettings.resx │ └── Utils/ │ ├── JsonUtility.cs │ └── OrganizationSettingsUpdater.cs ├── README.md ├── SECURITY.md └── SUPPORT.md