├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md └── samples ├── README-template.md ├── install-spfx-solution ├── README.md ├── install-appcat-solution.json ├── screenshot-appcat-solutionid.png ├── screenshot-appcat-spfx-solution-enabled.png ├── screenshot-install-spfx-solution-script-action.png └── screenshot-solution-applied.png ├── readme.md ├── site-apply-column-and-row-formatting ├── README.md ├── outcome.png ├── readme.txt ├── screenshot.png └── site-script-column-row-formatting-on-list.json ├── site-apply-company-theme-by-themeJson ├── README.md ├── applyCompanyThemeByThemeJson.json └── screenshot.png ├── site-apply-company-theme ├── README.md ├── applyCompanyTheme.json └── screenshot.png ├── site-apply-external-sharing-setting ├── README.md ├── apply-external-sharing-capability.json └── screenshot-site-external-sharing-script-action.png ├── site-apply-join-hubsite ├── README.md ├── applyJoinHubSite.json └── screenshot.png ├── site-apply-principal-to-spgroup ├── README.md ├── apply-principal-to-spgroup.json ├── readme.txt └── screenshot.png ├── site-apply-regional-settings ├── README.md ├── apply-regional-settings.json ├── screenshot-regionalsettings_updated.png └── screenshot-script_action_setregionalsettings.png ├── site-azure-function ├── Install-SampleSiteDesign.ps1 ├── Install-SampleTheme.ps1 ├── README.md ├── Remove-SampleSiteDesign.ps1 ├── Remove-SampleTheme.ps1 ├── SampleDeptSite.png ├── SetupDepartmentSite │ └── run.ps1 └── tenant-deploy-app-catalog.png ├── site-config-add-dynamic-navlinks-to-Office-365-groups ├── README.md ├── add-dynamic-references-to-default-components-of-an-Office-365-group.json ├── outcome.png └── screenshot.png ├── site-config-remove-navlinks ├── README.md ├── remove-default-team-template-links.json └── screenshot.png ├── site-create-advanced-lists ├── README.md ├── advanced_list_configuration.json ├── screenshot-custom_library_view_by_site_script.png └── screenshot-site_script_advanced_library_configuration_progress_panel.png ├── site-create-advanced-lists2 ├── README.md ├── list-configured-sitecolumn-fieldxml.json ├── screenshot-custom-list-illustrating-script-configured-view.png └── screenshot-list-configuration-progress-panel.png ├── site-create-formatted-lists ├── README.md ├── create-formatted-lists.json └── screenshot.png ├── site-create-lists-add-to-site-nav ├── README.md ├── create-list-add-links-to-sitenav.json └── screenshot.png ├── site-create-lookup-lists-spfieldxml ├── README.md ├── list_multi_lookup_field.png ├── screenshot.png └── site-script-add-spfieldxml-with-lookup.json ├── site-designs-flow-azure-functions-pnp-hubsites ├── .gitignore ├── .yo-rc.json ├── Office365.SiteDesigns.Deployment │ ├── Deploy.ps1 │ ├── Office365.SiteDesigns.Deployment.pssproj │ ├── SiteScripts │ │ ├── site-script-externalSharing.json │ │ ├── site-script-joinToHub.json │ │ ├── site-script-lists.json │ │ ├── site-script-spfxComponents.json │ │ ├── site-script-theme.json │ │ └── site-script-triggerFlow.json │ └── Utilities │ │ ├── ApplyModernTheme.ps1 │ │ ├── ApplySiteDesign.ps1 │ │ ├── ConfigureHubSite.ps1 │ │ └── CreateAzureResourceGroup.ps1 ├── Office365.SiteDesigns.PnP.sln ├── Office365.SiteDesigns.PnP │ ├── .gitignore │ ├── ApplyPnPTemplate.cs │ ├── Office365.SiteDesigns.PnP.csproj │ ├── PnPSiteSchemas │ │ └── SiteCollectionSchema.xml │ └── host.json ├── Office365.SiteDesigns.SPFx │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── settings.json │ ├── .yo-rc.json │ ├── README.md │ ├── config │ │ ├── config.json │ │ ├── copy-assets.json │ │ ├── deploy-azure-storage.json │ │ ├── package-solution.json │ │ ├── serve.json │ │ ├── tslint.json │ │ └── write-manifests.json │ ├── gulpfile.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── extensions │ │ │ └── footer │ │ │ │ ├── FooterApplicationCustomizer.manifest.json │ │ │ │ ├── FooterApplicationCustomizer.module.scss │ │ │ │ ├── FooterApplicationCustomizer.ts │ │ │ │ └── loc │ │ │ │ ├── en-us.js │ │ │ │ └── myStrings.d.ts │ │ └── webparts │ │ │ └── helloWorld │ │ │ ├── HelloWorldWebPart.manifest.json │ │ │ ├── HelloWorldWebPart.module.scss │ │ │ ├── HelloWorldWebPart.ts │ │ │ └── loc │ │ │ ├── en-us.js │ │ │ └── mystrings.d.ts │ └── tsconfig.json └── README.md ├── site-register-spfx-extension ├── README.md ├── readme.txt ├── register_extension.json └── screenshot.png └── triggerFlow-write-back-site-properties-to-splist ├── README.md ├── request-body-json-schema.json └── updated_triggerFlow_properties.png /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/README.md -------------------------------------------------------------------------------- /samples/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/README-template.md -------------------------------------------------------------------------------- /samples/install-spfx-solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/README.md -------------------------------------------------------------------------------- /samples/install-spfx-solution/install-appcat-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/install-appcat-solution.json -------------------------------------------------------------------------------- /samples/install-spfx-solution/screenshot-appcat-solutionid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/screenshot-appcat-solutionid.png -------------------------------------------------------------------------------- /samples/install-spfx-solution/screenshot-appcat-spfx-solution-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/screenshot-appcat-spfx-solution-enabled.png -------------------------------------------------------------------------------- /samples/install-spfx-solution/screenshot-install-spfx-solution-script-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/screenshot-install-spfx-solution-script-action.png -------------------------------------------------------------------------------- /samples/install-spfx-solution/screenshot-solution-applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/install-spfx-solution/screenshot-solution-applied.png -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/readme.md -------------------------------------------------------------------------------- /samples/site-apply-column-and-row-formatting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-column-and-row-formatting/README.md -------------------------------------------------------------------------------- /samples/site-apply-column-and-row-formatting/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-column-and-row-formatting/outcome.png -------------------------------------------------------------------------------- /samples/site-apply-column-and-row-formatting/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-column-and-row-formatting/readme.txt -------------------------------------------------------------------------------- /samples/site-apply-column-and-row-formatting/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-column-and-row-formatting/screenshot.png -------------------------------------------------------------------------------- /samples/site-apply-column-and-row-formatting/site-script-column-row-formatting-on-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-column-and-row-formatting/site-script-column-row-formatting-on-list.json -------------------------------------------------------------------------------- /samples/site-apply-company-theme-by-themeJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme-by-themeJson/README.md -------------------------------------------------------------------------------- /samples/site-apply-company-theme-by-themeJson/applyCompanyThemeByThemeJson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme-by-themeJson/applyCompanyThemeByThemeJson.json -------------------------------------------------------------------------------- /samples/site-apply-company-theme-by-themeJson/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme-by-themeJson/screenshot.png -------------------------------------------------------------------------------- /samples/site-apply-company-theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme/README.md -------------------------------------------------------------------------------- /samples/site-apply-company-theme/applyCompanyTheme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme/applyCompanyTheme.json -------------------------------------------------------------------------------- /samples/site-apply-company-theme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-company-theme/screenshot.png -------------------------------------------------------------------------------- /samples/site-apply-external-sharing-setting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-external-sharing-setting/README.md -------------------------------------------------------------------------------- /samples/site-apply-external-sharing-setting/apply-external-sharing-capability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-external-sharing-setting/apply-external-sharing-capability.json -------------------------------------------------------------------------------- /samples/site-apply-external-sharing-setting/screenshot-site-external-sharing-script-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-external-sharing-setting/screenshot-site-external-sharing-script-action.png -------------------------------------------------------------------------------- /samples/site-apply-join-hubsite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-join-hubsite/README.md -------------------------------------------------------------------------------- /samples/site-apply-join-hubsite/applyJoinHubSite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-join-hubsite/applyJoinHubSite.json -------------------------------------------------------------------------------- /samples/site-apply-join-hubsite/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-join-hubsite/screenshot.png -------------------------------------------------------------------------------- /samples/site-apply-principal-to-spgroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-principal-to-spgroup/README.md -------------------------------------------------------------------------------- /samples/site-apply-principal-to-spgroup/apply-principal-to-spgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-principal-to-spgroup/apply-principal-to-spgroup.json -------------------------------------------------------------------------------- /samples/site-apply-principal-to-spgroup/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-principal-to-spgroup/readme.txt -------------------------------------------------------------------------------- /samples/site-apply-principal-to-spgroup/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-principal-to-spgroup/screenshot.png -------------------------------------------------------------------------------- /samples/site-apply-regional-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-regional-settings/README.md -------------------------------------------------------------------------------- /samples/site-apply-regional-settings/apply-regional-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-regional-settings/apply-regional-settings.json -------------------------------------------------------------------------------- /samples/site-apply-regional-settings/screenshot-regionalsettings_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-regional-settings/screenshot-regionalsettings_updated.png -------------------------------------------------------------------------------- /samples/site-apply-regional-settings/screenshot-script_action_setregionalsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-apply-regional-settings/screenshot-script_action_setregionalsettings.png -------------------------------------------------------------------------------- /samples/site-azure-function/Install-SampleSiteDesign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/Install-SampleSiteDesign.ps1 -------------------------------------------------------------------------------- /samples/site-azure-function/Install-SampleTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/Install-SampleTheme.ps1 -------------------------------------------------------------------------------- /samples/site-azure-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/README.md -------------------------------------------------------------------------------- /samples/site-azure-function/Remove-SampleSiteDesign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/Remove-SampleSiteDesign.ps1 -------------------------------------------------------------------------------- /samples/site-azure-function/Remove-SampleTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/Remove-SampleTheme.ps1 -------------------------------------------------------------------------------- /samples/site-azure-function/SampleDeptSite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/SampleDeptSite.png -------------------------------------------------------------------------------- /samples/site-azure-function/SetupDepartmentSite/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/SetupDepartmentSite/run.ps1 -------------------------------------------------------------------------------- /samples/site-azure-function/tenant-deploy-app-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-azure-function/tenant-deploy-app-catalog.png -------------------------------------------------------------------------------- /samples/site-config-add-dynamic-navlinks-to-Office-365-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-add-dynamic-navlinks-to-Office-365-groups/README.md -------------------------------------------------------------------------------- /samples/site-config-add-dynamic-navlinks-to-Office-365-groups/add-dynamic-references-to-default-components-of-an-Office-365-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-add-dynamic-navlinks-to-Office-365-groups/add-dynamic-references-to-default-components-of-an-Office-365-group.json -------------------------------------------------------------------------------- /samples/site-config-add-dynamic-navlinks-to-Office-365-groups/outcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-add-dynamic-navlinks-to-Office-365-groups/outcome.png -------------------------------------------------------------------------------- /samples/site-config-add-dynamic-navlinks-to-Office-365-groups/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-add-dynamic-navlinks-to-Office-365-groups/screenshot.png -------------------------------------------------------------------------------- /samples/site-config-remove-navlinks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-remove-navlinks/README.md -------------------------------------------------------------------------------- /samples/site-config-remove-navlinks/remove-default-team-template-links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-remove-navlinks/remove-default-team-template-links.json -------------------------------------------------------------------------------- /samples/site-config-remove-navlinks/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-config-remove-navlinks/screenshot.png -------------------------------------------------------------------------------- /samples/site-create-advanced-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists/README.md -------------------------------------------------------------------------------- /samples/site-create-advanced-lists/advanced_list_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists/advanced_list_configuration.json -------------------------------------------------------------------------------- /samples/site-create-advanced-lists/screenshot-custom_library_view_by_site_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists/screenshot-custom_library_view_by_site_script.png -------------------------------------------------------------------------------- /samples/site-create-advanced-lists/screenshot-site_script_advanced_library_configuration_progress_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists/screenshot-site_script_advanced_library_configuration_progress_panel.png -------------------------------------------------------------------------------- /samples/site-create-advanced-lists2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists2/README.md -------------------------------------------------------------------------------- /samples/site-create-advanced-lists2/list-configured-sitecolumn-fieldxml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists2/list-configured-sitecolumn-fieldxml.json -------------------------------------------------------------------------------- /samples/site-create-advanced-lists2/screenshot-custom-list-illustrating-script-configured-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists2/screenshot-custom-list-illustrating-script-configured-view.png -------------------------------------------------------------------------------- /samples/site-create-advanced-lists2/screenshot-list-configuration-progress-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-advanced-lists2/screenshot-list-configuration-progress-panel.png -------------------------------------------------------------------------------- /samples/site-create-formatted-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-formatted-lists/README.md -------------------------------------------------------------------------------- /samples/site-create-formatted-lists/create-formatted-lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-formatted-lists/create-formatted-lists.json -------------------------------------------------------------------------------- /samples/site-create-formatted-lists/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-formatted-lists/screenshot.png -------------------------------------------------------------------------------- /samples/site-create-lists-add-to-site-nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lists-add-to-site-nav/README.md -------------------------------------------------------------------------------- /samples/site-create-lists-add-to-site-nav/create-list-add-links-to-sitenav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lists-add-to-site-nav/create-list-add-links-to-sitenav.json -------------------------------------------------------------------------------- /samples/site-create-lists-add-to-site-nav/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lists-add-to-site-nav/screenshot.png -------------------------------------------------------------------------------- /samples/site-create-lookup-lists-spfieldxml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lookup-lists-spfieldxml/README.md -------------------------------------------------------------------------------- /samples/site-create-lookup-lists-spfieldxml/list_multi_lookup_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lookup-lists-spfieldxml/list_multi_lookup_field.png -------------------------------------------------------------------------------- /samples/site-create-lookup-lists-spfieldxml/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lookup-lists-spfieldxml/screenshot.png -------------------------------------------------------------------------------- /samples/site-create-lookup-lists-spfieldxml/site-script-add-spfieldxml-with-lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-create-lookup-lists-spfieldxml/site-script-add-spfieldxml-with-lookup.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/.gitignore -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/.yo-rc.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Deploy.ps1 -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Office365.SiteDesigns.Deployment.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Office365.SiteDesigns.Deployment.pssproj -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-externalSharing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-externalSharing.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-joinToHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-joinToHub.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-lists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-lists.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-spfxComponents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-spfxComponents.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-theme.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-triggerFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/SiteScripts/site-script-triggerFlow.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ApplyModernTheme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ApplyModernTheme.ps1 -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ApplySiteDesign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ApplySiteDesign.ps1 -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ConfigureHubSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/ConfigureHubSite.ps1 -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/CreateAzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.Deployment/Utilities/CreateAzureResourceGroup.ps1 -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP.sln -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/.gitignore -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/ApplyPnPTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/ApplyPnPTemplate.cs -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/Office365.SiteDesigns.PnP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/Office365.SiteDesigns.PnP.csproj -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/PnPSiteSchemas/SiteCollectionSchema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/PnPSiteSchemas/SiteCollectionSchema.xml -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.PnP/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.editorconfig -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.gitignore -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/extensions.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/launch.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.vscode/settings.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/.yo-rc.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/README.md -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/config.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/copy-assets.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/package-solution.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/serve.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/tslint.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/config/write-manifests.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/gulpfile.js -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/package-lock.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/package.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.manifest.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.module.scss -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/FooterApplicationCustomizer.ts -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/loc/en-us.js -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/loc/myStrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/extensions/footer/loc/myStrings.d.ts -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.manifest.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.module.scss -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/HelloWorldWebPart.ts -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/loc/en-us.js -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/src/webparts/helloWorld/loc/mystrings.d.ts -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/Office365.SiteDesigns.SPFx/tsconfig.json -------------------------------------------------------------------------------- /samples/site-designs-flow-azure-functions-pnp-hubsites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-designs-flow-azure-functions-pnp-hubsites/README.md -------------------------------------------------------------------------------- /samples/site-register-spfx-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-register-spfx-extension/README.md -------------------------------------------------------------------------------- /samples/site-register-spfx-extension/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-register-spfx-extension/readme.txt -------------------------------------------------------------------------------- /samples/site-register-spfx-extension/register_extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-register-spfx-extension/register_extension.json -------------------------------------------------------------------------------- /samples/site-register-spfx-extension/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/site-register-spfx-extension/screenshot.png -------------------------------------------------------------------------------- /samples/triggerFlow-write-back-site-properties-to-splist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/triggerFlow-write-back-site-properties-to-splist/README.md -------------------------------------------------------------------------------- /samples/triggerFlow-write-back-site-properties-to-splist/request-body-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/triggerFlow-write-back-site-properties-to-splist/request-body-json-schema.json -------------------------------------------------------------------------------- /samples/triggerFlow-write-back-site-properties-to-splist/updated_triggerFlow_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnp/sp-dev-site-scripts/HEAD/samples/triggerFlow-write-back-site-properties-to-splist/updated_triggerFlow_properties.png --------------------------------------------------------------------------------