Skip to content
Snippets Groups Projects
Commit c8e85167 authored by Jose Manuel Serrano Amaut's avatar Jose Manuel Serrano Amaut
Browse files

[REF]: Add extfile type in changelog

parent 4f19d3ef
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@ Thils file also consider all dropzone-ui [releases](https://github.com/dropzone-
## 🧪 New features and 🐛 :hammer: Improvements
- [ExtFile](https://www.files-ui.com/types#extfile): Data estructure that "extends" the File Object. This object is designed to allow the information exchange between components. This data type replaces the old "FileValidate" type from dropzone-ui.
- [\<FileMosaic/\>](https://www.files-ui.com/components/filemosaic): This new component replaces the old "FileItem" component.
- Dark mode: Now this component can be adpted to a dark mode pages with the respective prop.
......
......@@ -8,6 +8,17 @@ import InfiniteLoader from "../loader/InfiniteLoader/InfiniteLoader";
import Layer from "../FileMosaic/components/file-mosaic-layer/Layer";
import ImagePreview from "../ImagePreview/ImagePreview";
import { FileIdGenerator } from "@files-ui/core";
/**
*
* Demos:
*
* - [Avatar](https://www.files-ui.com/components/avatar)
*
* API:
*
* - [Avatar API](https://www.files-ui.com/api/avatar/)
*/
const Avatar: React.FC<AvatarProps> = (props: AvatarProps) => {
const {
readOnly,
......
......@@ -63,6 +63,16 @@ import { useDropzoneFileListUpdater, useDropLayerClassName, useDropzoneClassName
//import { print_manager } from "../../../../../utils";
/**
*
* Demos:
*
* - [Dropzone](https://www.files-ui.com/components/dropzone)
*
* API:
*
* - [Dropzone API](https://www.files-ui.com/api/dropzone/)
*/
const Dropzone: React.FC<DropzoneProps> = (props: DropzoneProps) => {
const {
//basic
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment