Releases: aws-amplify/amplify-ui
@aws-amplify/ui-vue@4.2.23
@aws-amplify/ui-react@6.6.0
Minor Changes
- #6155
f1b1da8a1
Thanks @dbanksdesign! - feat(dropzone): add dropzone support for files within dropped directories (#6062)
Patch Changes
-
#6031
2e3a051d9
Thanks @dbanksdesign! - fix(textarea): autoresize textarea resets when value is emptyThere was a bug with the autoresize text area where it would not reset the size when a value was cleared. This fixes that bug
-
#6149
0d4d2b91c
Thanks @dbanksdesign! - chore: get ai package ready for release -
Updated dependencies [
90ea18ba0
,0d4d2b91c
,24635cfd5
]:- @aws-amplify/ui-react-core@3.0.30
- @aws-amplify/ui@6.6.6
@aws-amplify/ui-react-storage@3.3.10
@aws-amplify/ui-react-notifications@2.0.35
@aws-amplify/ui-react-native@2.2.17
@aws-amplify/ui-react-liveness@3.1.16
@aws-amplify/ui-react-geo@2.0.31
Patch Changes
- Updated dependencies [
90ea18ba0
]:- @aws-amplify/ui-react-core@3.0.30
@aws-amplify/ui-react-core@3.0.30
Patch Changes
-
#6145
90ea18ba0
Thanks @dindjarinjs! - chore: fix issue where drag and drop throws illegal invocation -
Updated dependencies [
0d4d2b91c
,24635cfd5
]:- @aws-amplify/ui@6.6.6
@aws-amplify/ui-react-core-notifications@2.0.30
@aws-amplify/ui-react-ai@1.0.0
Major Changes
- #6149
0d4d2b91c
Thanks @dbanksdesign! - chore: get ai package ready for release
Minor Changes
-
#6090
a25e5ed7a
Thanks @dbanksdesign! - feat(ai): add aiContext prop to AIConversation<AIConversation messages={messages} isLoading={isLoading} handleSendMessage={sendMessage} // This will let the LLM know about the current state of this application // so it can better respond to questions, you can put any information // in this object that might be helpful aiContext={() => { return { currentTime: new Date().toLocaleTimeString(), }; }} />
-
#5920
dcdb2cdf0
Thanks @dbanksdesign! - AI streamingThis update brings streaming responses to the
useAIConversation()
hook and<AIConversation />
component. No changes need to be made in your code to get streaming responses now. -
#6006
759623301
Thanks @sasssssssa! - fix: AIConversation doesn't care about conversion, for example Hira to Kanji in JapaneseWhen to push Return/Enter key in the Form about AIConversation component, it can decide to send a message by whether in editing the text.
-
#5968
3b96ff7c0
Thanks @dbanksdesign! - feat(ai): add fallback response component<AIConversation FallBackResponseComponent={(props) => <>{JSON.stringify(props)}</>} //... />
-
#5999
24635cfd5
Thanks @dbanksdesign! - chore: ai cleanup<AIConversation messages={messages} handleSendMessage={handleSendMessage} actions={[ { component: <MdCopyAll />, handler: (message) => {}, }, ]} />