Skip to content

Commit a310f92

Browse files
committed
Merge remote-tracking branch 'origin/main' into v2-merge-main
2 parents a588b48 + 274d038 commit a310f92

File tree

157 files changed

+2305
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+2305
-254
lines changed

.changeset/witty-spoons-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@builder.io/qwik-city': patch
3+
---
4+
5+
🩹 SPA Link now handle subsequent onQVisible$ passed as props.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"@types/tmp": "0.2.6",
104104
"@types/which-pm-runs": "1.0.2",
105105
"@vitest/coverage-v8": "3.1.1",
106+
"@vitejs/plugin-basic-ssl": "2.0.0",
106107
"all-contributors-cli": "6.26.1",
107108
"brotli": "1.3.3",
108109
"concurrently": "8.2.2",

packages/docs/public/_headers

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1+
/*
2+
Cache-Control: public, max-age=3600, s-maxage=3600
3+
14
/assets/*
5+
! Cache-Control
26
Cache-Control: public, max-age=31536000, s-maxage=31536000, immutable
37

48
/build/*
9+
! Cache-Control
510
Cache-Control: public, max-age=31536000, s-maxage=31536000, immutable
611

712
/*.svg
13+
! Cache-Control
814
Cache-Control: public, max-age=86400, s-maxage=86400
915

1016
/favicon.ico
17+
! Cache-Control
1118
Cache-Control: public, max-age=604800, s-maxage=604800
1219

13-
/*
14-
Cache-Control: public, max-age=3600, s-maxage=3600

packages/docs/src/components/builder-content/index.tsx

Lines changed: 0 additions & 103 deletions
This file was deleted.
54.1 KB
Binary file not shown.

packages/docs/src/repl/worker/repl-request-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const injectDevHtml = (clientId: string, html?: string) => {
119119
});
120120
121121
document.addEventListener('qsymbol', (ev) => {
122-
const symbolName = ev.detail;
122+
const symbolName = ev.detail?.symbol;
123123
sendToServerWindow({
124124
kind: 'symbol',
125125
scope: 'client',

packages/docs/src/root.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,7 @@ export default component$(() => {
7676

7777
export function collectSymbols() {
7878
(window as any).symbols = [];
79-
document.addEventListener('qsymbol', (e) => (window as any).symbols.push((e as any).detail));
79+
document.addEventListener('qsymbol', (e) =>
80+
(window as any).symbols.push((e as any).detail.symbol)
81+
);
8082
}

0 commit comments

Comments
 (0)