uppy/packages/@uppy/image-editor/CHANGELOG.md
github-actions[bot] 0ee8fef148
[ci] release (#6153)
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @uppy/components@1.2.0

### Minor Changes

- 850c1cb: Introduce `useImageEditor` to build your own UI for using our
image editor in React, Vue, and Svelte.

### Patch Changes

- 680052b: - Fix Vue components to work with kebab-case props
(`:edit-file` instead of `:editFile`)
-   Updated dependencies [850c1cb]
    -   @uppy/image-editor@4.2.0

## @uppy/image-editor@4.2.0

### Minor Changes

- 850c1cb: Introduce `useImageEditor` to build your own UI for using our
image editor in React, Vue, and Svelte.

## @uppy/react@5.2.0

### Minor Changes

- 850c1cb: Introduce `useImageEditor` to build your own UI for using our
image editor in React, Vue, and Svelte.

### Patch Changes

-   Updated dependencies [680052b]
-   Updated dependencies [850c1cb]
    -   @uppy/components@1.2.0

## @uppy/svelte@5.2.0

### Minor Changes

- 850c1cb: Introduce `useImageEditor` to build your own UI for using our
image editor in React, Vue, and Svelte.

### Patch Changes

-   Updated dependencies [680052b]
-   Updated dependencies [850c1cb]
    -   @uppy/components@1.2.0

## @uppy/transloadit@5.5.0

### Minor Changes

- 680052b: Migrate from 'transloadit' to '@transloadit/types' to get the
types. No need to drag in the entire SDK.

### Patch Changes

-   Updated dependencies [680052b]
    -   @uppy/tus@5.1.1

## @uppy/vue@3.2.0

### Minor Changes

- 850c1cb: Introduce `useImageEditor` to build your own UI for using our
image editor in React, Vue, and Svelte.

### Patch Changes

- 680052b: - Fix Vue components to work with kebab-case props
(`:edit-file` instead of `:editFile`)
-   Updated dependencies [680052b]
-   Updated dependencies [850c1cb]
    -   @uppy/components@1.2.0

## @uppy/locales@5.1.1

### Patch Changes

-   680052b: Update cs_CZ dropPaste keys to use the correct variables.

## @uppy/tus@5.1.1

### Patch Changes

- 680052b: Fix Node.js support by conditionally setting a property which
does not exist in Node.js instead of crashing.

## uppy@5.2.3

### Patch Changes

-   Updated dependencies [680052b]
-   Updated dependencies [680052b]
-   Updated dependencies [680052b]
-   Updated dependencies [850c1cb]
    -   @uppy/locales@5.1.1
    -   @uppy/tus@5.1.1
    -   @uppy/transloadit@5.5.0
    -   @uppy/image-editor@4.2.0

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-29 17:28:33 +01:00

11 KiB

@uppy/image-editor

4.2.0

Minor Changes

  • 850c1cb: Introduce useImageEditor to build your own UI for using our image editor in React, Vue, and Svelte.

4.1.0

Minor Changes

  • 79e6460: - Add PluginTypeRegistry and typed getPlugin overload in @uppy/core
    • Register plugin ids across packages so uppy.getPlugin('Dashboard' | 'Webcam') returns the concrete plugin type and removes the need to pass generics in getPlugin()

Patch Changes

  • Updated dependencies [79e6460]
  • Updated dependencies [ac12f35]
  • Updated dependencies [4817585]
    • @uppy/core@5.2.0
    • @uppy/utils@7.1.4

4.0.2

Patch Changes

  • 0c16fe4: - Make file.data nullable - Because for ghosts it will be undefined and we don't have any type to distinguish ghosts from other (local) files. This caused a crash, because we didn't check for undefined everywhere (when trying to store a blob that was undefined). This means we have to add null checks in some packages
    • Split UppyFile into two intefaces distinguished by the isRemote boolean:
      • LocalUppyFile
      • RemoteUppyFile
  • Updated dependencies [0c16fe4]
    • @uppy/core@5.1.1
    • @uppy/utils@7.1.1

4.0.1

Patch Changes

  • 975317d: Removed "main" from package.json, since export maps serve as the contract for the public API.
  • Updated dependencies [4b6a76c]
  • Updated dependencies [975317d]
  • Updated dependencies [9bac4c8]
    • @uppy/core@5.0.2
    • @uppy/utils@7.0.2

4.0.0

Major Changes

  • c5b51f6: ### Export maps for all packages

    All packages now have export maps. This is a breaking change in two cases:

    1. The css imports have changed from @uppy[package]/dist/styles.min.css to @uppy[package]/css/styles.min.css
    2. You were importing something that wasn't exported from the root, for instance @uppy/core/lib/foo.js. You can now only import things we explicitly exported.

    Changed imports for @uppy/react, @uppy/vue, and @uppy/svelte

    Some components, like Dashboard, require a peer dependency to work but since all components were exported from a single file you were forced to install all peer dependencies. Even if you never imported, for instance, the status bar component.

    Every component that requires a peer dependency has now been moved to a subpath, such as @uppy/react/dashboard, so you only need to install the peer dependencies you need.

    Example for @uppy/react:

    Before:

    import { Dashboard, StatusBar } from "@uppy/react";
    

    Now:

    import Dashboard from "@uppy/react/dashboard";
    import StatusBar from "@uppy/react/status-bar";
    

Patch Changes

  • Updated dependencies [d301c01]
  • Updated dependencies [c5b51f6]
    • @uppy/utils@7.0.0
    • @uppy/core@5.0.0

3.4.2

Patch Changes

  • 1b1a9e3: Define "files" in package.json
  • Updated dependencies [1b1a9e3]
    • @uppy/utils@6.2.2
    • @uppy/core@4.5.2

3.4.0

Minor Changes

  • 0c24c5a: Use TypeScript compiler instead of Babel

Patch Changes

  • Updated dependencies [0c24c5a]
  • Updated dependencies [0c24c5a]
    • @uppy/core@4.5.0
    • @uppy/utils@6.2.0

3.3.3

Released: 2025-05-18 Included in: Uppy v4.16.0

  • @uppy/audio,@uppy/box,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/google-drive-picker,@uppy/google-drive,@uppy/google-photos-picker,@uppy/image-editor,@uppy/instagram,@uppy/onedrive,@uppy/remote-sources,@uppy/screen-capture,@uppy/unsplash,@uppy/url,@uppy/utils,@uppy/webcam,@uppy/webdav,@uppy/zoom: ts: make locale strings optional (Merlijn Vos / #5728)

3.3.0

Released: 2025-01-06 Included in: Uppy v4.11.0

  • @uppy/angular,@uppy/audio,@uppy/aws-s3,@uppy/box,@uppy/companion-client,@uppy/compressor,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/drop-target,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/form,@uppy/golden-retriever,@uppy/google-drive-picker,@uppy/google-drive,@uppy/google-photos-picker,@uppy/google-photos,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/locales,@uppy/onedrive,@uppy/progress-bar,@uppy/provider-views,@uppy/react,@uppy/remote-sources,@uppy/screen-capture,@uppy/status-bar,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/vue,@uppy/webcam,@uppy/webdav,@uppy/xhr-upload,@uppy/zoom: Remove "paths" from all tsconfig's (Merlijn Vos / #5572)

3.2.1

Released: 2024-12-05 Included in: Uppy v4.8.0

  • @uppy/audio,@uppy/aws-s3,@uppy/box,@uppy/companion-client,@uppy/compressor,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/drop-target,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/form,@uppy/golden-retriever,@uppy/google-drive,@uppy/google-photos,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/locales,@uppy/onedrive,@uppy/progress-bar,@uppy/provider-views,@uppy/react,@uppy/remote-sources,@uppy/screen-capture,@uppy/status-bar,@uppy/store-default,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/utils,@uppy/vue,@uppy/webcam,@uppy/xhr-upload,@uppy/zoom: cleanup tsconfig (Mikael Finstad / #5520)

3.2.0

Released: 2024-10-31 Included in: Uppy v4.6.0

  • @uppy/image-editor: upgrade cropperjs (Merlijn Vos / #5497)
  • @uppy/aws-s3,@uppy/box,@uppy/companion-client,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/form,@uppy/golden-retriever,@uppy/google-drive,@uppy/google-photos,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/locales,@uppy/onedrive,@uppy/progress-bar,@uppy/provider-views,@uppy/react-native,@uppy/react,@uppy/redux-dev-tools,@uppy/screen-capture,@uppy/status-bar,@uppy/store-default,@uppy/store-redux,@uppy/svelte,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/utils,@uppy/vue,@uppy/webcam,@uppy/xhr-upload,@uppy/zoom: Fix links (Anthony Veaudry / #5492)

3.1.0

Released: 2024-08-29 Included in: Uppy v4.3.0

  • @uppy/aws-s3,@uppy/box,@uppy/compressor,@uppy/dropbox,@uppy/facebook,@uppy/google-drive,@uppy/google-photos,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/onedrive,@uppy/screen-capture,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/xhr-upload,@uppy/zoom: export plugin options (Antoine du Hamel / #5433)

3.0.0-beta.2

Released: 2024-04-29 Included in: Uppy v4.0.0-beta.4

  • @uppy/image-editor: fix label definitions (Antoine du Hamel / #5111)

2.4.6

Released: 2024-05-14 Included in: Uppy v3.25.3

  • @uppy/image-editor: fix tooltips (Avneet Singh Malhotra / #5156)
  • @uppy/image-editor: Remove target option from examples and document consistently (Merlijn Vos / #5146)

2.4.5

Released: 2024-04-29 Included in: Uppy v3.25.0

  • @uppy/image-editor: fix label definitions (Antoine du Hamel / #5111)

2.4.4

Released: 2024-02-28 Included in: Uppy v3.23.0

  • @uppy/image-editor: remove default target (Merlijn Vos / #4966)

2.4.1

Released: 2024-02-19 Included in: Uppy v3.22.0

  • @uppy/image-editor: image editor: make compressor work after the image editor, too (evgenia karunus / #4918)
  • @uppy/image-editor: migrate to ts (merlijn vos / #4880)

2.4.0

Released: 2023-12-12 Included in: Uppy v3.21.0

  • @uppy/image-editor: respect cropperOptions.initialAspectRatio (Lucklj521 / #4805)

2.3.0

Released: 2023-11-08 Included in: Uppy v3.19.0

  • @uppy/image-editor: More image editor improvements (Evgenia Karunus / #4676)

2.2.1

Released: 2023-09-29 Included in: Uppy v3.17.0

  • @uppy/image-editor: ImageEditor.jsx - remove 1px black lines (Evgenia Karunus / #4678)

2.2.0

Released: 2023-09-18 Included in: Uppy v3.16.0

  • @uppy/image-editor: Improve image rotation (Evgenia Karunus / #4639)

2.1.1

Released: 2023-03-07 Included in: Uppy v3.6.0

  • @uppy/image-editor: Fix TypeScript error in image-editor types (Matthias Kunnen / #4334)

2.1.0

Released: 2022-11-10 Included in: Uppy v3.3.0

  • @uppy/image-editor: add checkered background (Livia Medeiros / #4194)

2.0.1

Released: 2022-09-25 Included in: Uppy v3.1.0

  • @uppy/image-editor: image-editor: fix controls in small Dashboard (Livia Medeiros / #4113)
  • @uppy/audio,@uppy/aws-s3-multipart,@uppy/aws-s3,@uppy/box,@uppy/companion-client,@uppy/companion,@uppy/compressor,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/drop-target,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/form,@uppy/golden-retriever,@uppy/google-drive,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/locales,@uppy/onedrive,@uppy/progress-bar,@uppy/provider-views,@uppy/react,@uppy/redux-dev-tools,@uppy/remote-sources,@uppy/screen-capture,@uppy/status-bar,@uppy/store-default,@uppy/store-redux,@uppy/svelte,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/utils,@uppy/vue,@uppy/webcam,@uppy/xhr-upload,@uppy/zoom: add missing entries to changelog for individual packages (Antoine du Hamel / #4092)

2.0.0

Released: 2022-08-22 Included in: Uppy v3.0.0

  • Switch to ESM

1.4.1

Released: 2022-07-27 Included in: Uppy v2.13.1

  • @uppy/dashboard,@uppy/image-editor,@uppy/remote-sources: Fix uppy.close() crashes when remote-sources or image-editor is installed (Merlijn Vos / #3914)

1.4.0

Released: 2022-07-18 Included in: Uppy v2.13.0

  • @uppy/image-editor: remove beta notice (Merlijn Vos / #3877)
  • @uppy/image-editor: Add image editor cancel event (James R T / #3875)

1.3.0

Released: 2022-05-30 Included in: Uppy v2.11.0

  • @uppy/angular,@uppy/audio,@uppy/aws-s3-multipart,@uppy/aws-s3,@uppy/box,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/form,@uppy/golden-retriever,@uppy/google-drive,@uppy/image-editor,@uppy/informer,@uppy/instagram,@uppy/onedrive,@uppy/progress-bar,@uppy/react,@uppy/redux-dev-tools,@uppy/robodog,@uppy/screen-capture,@uppy/status-bar,@uppy/store-default,@uppy/store-redux,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/tus,@uppy/unsplash,@uppy/url,@uppy/vue,@uppy/webcam,@uppy/xhr-upload,@uppy/zoom: doc: update bundler recommendation (Antoine du Hamel / #3763)
  • @uppy/image-editor: remove CJS-interop hack in the source code (Antoine du Hamel / #3778)

1.2.0

Released: 2022-05-14 Included in: Uppy v2.10.0

  • @uppy/image-editor: refactor to ESM (Antoine du Hamel / #3685)

1.1.1

Released: 2022-01-10 Included in: Uppy v2.4.0

  • @uppy/image-editor: namespace input range css (Merlijn Vos / #3406)

1.1.0

Released: 2021-12-07 Included in: Uppy v2.3.0

  • @uppy/image-editor: Pass croppedCanvasOptions to getCroppedCanvas (Mohamed Boudra / #3320)
  • @uppy/aws-s3,@uppy/box,@uppy/core,@uppy/dashboard,@uppy/drag-drop,@uppy/dropbox,@uppy/facebook,@uppy/file-input,@uppy/google-drive,@uppy/image-editor,@uppy/instagram,@uppy/locales,@uppy/onedrive,@uppy/screen-capture,@uppy/status-bar,@uppy/thumbnail-generator,@uppy/transloadit,@uppy/url,@uppy/webcam,@uppy/xhr-upload,@uppy/zoom: Refactor locale scripts & generate types and docs (Merlijn Vos / #3276)