├── Chapter 11 ├── Car_Sales.pbix ├── Customers.csv ├── DOB.csv ├── DOB.pbix ├── Locations.csv ├── Measure.pbix ├── Product_Sales.csv ├── Product_Sales.pbix ├── Products.csv ├── Products_bikes.csv ├── Products_bikes.pbix └── car_sales.csv ├── Chapter 4 └── Marketing Announcements.xlsx ├── Chapter 9 └── Cars.xlsx ├── LICENSE ├── README.md └── Supplement Chapter 25 └── CitiesListWebpart ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── settings.json ├── .yo-rc.json ├── README.md ├── config ├── config.json ├── deploy-azure-storage.json ├── package-solution.json ├── serve.json └── write-manifests.json ├── gulpfile.js ├── package-lock.json ├── package.json ├── src ├── index.ts └── webparts │ └── CitiesList │ ├── CitiesListWebPart.manifest.json │ ├── CitiesListWebPart.ts │ ├── assets │ ├── welcome-dark.png │ └── welcome-light.png │ ├── components │ ├── CitiesList.module.scss │ ├── CitiesList.tsx │ ├── ICitiesListProps.ts │ ├── ICitiesListState.ts │ ├── IListItems.ts │ └── pnpjsConfig.ts │ └── loc │ ├── en-us.js │ └── mystrings.d.ts ├── teams ├── 0033984b-057d-4423-9802-df8f5275ac20_color.png └── 0033984b-057d-4423-9802-df8f5275ac20_outline.png ├── tsconfig.json └── tslint.json /Chapter 11/Car_Sales.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Car_Sales.pbix -------------------------------------------------------------------------------- /Chapter 11/Customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Customers.csv -------------------------------------------------------------------------------- /Chapter 11/DOB.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/DOB.csv -------------------------------------------------------------------------------- /Chapter 11/DOB.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/DOB.pbix -------------------------------------------------------------------------------- /Chapter 11/Locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Locations.csv -------------------------------------------------------------------------------- /Chapter 11/Measure.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Measure.pbix -------------------------------------------------------------------------------- /Chapter 11/Product_Sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Product_Sales.csv -------------------------------------------------------------------------------- /Chapter 11/Product_Sales.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Product_Sales.pbix -------------------------------------------------------------------------------- /Chapter 11/Products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Products.csv -------------------------------------------------------------------------------- /Chapter 11/Products_bikes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Products_bikes.csv -------------------------------------------------------------------------------- /Chapter 11/Products_bikes.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/Products_bikes.pbix -------------------------------------------------------------------------------- /Chapter 11/car_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 11/car_sales.csv -------------------------------------------------------------------------------- /Chapter 4/Marketing Announcements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 4/Marketing Announcements.xlsx -------------------------------------------------------------------------------- /Chapter 9/Cars.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Chapter 9/Cars.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/README.md -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/.gitignore -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/.npmignore -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/.vscode/launch.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/.vscode/settings.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/.yo-rc.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/README.md -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/config/config.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/config/deploy-azure-storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/config/deploy-azure-storage.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/config/package-solution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/config/package-solution.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/config/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/config/serve.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/config/write-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/config/write-manifests.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/gulpfile.js -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/package-lock.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/package.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/index.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/CitiesListWebPart.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/CitiesListWebPart.manifest.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/CitiesListWebPart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/CitiesListWebPart.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/assets/welcome-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/assets/welcome-dark.png -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/assets/welcome-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/assets/welcome-light.png -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/CitiesList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/CitiesList.module.scss -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/CitiesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/CitiesList.tsx -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/ICitiesListProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/ICitiesListProps.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/ICitiesListState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/ICitiesListState.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/IListItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/IListItems.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/pnpjsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/components/pnpjsConfig.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/loc/en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/loc/en-us.js -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/loc/mystrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/src/webparts/CitiesList/loc/mystrings.d.ts -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/teams/0033984b-057d-4423-9802-df8f5275ac20_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/teams/0033984b-057d-4423-9802-df8f5275ac20_color.png -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/teams/0033984b-057d-4423-9802-df8f5275ac20_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/teams/0033984b-057d-4423-9802-df8f5275ac20_outline.png -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/tsconfig.json -------------------------------------------------------------------------------- /Supplement Chapter 25/CitiesListWebpart/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Microsoft-365-and-SharePoint-Online-Cookbook-Second-Edition/HEAD/Supplement Chapter 25/CitiesListWebpart/tslint.json --------------------------------------------------------------------------------