├── .gitignore ├── Deploy ├── ConfigureCDN.ps1 └── DeployAppPAckage.md ├── MegaMenu ├── .editorconfig ├── .gitignore ├── .vscode │ └── settings.json ├── .yo-rc.json ├── README.md ├── assets │ ├── 1 ReadView1.png │ ├── 3 EditView1.png │ ├── 4 EditView2.png │ ├── 5 EditView3.png │ ├── 6 EditView4.png │ ├── 7 Save1.png │ └── ExportImport.png ├── config │ ├── config.json │ ├── copy-assets.json │ ├── deploy-azure-storage.json │ ├── package-solution.json │ ├── serve.json │ ├── tslint.json │ └── write-manifests.json ├── gulpfile.js ├── package.json ├── src │ └── webparts │ │ └── megaMenu │ │ ├── MegaMenuWebPart.manifest.json │ │ ├── MegaMenuWebPart.ts │ │ ├── PlaceHolder.tsx │ │ ├── components │ │ ├── IMegaMenuProps.ts │ │ ├── IMegaMenuState.ts │ │ ├── MegaMenu.module.scss │ │ └── MegaMenu.tsx │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── MegaMenuWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts ├── PeopleDashboard ├── .editorconfig ├── .gitignore ├── .vscode │ └── 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.json ├── src │ ├── controls │ │ └── placeholder │ │ │ ├── IPlaceholderComponent.ts │ │ │ ├── PlaceholderComponent.module.scss │ │ │ ├── PlaceholderComponent.test.tsx │ │ │ ├── PlaceholderComponent.tsx │ │ │ └── index.ts │ └── webparts │ │ └── peopleDashboard │ │ ├── PeopleDashboardWebPart.manifest.json │ │ ├── PeopleDashboardWebPart.ts │ │ ├── components │ │ ├── IPeopleDashboardProps.ts │ │ ├── IPersonProps.ts │ │ ├── PeopleDashboard.module.scss │ │ ├── PeopleDashboard.tsx │ │ └── Person.tsx │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── PeopleDashboardWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts ├── README.md ├── TabbedLinks ├── .editorconfig ├── .gitignore ├── .vscode │ └── 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.json ├── src │ └── webparts │ │ └── tabbedLinks │ │ ├── PlaceHolder.tsx │ │ ├── TabbedLinksWebPart.manifest.json │ │ ├── TabbedLinksWebPart.ts │ │ ├── components │ │ ├── ITabbedLinksProps.ts │ │ ├── ITabbedLinksState.ts │ │ ├── TabbedLinks.module.scss │ │ ├── TabbedLinks.tsx │ │ └── renderbackup.txt │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── TabbedLinksWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts ├── allFabricIcons ├── .editorconfig ├── .gitignore ├── .vscode │ └── 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.json ├── src │ └── webparts │ │ └── allFabricIcons │ │ ├── AllFabricIconsWebPart.manifest.json │ │ ├── AllFabricIconsWebPart.ts │ │ ├── components │ │ ├── AllFabricIcons.module.scss │ │ ├── AllFabricIcons.tsx │ │ └── IAllFabricIconsProps.ts │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── AllFabricIconsWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts ├── brandMyPage ├── .editorconfig ├── .gitignore ├── .vscode │ └── settings.json ├── .yo-rc.json ├── README.md ├── assets │ ├── 1. Sample1 - No quick launch, customm theme in compact mode.png │ ├── 2. Sample2 - Custom colors for navigation and page titles.png │ ├── Config1.png │ ├── Config2.png │ ├── Config3.png │ ├── Config4.png │ ├── Config5.png │ ├── Config6.png │ └── Config7.png ├── config │ ├── config.json │ ├── copy-assets.json │ ├── deploy-azure-storage.json │ ├── package-solution.json │ ├── serve.json │ ├── tslint.json │ └── write-manifests.json ├── gulpfile.js ├── package.json ├── src │ └── webparts │ │ └── brandMyPage │ │ ├── BrandMyPageWebPart.manifest.json │ │ ├── BrandMyPageWebPart.ts │ │ ├── IBrandMyPageWebPartDefaultProps.ts │ │ ├── IBrandMyPageWebPartProps.ts │ │ ├── components │ │ ├── Config │ │ │ ├── ConfigLanding.tsx │ │ │ ├── IConfigLanding.module.scss │ │ │ ├── IConfigLandingProps.ts │ │ │ ├── IConfigLandingState.ts │ │ │ └── Modal.Basic.Example.module.scss │ │ └── HideUnhide │ │ │ ├── HideUnhide.tsx │ │ │ ├── IHideUnhide.module.scss │ │ │ ├── IHideUnhideProps.ts │ │ │ └── IHideUnhideState.ts │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── BrandMyPageWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts ├── hideAnElement ├── .editorconfig ├── .gitignore ├── .vscode │ └── 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.json ├── screenshots │ ├── 1. ModernPageView.png │ ├── 2. ClassicPageView.png │ ├── 3. ModernPageElements.png │ └── 4. ClassicPageElements.png ├── src │ └── webparts │ │ └── hideAnElement │ │ ├── App.js │ │ ├── HideAnElementWebPart.manifest.json │ │ ├── HideAnElementWebPart.module.scss │ │ ├── HideAnElementWebPart.ts │ │ ├── loc │ │ ├── en-us.js │ │ └── mystrings.d.ts │ │ └── test │ │ └── HideAnElementWebPart.test.ts ├── tsconfig.json └── typings │ ├── @ms │ └── odsp.d.ts │ └── tsd.d.ts └── hideQuickLaunch ├── .editorconfig ├── .gitignore ├── .vscode └── 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.json ├── screenshots ├── 1-DefaultWithQuicklaunch.png ├── 2-AddWebpart.png ├── 3-BoomHiddenQuickLaunch.png ├── CopyAssets.png ├── DeployPackage.png ├── ZippedPackage.png └── cdnBasePath.png ├── src └── webparts │ └── hideQuickLaunch │ ├── App.js │ ├── HideQuickLaunchWebPart.manifest.json │ ├── HideQuickLaunchWebPart.module.scss │ ├── HideQuickLaunchWebPart.ts │ ├── loc │ ├── en-us.js │ └── mystrings.d.ts │ └── test │ └── HideQuickLaunchWebPart.test.ts ├── tsconfig.json └── typings ├── @ms └── odsp.d.ts └── tsd.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/.gitignore -------------------------------------------------------------------------------- /Deploy/ConfigureCDN.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/Deploy/ConfigureCDN.ps1 -------------------------------------------------------------------------------- /Deploy/DeployAppPAckage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/Deploy/DeployAppPAckage.md -------------------------------------------------------------------------------- /MegaMenu/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/.editorconfig -------------------------------------------------------------------------------- /MegaMenu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/.gitignore -------------------------------------------------------------------------------- /MegaMenu/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/.vscode/settings.json -------------------------------------------------------------------------------- /MegaMenu/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/.yo-rc.json -------------------------------------------------------------------------------- /MegaMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/README.md -------------------------------------------------------------------------------- /MegaMenu/assets/1 ReadView1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/1 ReadView1.png -------------------------------------------------------------------------------- /MegaMenu/assets/3 EditView1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/3 EditView1.png -------------------------------------------------------------------------------- /MegaMenu/assets/4 EditView2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/4 EditView2.png -------------------------------------------------------------------------------- /MegaMenu/assets/5 EditView3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/5 EditView3.png -------------------------------------------------------------------------------- /MegaMenu/assets/6 EditView4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/6 EditView4.png -------------------------------------------------------------------------------- /MegaMenu/assets/7 Save1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/7 Save1.png -------------------------------------------------------------------------------- /MegaMenu/assets/ExportImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/assets/ExportImport.png -------------------------------------------------------------------------------- /MegaMenu/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/config.json -------------------------------------------------------------------------------- /MegaMenu/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/copy-assets.json -------------------------------------------------------------------------------- /MegaMenu/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /MegaMenu/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/package-solution.json -------------------------------------------------------------------------------- /MegaMenu/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/serve.json -------------------------------------------------------------------------------- /MegaMenu/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/tslint.json -------------------------------------------------------------------------------- /MegaMenu/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/config/write-manifests.json -------------------------------------------------------------------------------- /MegaMenu/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/gulpfile.js -------------------------------------------------------------------------------- /MegaMenu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/package.json -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/MegaMenuWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/MegaMenuWebPart.manifest.json -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/MegaMenuWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/MegaMenuWebPart.ts -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/PlaceHolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/PlaceHolder.tsx -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/components/IMegaMenuProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/components/IMegaMenuProps.ts -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/components/IMegaMenuState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/components/IMegaMenuState.ts -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/components/MegaMenu.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/components/MegaMenu.module.scss -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/components/MegaMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/components/MegaMenu.tsx -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/loc/en-us.js -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/loc/mystrings.d.ts -------------------------------------------------------------------------------- /MegaMenu/src/webparts/megaMenu/test/MegaMenuWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/src/webparts/megaMenu/test/MegaMenuWebPart.test.ts -------------------------------------------------------------------------------- /MegaMenu/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/tsconfig.json -------------------------------------------------------------------------------- /MegaMenu/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/MegaMenu/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /MegaMenu/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /PeopleDashboard/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/.editorconfig -------------------------------------------------------------------------------- /PeopleDashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/.gitignore -------------------------------------------------------------------------------- /PeopleDashboard/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/.vscode/settings.json -------------------------------------------------------------------------------- /PeopleDashboard/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/.yo-rc.json -------------------------------------------------------------------------------- /PeopleDashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/README.md -------------------------------------------------------------------------------- /PeopleDashboard/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/config.json -------------------------------------------------------------------------------- /PeopleDashboard/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/copy-assets.json -------------------------------------------------------------------------------- /PeopleDashboard/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /PeopleDashboard/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/package-solution.json -------------------------------------------------------------------------------- /PeopleDashboard/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/serve.json -------------------------------------------------------------------------------- /PeopleDashboard/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/tslint.json -------------------------------------------------------------------------------- /PeopleDashboard/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/config/write-manifests.json -------------------------------------------------------------------------------- /PeopleDashboard/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/gulpfile.js -------------------------------------------------------------------------------- /PeopleDashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/package.json -------------------------------------------------------------------------------- /PeopleDashboard/src/controls/placeholder/IPlaceholderComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/controls/placeholder/IPlaceholderComponent.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/controls/placeholder/PlaceholderComponent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/controls/placeholder/PlaceholderComponent.module.scss -------------------------------------------------------------------------------- /PeopleDashboard/src/controls/placeholder/PlaceholderComponent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/controls/placeholder/PlaceholderComponent.test.tsx -------------------------------------------------------------------------------- /PeopleDashboard/src/controls/placeholder/PlaceholderComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/controls/placeholder/PlaceholderComponent.tsx -------------------------------------------------------------------------------- /PeopleDashboard/src/controls/placeholder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/controls/placeholder/index.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/PeopleDashboardWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/PeopleDashboardWebPart.manifest.json -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/PeopleDashboardWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/PeopleDashboardWebPart.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/components/IPeopleDashboardProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/components/IPeopleDashboardProps.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/components/IPersonProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/components/IPersonProps.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/components/PeopleDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/components/PeopleDashboard.module.scss -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/components/PeopleDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/components/PeopleDashboard.tsx -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/components/Person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/components/Person.tsx -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/loc/en-us.js -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/loc/mystrings.d.ts -------------------------------------------------------------------------------- /PeopleDashboard/src/webparts/peopleDashboard/test/PeopleDashboardWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/src/webparts/peopleDashboard/test/PeopleDashboardWebPart.test.ts -------------------------------------------------------------------------------- /PeopleDashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/tsconfig.json -------------------------------------------------------------------------------- /PeopleDashboard/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/PeopleDashboard/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /PeopleDashboard/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/README.md -------------------------------------------------------------------------------- /TabbedLinks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/.editorconfig -------------------------------------------------------------------------------- /TabbedLinks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/.gitignore -------------------------------------------------------------------------------- /TabbedLinks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/.vscode/settings.json -------------------------------------------------------------------------------- /TabbedLinks/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/.yo-rc.json -------------------------------------------------------------------------------- /TabbedLinks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/README.md -------------------------------------------------------------------------------- /TabbedLinks/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/config.json -------------------------------------------------------------------------------- /TabbedLinks/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/copy-assets.json -------------------------------------------------------------------------------- /TabbedLinks/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /TabbedLinks/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/package-solution.json -------------------------------------------------------------------------------- /TabbedLinks/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/serve.json -------------------------------------------------------------------------------- /TabbedLinks/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/tslint.json -------------------------------------------------------------------------------- /TabbedLinks/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/config/write-manifests.json -------------------------------------------------------------------------------- /TabbedLinks/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/gulpfile.js -------------------------------------------------------------------------------- /TabbedLinks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/package.json -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/PlaceHolder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/PlaceHolder.tsx -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/TabbedLinksWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/TabbedLinksWebPart.manifest.json -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/TabbedLinksWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/TabbedLinksWebPart.ts -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/components/ITabbedLinksProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/components/ITabbedLinksProps.ts -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/components/ITabbedLinksState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/components/ITabbedLinksState.ts -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/components/TabbedLinks.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/components/TabbedLinks.module.scss -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/components/TabbedLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/components/TabbedLinks.tsx -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/components/renderbackup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/components/renderbackup.txt -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/loc/en-us.js -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/loc/mystrings.d.ts -------------------------------------------------------------------------------- /TabbedLinks/src/webparts/tabbedLinks/test/TabbedLinksWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/src/webparts/tabbedLinks/test/TabbedLinksWebPart.test.ts -------------------------------------------------------------------------------- /TabbedLinks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/tsconfig.json -------------------------------------------------------------------------------- /TabbedLinks/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/TabbedLinks/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /TabbedLinks/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /allFabricIcons/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/.editorconfig -------------------------------------------------------------------------------- /allFabricIcons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/.gitignore -------------------------------------------------------------------------------- /allFabricIcons/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/.vscode/settings.json -------------------------------------------------------------------------------- /allFabricIcons/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/.yo-rc.json -------------------------------------------------------------------------------- /allFabricIcons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/README.md -------------------------------------------------------------------------------- /allFabricIcons/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/config.json -------------------------------------------------------------------------------- /allFabricIcons/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/copy-assets.json -------------------------------------------------------------------------------- /allFabricIcons/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /allFabricIcons/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/package-solution.json -------------------------------------------------------------------------------- /allFabricIcons/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/serve.json -------------------------------------------------------------------------------- /allFabricIcons/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/tslint.json -------------------------------------------------------------------------------- /allFabricIcons/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/config/write-manifests.json -------------------------------------------------------------------------------- /allFabricIcons/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/gulpfile.js -------------------------------------------------------------------------------- /allFabricIcons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/package.json -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/AllFabricIconsWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/AllFabricIconsWebPart.manifest.json -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/AllFabricIconsWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/AllFabricIconsWebPart.ts -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/components/AllFabricIcons.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/components/AllFabricIcons.module.scss -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/components/AllFabricIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/components/AllFabricIcons.tsx -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/components/IAllFabricIconsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/components/IAllFabricIconsProps.ts -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/loc/en-us.js -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/loc/mystrings.d.ts -------------------------------------------------------------------------------- /allFabricIcons/src/webparts/allFabricIcons/test/AllFabricIconsWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/src/webparts/allFabricIcons/test/AllFabricIconsWebPart.test.ts -------------------------------------------------------------------------------- /allFabricIcons/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/tsconfig.json -------------------------------------------------------------------------------- /allFabricIcons/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/allFabricIcons/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /allFabricIcons/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /brandMyPage/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/.editorconfig -------------------------------------------------------------------------------- /brandMyPage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/.gitignore -------------------------------------------------------------------------------- /brandMyPage/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/.vscode/settings.json -------------------------------------------------------------------------------- /brandMyPage/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/.yo-rc.json -------------------------------------------------------------------------------- /brandMyPage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/README.md -------------------------------------------------------------------------------- /brandMyPage/assets/1. Sample1 - No quick launch, customm theme in compact mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/1. Sample1 - No quick launch, customm theme in compact mode.png -------------------------------------------------------------------------------- /brandMyPage/assets/2. Sample2 - Custom colors for navigation and page titles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/2. Sample2 - Custom colors for navigation and page titles.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config1.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config2.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config3.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config4.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config5.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config6.png -------------------------------------------------------------------------------- /brandMyPage/assets/Config7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/assets/Config7.png -------------------------------------------------------------------------------- /brandMyPage/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/config.json -------------------------------------------------------------------------------- /brandMyPage/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/copy-assets.json -------------------------------------------------------------------------------- /brandMyPage/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /brandMyPage/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/package-solution.json -------------------------------------------------------------------------------- /brandMyPage/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/serve.json -------------------------------------------------------------------------------- /brandMyPage/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/tslint.json -------------------------------------------------------------------------------- /brandMyPage/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/config/write-manifests.json -------------------------------------------------------------------------------- /brandMyPage/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/gulpfile.js -------------------------------------------------------------------------------- /brandMyPage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/package.json -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/BrandMyPageWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/BrandMyPageWebPart.manifest.json -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/BrandMyPageWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/BrandMyPageWebPart.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/IBrandMyPageWebPartDefaultProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/IBrandMyPageWebPartDefaultProps.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/IBrandMyPageWebPartProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/IBrandMyPageWebPartProps.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/Config/ConfigLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/Config/ConfigLanding.tsx -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLanding.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLanding.module.scss -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLandingProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLandingProps.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLandingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/Config/IConfigLandingState.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/Config/Modal.Basic.Example.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/Config/Modal.Basic.Example.module.scss -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/HideUnhide/HideUnhide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/HideUnhide/HideUnhide.tsx -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhide.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhide.module.scss -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhideProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhideProps.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhideState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/components/HideUnhide/IHideUnhideState.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/loc/en-us.js -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/loc/mystrings.d.ts -------------------------------------------------------------------------------- /brandMyPage/src/webparts/brandMyPage/test/BrandMyPageWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/src/webparts/brandMyPage/test/BrandMyPageWebPart.test.ts -------------------------------------------------------------------------------- /brandMyPage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/tsconfig.json -------------------------------------------------------------------------------- /brandMyPage/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/brandMyPage/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /brandMyPage/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /hideAnElement/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/.editorconfig -------------------------------------------------------------------------------- /hideAnElement/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/.gitignore -------------------------------------------------------------------------------- /hideAnElement/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/.vscode/settings.json -------------------------------------------------------------------------------- /hideAnElement/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/.yo-rc.json -------------------------------------------------------------------------------- /hideAnElement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/README.md -------------------------------------------------------------------------------- /hideAnElement/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/config.json -------------------------------------------------------------------------------- /hideAnElement/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/copy-assets.json -------------------------------------------------------------------------------- /hideAnElement/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /hideAnElement/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/package-solution.json -------------------------------------------------------------------------------- /hideAnElement/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/serve.json -------------------------------------------------------------------------------- /hideAnElement/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/tslint.json -------------------------------------------------------------------------------- /hideAnElement/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/config/write-manifests.json -------------------------------------------------------------------------------- /hideAnElement/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/gulpfile.js -------------------------------------------------------------------------------- /hideAnElement/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/package.json -------------------------------------------------------------------------------- /hideAnElement/screenshots/1. ModernPageView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/screenshots/1. ModernPageView.png -------------------------------------------------------------------------------- /hideAnElement/screenshots/2. ClassicPageView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/screenshots/2. ClassicPageView.png -------------------------------------------------------------------------------- /hideAnElement/screenshots/3. ModernPageElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/screenshots/3. ModernPageElements.png -------------------------------------------------------------------------------- /hideAnElement/screenshots/4. ClassicPageElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/screenshots/4. ClassicPageElements.png -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/App.js -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.manifest.json -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.module.scss -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/HideAnElementWebPart.ts -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/loc/en-us.js -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/loc/mystrings.d.ts -------------------------------------------------------------------------------- /hideAnElement/src/webparts/hideAnElement/test/HideAnElementWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/src/webparts/hideAnElement/test/HideAnElementWebPart.test.ts -------------------------------------------------------------------------------- /hideAnElement/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/tsconfig.json -------------------------------------------------------------------------------- /hideAnElement/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideAnElement/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /hideAnElement/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /hideQuickLaunch/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/.editorconfig -------------------------------------------------------------------------------- /hideQuickLaunch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/.gitignore -------------------------------------------------------------------------------- /hideQuickLaunch/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/.vscode/settings.json -------------------------------------------------------------------------------- /hideQuickLaunch/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/.yo-rc.json -------------------------------------------------------------------------------- /hideQuickLaunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/README.md -------------------------------------------------------------------------------- /hideQuickLaunch/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/config.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/copy-assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/copy-assets.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/package-solution.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/serve.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/tslint.json -------------------------------------------------------------------------------- /hideQuickLaunch/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/config/write-manifests.json -------------------------------------------------------------------------------- /hideQuickLaunch/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/gulpfile.js -------------------------------------------------------------------------------- /hideQuickLaunch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/package.json -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/1-DefaultWithQuicklaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/1-DefaultWithQuicklaunch.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/2-AddWebpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/2-AddWebpart.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/3-BoomHiddenQuickLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/3-BoomHiddenQuickLaunch.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/CopyAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/CopyAssets.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/DeployPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/DeployPackage.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/ZippedPackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/ZippedPackage.png -------------------------------------------------------------------------------- /hideQuickLaunch/screenshots/cdnBasePath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/screenshots/cdnBasePath.png -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/App.js -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.manifest.json -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.module.scss -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/HideQuickLaunchWebPart.ts -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/loc/en-us.js -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/loc/mystrings.d.ts -------------------------------------------------------------------------------- /hideQuickLaunch/src/webparts/hideQuickLaunch/test/HideQuickLaunchWebPart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/src/webparts/hideQuickLaunch/test/HideQuickLaunchWebPart.test.ts -------------------------------------------------------------------------------- /hideQuickLaunch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/tsconfig.json -------------------------------------------------------------------------------- /hideQuickLaunch/typings/@ms/odsp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srujanpulli/SPFx/HEAD/hideQuickLaunch/typings/@ms/odsp.d.ts -------------------------------------------------------------------------------- /hideQuickLaunch/typings/tsd.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | --------------------------------------------------------------------------------