├── .editorconfig ├── .gitignore ├── .stylelintrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yo-rc.json ├── IMG ├── add-app.png ├── catalog.png ├── drag-and-drop.png ├── ownersInfo.png ├── package.png ├── search.png ├── siteInfo.png ├── tabs.gif ├── video.png └── webpart.png ├── PowerShell ├── AdoPipeline │ ├── Deploy.ps1 │ └── Install-PowerShellModules.ps1 ├── Deploy-Dashboard.bat ├── Deploy-Dashboard.ps1 ├── Prerequisites.bat ├── Prerequisites.ps1 ├── Provisioning_Templates │ ├── Dashboard_Lists.xml │ ├── Dashboard_TenantApp.xml │ └── Dashboard_TenantApp_upgraded.xml ├── Upload-SmatLogs.bat ├── Upload-SmatLogs.ps1 └── Utils │ └── PS-Forms.ps1 ├── README.md ├── azure-pipelines.yml ├── config ├── config.json ├── copy-assets.json ├── copy-static-assets.json ├── deploy-azure-storage.json ├── package-solution.json ├── serve.json └── write-manifests.json ├── fast-serve ├── config.json ├── webpack.extend.js └── webpack.js ├── gulpfile.js ├── package.json ├── src ├── index.ts └── webparts │ ├── assets │ ├── ding-sound-effect.MP3.svg │ ├── search.svg │ └── stats.svg │ └── migrationDashboard │ ├── Interfaces │ ├── ListItem.ts │ └── SiteItem.ts │ ├── MigrationDashboardWebPart.manifest.json │ ├── MigrationDashboardWebPart.ts │ ├── Overrides.module.scss │ ├── components │ ├── Autocomplete │ │ ├── Autocomplete.style.ts │ │ ├── Autocomplete.tsx │ │ ├── Autocomplete.types.ts │ │ ├── colors.tsx │ │ ├── index.ts │ │ └── palette.tsx │ ├── Constants │ │ └── Constants.ts │ ├── ErrorBoundary │ │ └── ErrorBoundary.tsx │ ├── IMigrationDashboardProps.ts │ ├── MigrationDashboard.module.scss │ ├── MigrationDashboard.tsx │ ├── MigrationProgress │ │ └── MigrationProgress.tsx │ ├── Section │ │ └── Section.tsx │ ├── SiteInfo │ │ ├── ChecklistSection │ │ │ └── ChecklistSection.tsx │ │ ├── ControlPanel │ │ │ ├── GeneralControlPanel.tsx │ │ │ ├── SourceSiteSettingsButton.tsx │ │ │ └── ViewDetailsButton.tsx │ │ ├── DashboardButtons │ │ │ └── MarkAsMigratedButton.tsx │ │ ├── DocumentLocatorSection │ │ │ └── DocumentLocatorSection.tsx │ │ ├── GeneralInfoSection │ │ │ └── GeneralInfoSection.tsx │ │ ├── OtherSection │ │ │ └── OtherSection.tsx │ │ ├── OwnershipSection │ │ │ ├── CopyEmailsButton.tsx │ │ │ ├── OwnershipSection.tsx │ │ │ ├── ReadOnlyStakeholder.tsx │ │ │ ├── ReadOnlyStakeholders.tsx │ │ │ ├── Stakeholder.ts │ │ │ ├── StakeholderDialog.tsx │ │ │ ├── StakeholderPersona.tsx │ │ │ ├── Stakeholders.tsx │ │ │ └── TextNotes.tsx │ │ └── SiteInfo.tsx │ └── SiteSearch │ │ └── SiteSearch.tsx │ ├── loc │ └── en-us.js │ └── services │ ├── DashboardDataProvider.ts │ ├── Dates.ts │ └── Measures.ts ├── teams ├── fddbce4e-9f07-466c-b6b0-bd27b2603430_color.png └── fddbce4e-9f07-466c-b6b0-bd27b2603430_outline.png ├── tools └── pre-version.js ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /IMG/add-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/add-app.png -------------------------------------------------------------------------------- /IMG/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/catalog.png -------------------------------------------------------------------------------- /IMG/drag-and-drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/drag-and-drop.png -------------------------------------------------------------------------------- /IMG/ownersInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/ownersInfo.png -------------------------------------------------------------------------------- /IMG/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/package.png -------------------------------------------------------------------------------- /IMG/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/search.png -------------------------------------------------------------------------------- /IMG/siteInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/siteInfo.png -------------------------------------------------------------------------------- /IMG/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/tabs.gif -------------------------------------------------------------------------------- /IMG/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/video.png -------------------------------------------------------------------------------- /IMG/webpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/IMG/webpart.png -------------------------------------------------------------------------------- /PowerShell/AdoPipeline/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/AdoPipeline/Deploy.ps1 -------------------------------------------------------------------------------- /PowerShell/AdoPipeline/Install-PowerShellModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/AdoPipeline/Install-PowerShellModules.ps1 -------------------------------------------------------------------------------- /PowerShell/Deploy-Dashboard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Deploy-Dashboard.bat -------------------------------------------------------------------------------- /PowerShell/Deploy-Dashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Deploy-Dashboard.ps1 -------------------------------------------------------------------------------- /PowerShell/Prerequisites.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Prerequisites.bat -------------------------------------------------------------------------------- /PowerShell/Prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Prerequisites.ps1 -------------------------------------------------------------------------------- /PowerShell/Provisioning_Templates/Dashboard_Lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Provisioning_Templates/Dashboard_Lists.xml -------------------------------------------------------------------------------- /PowerShell/Provisioning_Templates/Dashboard_TenantApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Provisioning_Templates/Dashboard_TenantApp.xml -------------------------------------------------------------------------------- /PowerShell/Provisioning_Templates/Dashboard_TenantApp_upgraded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Provisioning_Templates/Dashboard_TenantApp_upgraded.xml -------------------------------------------------------------------------------- /PowerShell/Upload-SmatLogs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Upload-SmatLogs.bat -------------------------------------------------------------------------------- /PowerShell/Upload-SmatLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Upload-SmatLogs.ps1 -------------------------------------------------------------------------------- /PowerShell/Utils/PS-Forms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/PowerShell/Utils/PS-Forms.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/config.json -------------------------------------------------------------------------------- /config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/copy-assets.json -------------------------------------------------------------------------------- /config/copy-static-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/copy-static-assets.json -------------------------------------------------------------------------------- /config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/package-solution.json -------------------------------------------------------------------------------- /config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/serve.json -------------------------------------------------------------------------------- /config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/config/write-manifests.json -------------------------------------------------------------------------------- /fast-serve/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/fast-serve/config.json -------------------------------------------------------------------------------- /fast-serve/webpack.extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/fast-serve/webpack.extend.js -------------------------------------------------------------------------------- /fast-serve/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/fast-serve/webpack.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/webparts/assets/ding-sound-effect.MP3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/assets/ding-sound-effect.MP3.svg -------------------------------------------------------------------------------- /src/webparts/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/assets/search.svg -------------------------------------------------------------------------------- /src/webparts/assets/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/assets/stats.svg -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/Interfaces/ListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/Interfaces/ListItem.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/Interfaces/SiteItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/Interfaces/SiteItem.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/MigrationDashboardWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/MigrationDashboardWebPart.manifest.json -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/MigrationDashboardWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/MigrationDashboardWebPart.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/Overrides.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/Overrides.module.scss -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.style.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/Autocomplete.types.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/colors.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/index.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Autocomplete/palette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Autocomplete/palette.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Constants/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Constants/Constants.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/ErrorBoundary/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/ErrorBoundary/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/IMigrationDashboardProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/IMigrationDashboardProps.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/MigrationDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/MigrationDashboard.module.scss -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/MigrationDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/MigrationDashboard.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/MigrationProgress/MigrationProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/MigrationProgress/MigrationProgress.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/Section/Section.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/ChecklistSection/ChecklistSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/ChecklistSection/ChecklistSection.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/GeneralControlPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/GeneralControlPanel.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/SourceSiteSettingsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/SourceSiteSettingsButton.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/ViewDetailsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/ControlPanel/ViewDetailsButton.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/DashboardButtons/MarkAsMigratedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/DashboardButtons/MarkAsMigratedButton.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/DocumentLocatorSection/DocumentLocatorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/DocumentLocatorSection/DocumentLocatorSection.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/GeneralInfoSection/GeneralInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/GeneralInfoSection/GeneralInfoSection.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OtherSection/OtherSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OtherSection/OtherSection.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/CopyEmailsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/CopyEmailsButton.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/OwnershipSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/OwnershipSection.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/ReadOnlyStakeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/ReadOnlyStakeholder.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/ReadOnlyStakeholders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/ReadOnlyStakeholders.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/Stakeholder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/Stakeholder.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/StakeholderDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/StakeholderDialog.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/StakeholderPersona.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/StakeholderPersona.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/Stakeholders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/Stakeholders.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/TextNotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/OwnershipSection/TextNotes.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteInfo/SiteInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteInfo/SiteInfo.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/components/SiteSearch/SiteSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/components/SiteSearch/SiteSearch.tsx -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/loc/en-us.js: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/services/DashboardDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/services/DashboardDataProvider.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/services/Dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/services/Dates.ts -------------------------------------------------------------------------------- /src/webparts/migrationDashboard/services/Measures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/src/webparts/migrationDashboard/services/Measures.ts -------------------------------------------------------------------------------- /teams/fddbce4e-9f07-466c-b6b0-bd27b2603430_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/teams/fddbce4e-9f07-466c-b6b0-bd27b2603430_color.png -------------------------------------------------------------------------------- /teams/fddbce4e-9f07-466c-b6b0-bd27b2603430_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/teams/fddbce4e-9f07-466c-b6b0-bd27b2603430_outline.png -------------------------------------------------------------------------------- /tools/pre-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/tools/pre-version.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zerg00s/sp-migration-dashboard/HEAD/tslint.json --------------------------------------------------------------------------------