Releases: TimboKZ/Chonky
Releases · TimboKZ/Chonky
v2.3.1
v2.1.0
New features:
- Added localization/i18n support using
react-intl
library. i18n can be configured usingi18n
property onFileBrowser
. - Added dark mode support, which can be enabled using the
darkMode
prop onFileBrowser
.
Bug fixes:
- Exported
ThumbnailGenerator
type fromindex.ts
.
v2.0.5
Bug fixes:
- Fixed the
Expected drag drop context
error whendisableDragAndDrop
ordisableDragAndDropProvider
is 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
ChonkyDndFileEntryItem
type andChonkyDndFileEntryType
constant 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
MoveFiles
action. - 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
dndOpenable
field toFileData
interface. This field is useful if you want to make some file openable using double-click/enter but not DND-openable. By default,dndOpenable
istrue
for folders.
v2.0.1
New features:
- Added
folderChainIcon
field toFileData
interface. It can be used to display a custom file icon in the folder chain (FileNavbar
component).
Bug fixes:
- Fixed
DnDProvider
component being rendered even whendisableDragAndDrop
prop was set totrue
. - Gave
chonky-icon-fontawesome
package a real README. - Upgraded
exact-trie
to 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.paste
andChonkyIconName.share
. Thanks @AndreyVanyakin!