Skip to content

Commit 9838d45

Browse files
authored
Merge branch 'main' into copilot/fix-4967
2 parents 9d6acbf + f3450ae commit 9838d45

11 files changed

Lines changed: 64 additions & 66 deletions

File tree

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: npm install @playwright/test --save-dev
2929
- name: Run Playwright tests
3030
run: npx playwright test tests/basic.spec.ts tests/packaging.spec.ts tests/report-card.spec.ts
31-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
3232
if: always()
3333
with:
3434
name: playwright-report

.github/workflows/vscode-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
npx vsce package --out package.vsix
5151
5252
- name: Upload
53-
uses: actions/upload-artifact@v2
53+
uses: actions/upload-artifact@v4
5454
with:
5555
name: vsix-package
5656
path: package.vsix

.github/workflows/vscode-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
npx vsce package --out preview.vsix
5151
5252
- name: Upload
53-
uses: actions/upload-artifact@v2
53+
uses: actions/upload-artifact@v4
5454
with:
5555
name: vsix-package
5656
path: preview.vsix

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ sl-icons/
88
types/
99
.env
1010
docs/**/_sidebar.md
11+
playwright-report/
12+
test-results/

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"configurations": [
66
{
77
"name": "Debug in VSCode",
8-
"type": "edge",
8+
"type": "msedge",
99
"request": "launch",
1010
"version": "stable",
1111
"url": "http://localhost:8000",

apps/pwabuilder/playwright-report/index.html

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

apps/pwabuilder/src/script/components/arrow-link.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ export class ArrowLink extends LitElement {
3535
cursor: pointer;
3636
}
3737
38+
.arrow_anchor:focus-visible {
39+
outline: 2px solid #000000;
40+
outline-offset: 2px;
41+
}
42+
3843
.arrow_anchor:hover img {
3944
animation: bounce 1s;
4045
}

apps/pwabuilder/src/script/components/windows-form.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ export class WindowsForm extends AppPackageFormBase {
103103
padding: 0 10px;
104104
}
105105
106+
sl-details::part(header):focus-visible {
107+
outline: 2px solid #000000;
108+
outline-offset: -2px;
109+
}
110+
106111
.details-summary {
107112
display: flex;
108113
align-items: center;

apps/pwabuilder/src/script/pages/app-home.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ export const homeStyles = css`
141141
grid-area: 1 / 1 / auto / 5;
142142
display: flex;
143143
flex-direction: column;
144+
width: 100%;
144145
}
145146
#input-box::part(input) {
146147
-webkit-text-fill-color: var(--sl-input-color);

apps/pwabuilder/src/script/pages/app-report.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,16 @@ export class AppReport extends LitElement {
253253
padding: 5px 20px;
254254
}
255255
256+
sl-details:focus-visible {
257+
outline: 2px solid var(--primary-color);
258+
outline-offset: 2px;
259+
}
260+
261+
sl-details::part(header):focus-visible {
262+
outline: 2px solid var(--primary-color);
263+
outline-offset: 2px;
264+
}
265+
256266
sl-details::part(summary-icon){
257267
display: none;
258268
}

0 commit comments

Comments
 (0)