Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Amazon Q: Fix chat syntax highlighting when using several different themes"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "feature",
"description" : "Amazon Q: UI improvements to chat: New splash loader animation, initial streaming card animation, improved button colours"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "feature",
"description" : "Amazon Q: Navigate through prompt history by using the up/down arrows"
}
8 changes: 4 additions & 4 deletions plugins/amazonq/mynah-ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/amazonq/mynah-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"lintfix": "eslint -c .eslintrc.js --fix --ext .ts ."
},
"dependencies": {
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.18.1",
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.21.0",
"@types/node": "^14.18.5",
"fs-extra": "^10.0.1",
"sanitize-html": "^2.12.1",
Expand Down
19 changes: 13 additions & 6 deletions plugins/amazonq/mynah-ui/src/mynah-ui/ui/walkthrough/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ function createdTabbedData(examples: string[], agent: string): ChatItemContent['
{
label: 'Examples',
value: 'examples',
icon: MynahIcons.PLAY,
content: {
body: `**Example use cases:**\n${exampleText}\n\nEnter ${agent} in Q Chat to get started`,
},
Expand Down Expand Up @@ -59,6 +58,7 @@ Implement features or make changes across your workspace, all from a single prom
status: 'main',
disabled: false,
flash: 'once',
fillState: 'hover',
icon: MynahIcons.RIGHT_OPEN,
id: 'quick-start-featuredev',
text: `Quick start with **/dev**`,
Expand Down Expand Up @@ -86,10 +86,11 @@ Automatically generate unit tests for your active file.
text: 'Read user guide',
},
{
status: 'primary',
status: 'main',
disabled: false,
icon: MynahIcons.RIGHT_OPEN,
flash: 'once',
fillState: 'hover',
icon: MynahIcons.RIGHT_OPEN,
id: 'quick-start-codetest',
text: `Quick start with **/test**`,
},
Expand Down Expand Up @@ -120,9 +121,11 @@ Create and update READMEs for better documented code.
text: 'Read user guide',
},
{
status: 'main',
disabled: false,
flash: 'once',
fillState: 'hover',
icon: MynahIcons.RIGHT_OPEN,
flash: 'infinite',
id: 'quick-start-doc',
text: `Quick start with **/doc**`,
},
Expand Down Expand Up @@ -153,9 +156,11 @@ Review code for issues, then get suggestions to fix your code instantaneously.
text: 'Read user guide',
},
{
status: 'main',
disabled: false,
flash: 'once',
fillState: 'hover',
icon: MynahIcons.RIGHT_OPEN,
flash: 'infinite',
id: 'quick-start-codescan',
text: `Quick start with **/review**`,
},
Expand All @@ -182,9 +187,11 @@ Upgrade library and language versions in your codebase.
text: 'Read user guide',
},
{
status: 'main',
disabled: false,
flash: 'once',
fillState: 'hover',
icon: MynahIcons.RIGHT_OPEN,
flash: 'infinite',
id: 'quick-start-codetransform',
text: `Quick start with **/transform**`,
},
Expand Down
Loading