Skip to content

Releases: aws-amplify/amplify-ui

@aws-amplify/ui-vue@4.2.23

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react@6.6.0

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #6031 2e3a051d9 Thanks @dbanksdesign! - fix(textarea): autoresize textarea resets when value is empty

    There 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

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react-notifications@2.0.35

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react-native@2.2.17

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [90ea18ba0, 0d4d2b91c, 24635cfd5]:
    • @aws-amplify/ui-react-core@3.0.30
    • @aws-amplify/ui@6.6.6
    • @aws-amplify/ui-react-core-notifications@2.0.30

@aws-amplify/ui-react-liveness@3.1.16

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react-geo@2.0.31

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

  • Updated dependencies [90ea18ba0]:
    • @aws-amplify/ui-react-core@3.0.30

@aws-amplify/ui-react-core@3.0.30

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react-core-notifications@2.0.30

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Patch Changes

@aws-amplify/ui-react-ai@1.0.0

19 Nov 06:11
526b0f3
Compare
Choose a tag to compare

Major Changes

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 streaming

    This 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 Japanese

    When 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) => {},
        },
      ]}
    />

Patch Changes