-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(react-storage): expose additional storage browser types (#6219)
* Revert "fix(react-storage): fix createStorageBrowser type issue (#6217)" This reverts commit c59b2e2. * fix(react-storage): expose additional storage browser types * Update packages/react-storage/src/components/StorageBrowser/actions/configs/types.ts Co-authored-by: Caleb Pollman <[email protected]> * Update packages/react-storage/src/components/StorageBrowser/types.ts Co-authored-by: Caleb Pollman <[email protected]> * Update packages/react-storage/src/components/StorageBrowser/types.ts Co-authored-by: Caleb Pollman <[email protected]> * Create nine-berries-smile.md --------- Co-authored-by: Caleb Pollman <[email protected]>
- Loading branch information
1 parent
efbfd14
commit 8bf3c30
Showing
5 changed files
with
40 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@aws-amplify/ui-react-storage": minor | ||
--- | ||
|
||
fix(react-storage): expose additional storage browser types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 12 additions & 2 deletions
14
packages/react-storage/src/components/StorageBrowser/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
export { componentsDefault } from './componentsDefault'; | ||
export { createStorageBrowser } from './createStorageBrowser'; | ||
export { ActionViewConfig, ActionHandler, FileDataItem } from './actions'; | ||
export { | ||
ActionViewConfig, | ||
ActionHandler, | ||
FileDataItem, | ||
ExtendedActionConfigs, | ||
} from './actions'; | ||
export { | ||
createAmplifyAuthAdapter, | ||
createManagedAuthAdapter, | ||
CreateManagedAuthAdapterInput, | ||
StorageBrowserAuthAdapter, | ||
} from './adapters'; | ||
export { CreateStorageBrowserInput, StorageBrowserType } from './types'; | ||
export { | ||
CreateStorageBrowserInput, | ||
StorageBrowserType, | ||
DerivedActionViewType, | ||
DerivedActionViews, | ||
} from './types'; | ||
export { DefaultStorageBrowserDisplayText } from './displayText'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters