Updated readme, sample, solutions version

This commit is contained in:
Hugo Bernier 2021-08-01 21:15:48 -04:00
parent 0a5f66ca91
commit d480fe0dee
5 changed files with 6 additions and 4 deletions

View File

@ -33,6 +33,7 @@ hero-webpart | [Omar El-Anis](https://github.com/omarelanis) @ SP Bytes www.spby
Version|Date|Comments Version|Date|Comments
-------|----|-------- -------|----|--------
1.2|July 27, 2021|Updated to automatically detect how many items are being displayed and adjust the display layout based on this<br/>Updated design to show the title on all images<br/>Updated description area on hover<br/>Updated hover effect of image to show a zoom effect when hovering over an item<br/>General cleaning up of CSS and code
1.1|March 10, 2021|Update comment 1.1|March 10, 2021|Update comment
1.0|January 29, 2021|Initial release 1.0|January 29, 2021|Initial release

View File

@ -9,7 +9,7 @@
"This solution creates a customisable Hero web part, it uses a stored collection from the PnP PropertyFieldCollectionData control " "This solution creates a customisable Hero web part, it uses a stored collection from the PnP PropertyFieldCollectionData control "
], ],
"creationDateTime": "2021-04-02", "creationDateTime": "2021-04-02",
"updateDateTime": "2021-04-02", "updateDateTime": "2021-07-27",
"products": [ "products": [
"SharePoint", "SharePoint",
"Office" "Office"

View File

@ -3,7 +3,7 @@
"solution": { "solution": {
"name": "Hero Layout Webpart", "name": "Hero Layout Webpart",
"id": "5efc0426-3e59-4fc7-b638-73eb77aaf788", "id": "5efc0426-3e59-4fc7-b638-73eb77aaf788",
"version": "1.0.0.0", "version": "1.2.0.0",
"includeClientSideAssets": true, "includeClientSideAssets": true,
"skipFeatureDeployment": true, "skipFeatureDeployment": true,
"isDomainIsolated": false, "isDomainIsolated": false,

View File

@ -1,6 +1,6 @@
{ {
"name": "hero-webpart", "name": "hero-webpart",
"version": "0.0.1", "version": "1.2.0",
"private": true, "private": true,
"main": "lib/index.js", "main": "lib/index.js",
"scripts": { "scripts": {

View File

@ -26,7 +26,8 @@
"isPaginated": false, "isPaginated": false,
"hideFirstPageJump": false, "hideFirstPageJump": false,
"hideLastPageJump": false, "hideLastPageJump": false,
"showAllHero": false "showAllHero": false,
"totalShow": 5
} }
} }
], ],