Skip to content

Commit

Permalink
chore(storage): Export FileUploaderHandle and StorageManagerHandle (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
esauerbo authored Sep 19, 2024
1 parent eb97f90 commit 028a91b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/happy-cobras-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@aws-amplify/ui-react-storage": patch
---

chore(storage): Export `FileUploaderHandle` and `StorageManagerHandle`
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { FileUploader } from './FileUploader';
export { FileUploaderProps } from './types';
export { FileUploaderHandle, FileUploaderProps } from './types';
export {
DropZoneProps,
ContainerProps,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { StorageManager } from './StorageManager';
export { StorageManagerProps } from './types';
export { StorageManagerHandle, StorageManagerProps } from './types';
export {
DropZoneProps,
ContainerProps,
Expand Down
7 changes: 6 additions & 1 deletion packages/react-storage/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
export { FileUploader, FileUploaderProps } from './FileUploader';
export {
FileUploader,
FileUploaderHandle,
FileUploaderProps,
} from './FileUploader';

export { StorageImage, StorageImageProps } from './StorageImage';

export {
StorageManager,
StorageManagerHandle,
StorageManagerProps,
DropZoneProps,
ContainerProps,
Expand Down
2 changes: 2 additions & 0 deletions packages/react-storage/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
export {
FileUploader,
FileUploaderHandle,
FileUploaderProps,
StorageImage,
StorageImageProps,
StorageManager,
StorageManagerHandle,
StorageManagerProps,
DropZoneProps,
ContainerProps,
Expand Down

0 comments on commit 028a91b

Please sign in to comment.