Skip to content

Commit 093dea1

Browse files
author
aws-toolkit-automation
committed
Merge release into master
2 parents 39db461 + fd2c9a0 commit 093dea1

File tree

8 files changed

+66
-25
lines changed

8 files changed

+66
-25
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"date": "2024-07-11",
3+
"version": "1.14.0",
4+
"entries": [
5+
{
6+
"type": "Feature",
7+
"description": "Amazon Q/dev proactively show code generation iterations"
8+
}
9+
]
10+
}

packages/amazonq/.changes/next-release/Feature-4a1c951a-2289-4808-b106-86fe4f03528e.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/amazonq/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.14.0 2024-07-11
2+
3+
- **Feature** Amazon Q/dev proactively show code generation iterations
4+
15
## 1.13.0 2024-07-11
26

37
- **Bug Fix** AD/LDAP users may see "uv_os_get_passwd ENOENT" error on startup #5277

packages/amazonq/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "amazon-q-vscode",
33
"displayName": "Amazon Q",
44
"description": "Amazon Q is your generative AI-powered assistant across the software development lifecycle.",
5-
"version": "1.14.0-SNAPSHOT",
5+
"version": "1.15.0-SNAPSHOT",
66
"extensionKind": [
77
"workspace"
88
],

packages/core/src/login/webview/vue/login.vue

Lines changed: 35 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,7 @@
222222
Connecting to IAM...
223223
</div>
224224
<div v-else class="header bottomMargin">Authenticating in browser...</div>
225-
<button
226-
class="continue-button"
227-
v-on:click="handleCancelButton()"
228-
style="color: #6f6f6f; background-color: var(--vscode-input-background)"
229-
>
230-
Cancel
231-
</button>
225+
<button class="continue-button" v-on:click="handleCancelButton()">Cancel</button>
232226
</div>
233227
</template>
234228

@@ -666,6 +660,26 @@ export default defineComponent({
666660
color: #6f6f6f;
667661
cursor: not-allowed;
668662
}
663+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .continue-button {
664+
background-color: white;
665+
color: var(--vscode-input-background);
666+
}
667+
668+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .continue-button:disabled {
669+
background-color: #6f6f6f;
670+
color: var(--vscode-input-background);
671+
}
672+
673+
body.vscode-high-contrast-light .continue-button {
674+
background-color: var(--vscode-button-background);
675+
color: white;
676+
}
677+
678+
body.vscode-high-contrast-light .continue-button:disabled {
679+
background-color: #6f6f6f;
680+
color: var(--vscode-input-background);
681+
}
682+
669683
.urlInput {
670684
background-color: var(--vscode-input-background);
671685
width: 244px;
@@ -679,10 +693,12 @@ export default defineComponent({
679693
font-size: var(--font-size-base);
680694
font-weight: 400;
681695
}
682-
body.vscode-light .urlInput {
696+
body.vscode-light .urlInput,
697+
body.vscode-high-contrast-light .urlInput {
683698
color: black;
684699
}
685-
body.vscode-dark .urlInput {
700+
body.vscode-dark .urlInput,
701+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .urlInput {
686702
color: #cccccc;
687703
}
688704
.iamInput {
@@ -698,10 +714,13 @@ body.vscode-dark .urlInput {
698714
font-size: var(--font-size-base);
699715
font-weight: 400;
700716
}
701-
body.vscode-light .iamInput {
717+
body.vscode-light .iamInput,
718+
body.vscode-high-contrast-light .iamInput {
702719
color: black;
703720
}
704-
body.vscode-dark .iamInput {
721+
722+
body.vscode-dark .iamInput,
723+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .iamInput {
705724
color: #cccccc;
706725
}
707726
.regionSelect {
@@ -716,10 +735,13 @@ body.vscode-dark .iamInput {
716735
font-size: var(--font-size-base);
717736
font-weight: 400;
718737
}
719-
body.vscode-light .regionSelect {
738+
body.vscode-light .regionSelect,
739+
body.vscode-high-contrast-light .regionSelect {
720740
color: black;
721741
}
722-
body.vscode-dark .regionSelect {
742+
743+
body.vscode-dark .regionSelect,
744+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .regionSelect {
723745
color: white;
724746
}
725747
.start-url-error {

packages/core/src/login/webview/vue/reauthenticate.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,11 @@ button#cancel {
225225
cursor: pointer;
226226
}
227227
228+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) button#reauthenticate {
229+
background-color: white;
230+
color: black;
231+
}
232+
228233
#title {
229234
font-weight: bold;
230235
}

packages/core/src/login/webview/vue/selectableItem.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,15 @@ export default defineComponent({
134134
word-break: break-all;
135135
}
136136
137-
.vscode-dark .item-container-base.focussed:before {
137+
.vscode-dark .item-container-base.focussed:before,
138+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .item-container-base.focussed:before {
138139
background-color: white;
139140
color: rgba(0, 0, 0, 0.8);
140141
}
141-
.vscode-light .item-container-base.focussed:before {
142-
background-color: black;
143-
color: rgba(255, 255, 255, 0.8);
142+
.vscode-light .item-container-base.focussed:before,
143+
body.vscode-high-contrast-light .item-container-base.focussed:before {
144+
background-color: rgba(255, 255, 255, 0.8);
145+
color: black;
144146
}
145147
146148
.hovering {
@@ -178,10 +180,12 @@ export default defineComponent({
178180
display: flex;
179181
align-items: center;
180182
}
181-
.vscode-dark .icon .svg-path {
183+
.vscode-dark .icon .svg-path,
184+
body.vscode-high-contrast:not(body.vscode-high-contrast-light) .icon .svg-path {
182185
fill: white;
183186
}
184-
.vscode-light .icon .svg-path {
187+
.vscode-light .icon .svg-path,
188+
body.vscode-high-contrast-light .icon .svg-path {
185189
fill: black;
186190
}
187191
</style>

0 commit comments

Comments
 (0)