Skip to content

Commit 378677b

Browse files
committed
Updates billboard.js and marked dependencies
- Removes unneeded onresized callback for restoring zoom after resize
1 parent 5cfa453 commit 378677b

File tree

4 files changed

+15
-21
lines changed

4 files changed

+15
-21
lines changed

ThirdPartyNotices.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ This project incorporates components from the projects listed below.
1919
14. @opentelemetry/semantic-conventions version 1.34.0 (https://github.com/open-telemetry/opentelemetry-js)
2020
15. @shoelace-style/shoelace version 2.20.1 (https://github.com/shoelace-style/shoelace)
2121
16. @vscode/codicons version 0.0.36 (https://github.com/microsoft/vscode-codicons)
22-
17. billboard.js version 3.15.1 (https://github.com/naver/billboard.js)
22+
17. billboard.js version 3.16.0 (https://github.com/naver/billboard.js)
2323
18. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent)
2424
19. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite)
2525
20. lit version 3.3.0 (https://github.com/lit/lit)
26-
21. marked version 15.0.12 (https://github.com/markedjs/marked)
26+
21. marked version 16.0.0 (https://github.com/markedjs/marked)
2727
22. microsoft/vscode (https://github.com/microsoft/vscode)
2828
23. node-fetch version 2.7.0 (https://github.com/bitinn/node-fetch)
2929
24. os-browserify version 0.3.0 (https://github.com/CoderPuppy/os-browserify)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24351,11 +24351,11 @@
2435124351
"@opentelemetry/semantic-conventions": "1.34.0",
2435224352
"@shoelace-style/shoelace": "2.20.1",
2435324353
"@vscode/codicons": "0.0.36",
24354-
"billboard.js": "3.15.1",
24354+
"billboard.js": "3.16.0",
2435524355
"https-proxy-agent": "5.0.1",
2435624356
"iconv-lite": "0.6.3",
2435724357
"lit": "3.3.0",
24358-
"marked": "15.0.12",
24358+
"marked": "16.0.0",
2435924359
"node-fetch": "2.7.0",
2436024360
"os-browserify": "0.3.0",
2436124361
"path-browserify": "1.0.1",

pnpm-lock.yaml

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/webviews/apps/plus/timeline/components/chart.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -714,12 +714,6 @@ export class GlTimelineChart extends GlElement {
714714
setTimeout(() => loading?.fulfill(), 0);
715715
},
716716
onrendered: this.getOnRenderedCallback(this),
717-
// Restore the zoomed domain when the chart is resized, because it gets lost
718-
onresized: () => {
719-
if (this._chart == null || this.zoomedRange == null) return;
720-
721-
this._chart.zoom(this.zoomedRange);
722-
},
723717

724718
clipPath: true,
725719
data: {

0 commit comments

Comments
 (0)