Skip to content

Commit e1ff991

Browse files
committed
[DOC]: Updated Changlog.md
1 parent 94cdd27 commit e1ff991

File tree

1 file changed

+62
-27
lines changed

1 file changed

+62
-27
lines changed

CHANGELOG.md

Lines changed: 62 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,73 @@
99

1010
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
1111

12-
<a name="7.0.0"></a>
12+
<a name="6.4.0"></a>
1313

14-
## [7.0.0](https://github.com/dropzone-ui/dropzone-ui/compare/v7.0.0...v6.2.0) (2021-dd-mm)
14+
## [6.4.0](https://github.com/dropzone-ui/react-dropzone/releases/tag/v6.4.0) (2021-12-12)
1515

16-
### New features
17-
- \<ToolTip/\>: New component added for displaying message for non valid files and upload status on a tooltip when user hovers FileItem. Idea was suggested by [mateusmx](https://github.com/mateusmx).
18-
- \<FileItem/\>: Added resultOnLayer prop that allows keep the behaviour thta makes FileItem show the result of validation and upload on the FullInfoLayer when user pressed the `info` button. If not presnt or false, the default behaviour will be to show that info when user hovers the FileItem on a ToolTip. If true, the tooltip won´t be displayed.
16+
## 🧪 New features
17+
18+
- \<FileItem/\>: Added `onWatch` prop. This prop provides an event handler for allowing full screen video previews. It works like `onSee` prop. It returns as first parameter the file object. If `onWatch` is present, file is `valid` and file type is `video`, `FileItem` will display the `play` button.
19+
- \<VideoPreview/\>: Added new component`VideoPreview`. This component is quite similar to `FullScreenPreview`. As the name sugests, this component is meant to be used to show video previews. Supported videos are the default supported videos by a [`<video/>`](https://www.w3schools.com/tags/tag_video.asp) tag (mp4, ogg, webm). First prop `videoSource` can be a `File` object or a `URI string` representation. Works in the same way as `FullScreenPreview`, it rcieves a `onClose` prop and an `open` prop.
20+
It also recieves `autoplay` and `controls` props like classic html [`<video/>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video#attributes) tag.
21+
22+
## 🐛 Fixes or improvements
23+
24+
- \<FullScreenPreview/>: Improved media query style.
25+
26+
## 📚 Improved documentation.
27+
28+
- Added documentation about new prop on `FileItem`.
29+
- Added documentation about new component `VideoPreview`.
30+
31+
<a name="6.3.6"></a>
32+
33+
## [6.3.6](https://github.com/dropzone-ui/react-dropzone/releases/tag/v6.3.6) (2021-07-12)
34+
35+
## 🧪 New features
36+
37+
- \<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. Otherwhise, if not present, false or undefined, FileItem will display the result on the InfoLayer. Special thanks to @mateusmx, 👏 who suggested this feature🧪.
38+
39+
- \<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.
40+
41+
## 🐛 Fixes or improvements
42+
43+
- \<Dropzone/>: Fixed issue in FileItemContainer that made it to overflow the size of Dropzone.
44+
45+
## 📚 Improved documentation.
1946

47+
- Added documentation about this new features
2048

2149
<a name="6.2.0"></a>
2250

23-
## [6.2.0](https://github.com/dropzone-ui/dropzone-ui/compare/v6.2.0...v5.5.6) (2021-26-11)
51+
## [6.2.0](https://github.com/dropzone-ui/react-dropzone/releases/tag/v6.2.0) (2021-26-11)
2452

2553
### New features
26-
- \<FileItem/\>: Added `alwaysActive` prop. This prop provides hover interaction. If false (by default), FileItem will hide the main layer with all the buttons except the file validation status and the upload status. If true, main layer will be visible all the time.
27-
- \<FileItem/\>: Added `elevation` prop. This prop provides the user to decide about the shadow and border on the `FileItem` container.
54+
55+
- \<FileItem/\>: Added `alwaysActive` prop. This prop provides hover interaction. If false (by default), FileItem will hide the main layer with all the buttons except the file validation status and the upload status. If true, main layer will be visible all the time.
56+
- \<FileItem/\>: Added `elevation` prop. This prop provides the user to decide about the shadow and border on the `FileItem` container.
2857
- `Webpage` in beta version was released. You can visit [dropzone-ui.com](http://www.dropzone-ui.com). In there you can find a nice code generator.
29-
30-
### Fixes or improvements
31-
- \<Dropzone/\>: Fixed Spanish translation on footer.
32-
- \<Dropzone/\>: Hide "view" button when view prop is provided.
33-
- \<Dropzone/\>: Fix issue that hides dropzone label when FileItems are outside.
34-
- \<Dropzone/\>: Fixed minor issues on minHeight.
35-
- \<FileItem/\>: Hide "delete" button when onDelete prop is not provided
36-
- \<FileItem/\>: Change `word-break` css propertie from `break-all` to `break-word`;
58+
59+
### Fixesor improvements
60+
61+
- \<Dropzone/\>: Fixed Spanish translation on footer.
62+
- \<Dropzone/\>: Hide "view" button when view prop is provided.
63+
- \<Dropzone/\>: Fix issue that hides dropzone label when FileItems are outside.
64+
- \<Dropzone/\>: Fixed minor issues on minHeight.
65+
- \<FileItem/\>: Hide "delete" button when onDelete prop is not provided
66+
- \<FileItem/\>: Change `word-break` css propertie from `break-all` to `break-word`;
3767

3868
### Future feature
39-
- \<FileItem/\>: Show `upload status` on hover event.
69+
70+
- \<FileItem/\>: Show `upload status` on hover event.
71+
72+
<a name="5.5.6"></a>
73+
74+
## [5.5.6](https://github.com/dropzone-ui/react-dropzone/releases/tag/v5.3.0) (2021-26-11)
75+
76+
- 🧪 Added Localization support for ✨ **Russian** and **Chinese** ✨.
77+
- 🐛 Fixed small bugs.
78+
- 📚 Improved documentation.
4079

4180
<a name="3.0.1"></a>
4281

@@ -48,20 +87,19 @@ All notable changes to this project will be documented in this file. See [standa
4887
- File Item component can show image directly from url.
4988
- Minor bugs on Dropzone useStyle hook fixed.
5089

51-
52-
5390
<a name="3.0.1"></a>
5491

5592
## [3.0.1](https://github.com/dropzone-ui/dropzone-ui/compare/v2.8.1...v3.0.1) (2021-10-11)
5693

5794
### Features
5895

5996
- Translation support for `Portuguese`.
60-
<a name="2.8.1"></a>
97+
<a name="2.8.1"></a>
6198

6299
## [2.8.1](https://github.com/dropzone-ui/dropzone-ui/compare/v2.8.1...v2.1.1) (2021-10-08)
63100

64101
### Features
102+
65103
- Translation support for `French`.
66104

67105
<a name="2.1.1"></a>
@@ -101,7 +139,7 @@ All notable changes to this project will be documented in this file. See [standa
101139

102140
- Improve Readme.md
103141
- Add quiality badge
104-
<a name="1.2.9"></a>
142+
<a name="1.2.9"></a>
105143

106144
## [1.2.9](https://github.com/dropzone-ui/dropzone-ui/compare/v1.0.1...v1.0.2) (2021-09-12)
107145

@@ -111,8 +149,6 @@ All notable changes to this project will be documented in this file. See [standa
111149
- Release FileItemContainer Compnent
112150
- Improve API doc for all components (now arranged alphabetically)
113151

114-
115-
116152
<a name="1.1.28"></a>
117153

118154
## [1.1.28](https://github.com/dropzone-ui/dropzone-ui/compare/v1.0.1...v1.0.2) (2021-09-09)
@@ -121,18 +157,17 @@ All notable changes to this project will be documented in this file. See [standa
121157

122158
- Minor bug fixed, upload status not hiding on info open fixed
123159

124-
125160
<a name="1.0.28"></a>
126161

127162
## [1.0.28](https://github.com/dropzone-ui/dropzone-ui/compare/v1.0.1...v1.0.2) (2021-09-08)
128163

129164
### Features
130165

131-
- added readme status badges
166+
- added readme status badges
132167

133-
- Add Travis ci and coveralls integration
168+
- Add Travis ci and coveralls integration
134169

135-
- update README description
170+
- update README description
136171
- Dropzone, FileItem and FullScreenImage components released
137172

138173
<a name="1.0.1"></a>

0 commit comments

Comments
 (0)