Skip to content

v6.3.6: Add result on Tooltip functionality for File Item and other fixes

Compare
Choose a tag to compare
@JinSSJ3 JinSSJ3 released this 07 Dec 05:31
· 79 commits to master since this release

🧪 New features

<FileItem/>:

Added resultOnToolip prop. This prop provides another hover interaction. If present or true, FileItem will show the file validation status and the upload status on a nice tooltip.
imagen
Otherwhise, if not present, false or undefined, FileItem will display the result on the InfoLayer.
imagen

Special thanks to @mateusmx, 👏 who suggested this feature🧪.

<Dropzone/>:

Added disableScroll prop. This prop disables the css property overflow: auto in FileItemContainer inside Dropzone, when it displays the FileItem list inside of it. It also disables the maxHeight property and forces the view prop to be "grid". The purpose of this special prop is to allow FileItemContainer to grow at the same time FileItem list increases and prevent triggering scrollbars.

When disableScroll is not present:
imagen

When disableScroll is present or true:
imagen

🐛 Fixes or improvements

<Dropzone/>: Fixed issue in FileItemContainer that made it to overflow the size of Dropzone.

📚 Improved documentation.

  • Added documentation about this new features