Releases: TimboKZ/Chonky
Releases · TimboKZ/Chonky
v2.3.1
v2.1.0
New features:
- Added localization/i18n support using
react-intllibrary. i18n can be configured usingi18nproperty onFileBrowser. - Added dark mode support, which can be enabled using the
darkModeprop onFileBrowser.
Bug fixes:
- Exported
ThumbnailGeneratortype fromindex.ts.
v2.0.5
Bug fixes:
- Fixed the
Expected drag drop contexterror whendisableDragAndDropordisableDragAndDropProvideris set to true. From now on, Chonky should never error out when DnD context is not present. Instead, it will silently disable drag & drop. - Fixed exports in
index.ts. Type and enum exports are no longer mixed, and TS no longer complains about missing types.
v2.0.4
Bug fixes:
- Upgraded
exact-trie(again) to remove all mentions of LGPL-3.0 license from its code.
v2.0.3
New features:
- Exported
ChonkyDndFileEntryItemtype andChonkyDndFileEntryTypeconstant from Chonky'sindex.ts. This helps users define custom DnD drop zones, as shows in the Advanced drag & drop example.
v2.0.2
New features:
- Files can now be drag & dropped onto folder chain items, which will trigger the
MoveFilesaction. - Folders can now be opened by hovering them using drag & drop (open delay is ~1.5 seconds). This works for both file navbar and file list.
- Added
dndOpenablefield toFileDatainterface. This field is useful if you want to make some file openable using double-click/enter but not DND-openable. By default,dndOpenableistruefor folders.
v2.0.1
New features:
- Added
folderChainIconfield toFileDatainterface. It can be used to display a custom file icon in the folder chain (FileNavbarcomponent).
Bug fixes:
- Fixed
DnDProvidercomponent being rendered even whendisableDragAndDropprop was set totrue. - Gave
chonky-icon-fontawesomepackage a real README. - Upgraded
exact-trieto the MIT-licensed version. Now all dependencies should be MIT-compliant
v2.0.0
The first Chonky 2.x release. It revamps the file action framework, adds the FileNavbar and FileContextMenu components, introduces Redux for internal state management, breaks out ChonkyIconFA into a separate package, and much more!
v1.1.7
v1.1.6
New features:
- Added
ChonkyIconName.pasteandChonkyIconName.share. Thanks @AndreyVanyakin!