Removed logging, updated packages
All checks were successful
Build and Test - Staging / test (pull_request) Successful in 3m18s
Build and Test - Staging / build_and_push (pull_request) Successful in 3m12s
Build and Test - Staging / deploy_staging (pull_request) Successful in 3s

This commit is contained in:
2025-11-30 10:58:31 -08:00
parent 8fd009ffda
commit 67eb549ed2
3 changed files with 475 additions and 275 deletions

744
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -14,7 +14,7 @@
"dependencies": { "dependencies": {
"@astrojs/sitemap": "^3.6.0", "@astrojs/sitemap": "^3.6.0",
"@tailwindcss/vite": "^4.1.11", "@tailwindcss/vite": "^4.1.11",
"astro": "^5.15.4", "astro": "^5.16.3",
"flowbite": "^3.1.2", "flowbite": "^3.1.2",
"leader-line-new": "^1.1.9", "leader-line-new": "^1.1.9",
"luxon": "^3.7.2", "luxon": "^3.7.2",

View File

@@ -5,10 +5,9 @@ class CustomTimeline extends HTMLElement {
constructor() { constructor() {
super(); super();
this._eventElements = this._getNodeElements(); this._eventElements = this._getNodeElements();
window.addEventListener("load", this._paintLeaderLines); window.addEventListener("load", this._paintLeaderLines);
} }
_getNodeElements = (): Element[] => _getNodeElements = (): Element[] =>
@@ -37,7 +36,6 @@ class CustomTimeline extends HTMLElement {
+ +
(Number(rectWrapper.top)) + "px)" (Number(rectWrapper.top)) + "px)"
console.log(wrapper.style.transform)
line.position() line.position()
} }