Chonky Versions Save

😸 A File Browser component for React.

v2.3.1

2 years ago

Fixes:

  • Explicitly export redux actions as people lost the ability to import them directly from their source file after Chonky was migrated to TSDX bundler.
  • Fix useEffect usage to not return things unless explicitly intended.

[email protected]

3 years ago

New features:

  • Added localization/i18n support using react-intl library. i18n can be configured using i18n property on FileBrowser.
  • Added dark mode support, which can be enabled using the darkMode prop on FileBrowser.

Bug fixes:

  • Exported ThumbnailGenerator type from index.ts.

[email protected]

3 years ago

Bug fixes:

  • Fixed the Expected drag drop context error when disableDragAndDrop or disableDragAndDropProvider 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.

[email protected]

3 years ago

Bug fixes:

  • Upgraded exact-trie (again) to remove all mentions of LGPL-3.0 license from its code.

[email protected]

3 years ago

New features:

  • Exported ChonkyDndFileEntryItem type and ChonkyDndFileEntryType constant from Chonky's index.ts. This helps users define custom DnD drop zones, as shows in the Advanced drag & drop example.

[email protected]

3 years ago

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 to FileData interface. This field is useful if you want to make some file openable using double-click/enter but not DND-openable. By default, dndOpenable is true for folders.

[email protected]

3 years ago

New features:

  • Added folderChainIcon field to FileData 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 when disableDragAndDrop prop was set to true.
  • Gave chonky-icon-fontawesome package a real README.
  • Upgraded exact-trie to the MIT-licensed version. Now all dependencies should be MIT-compliant

[email protected]

3 years ago

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

3 years ago

Bug fixes:

  • Fixed broken v1.1.6 release.

v1.1.6

3 years ago

New features:

  • Added ChonkyIconName.paste and ChonkyIconName.share. Thanks @AndreyVanyakin!