diff --git a/package.json b/package.json index 276555ec..42e6d7ea 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "@mui/icons-material": "^6.0.0", "@mui/material": "^6.4.4", "@next/third-parties": "^16.0.0", - "@posthog/nextjs-config": "1.8.23", + "@posthog/nextjs-config": "1.8.24", "@radix-ui/react-avatar": "^1.1.10", "@radix-ui/react-checkbox": "^1.3.2", "@radix-ui/react-dialog": "^1.1.14", diff --git a/src/app/(protected)/register/page.tsx b/src/app/(protected)/register/page.tsx index 483fb198..ce429693 100644 --- a/src/app/(protected)/register/page.tsx +++ b/src/app/(protected)/register/page.tsx @@ -397,10 +397,19 @@ export default function RegistrationPage() { const handleSubmit = async (e: React.FormEvent) => { e.preventDefault(); + const PSU_Main = "The Pennsylvania State University - Main Campus"; + if (!user) { toast.error("You must be logged in to register."); return; } + if ( + psuRegisterFlagData?.isEnabled && !isLoadingPSURegisterFlag && + formData.university !== PSU_Main + ) { + toast.error("Only Penn State Main Campus students are eligible to register currently") + return; + } if (formData.age < 18) { toast.error("You must be 18 years or older to participate."); return; @@ -1383,6 +1392,7 @@ export default function RegistrationPage() { Penn State Email Verification + We are currently only accepting students from Penn State Main Campus
Please enter your valid Penn State email to continue.
diff --git a/src/components/PrizesChallenges/index.tsx b/src/components/PrizesChallenges/index.tsx index 874f54af..119312b4 100644 --- a/src/components/PrizesChallenges/index.tsx +++ b/src/components/PrizesChallenges/index.tsx @@ -167,7 +167,7 @@ const TerminalModal: React.FC<{ {award.prizes.map((prize, index) => (
{prize.place}: - {prize.amount} + {prize.amount}
))} @@ -249,8 +249,19 @@ const PrizesChallenges: React.FC = () => { "Build the future with Open Claw at this HackPSU challenge. Create innovative AI-powered tools, applications, and experiments using the OpenClaw platform. Explore bold ideas, collaborate with fellow hackers, and turn prototypes into real projects. Whether you're learning or pushing boundaries, this is your chance to shape what comes next with OpenClaw.", prizes: [ { - place: "Prize", - amount: "TBD", + place: "1st Place", + amount: + "1 shared 3 month Claude Pro subscription for the team", + }, + { + place: "2nd Place", + amount: + "1 shared 2 month Claude Pro subscription for the team", + }, + { + place: "3rd Place", + amount: + "1 shared 1 month Claude Pro subscription for the team", }, ], closedBoxImage: "/sp26/ist_challenge.png", diff --git a/src/components/common/Autocomplete/index.tsx b/src/components/common/Autocomplete/index.tsx index dea0ffc7..62fbc4c6 100644 --- a/src/components/common/Autocomplete/index.tsx +++ b/src/components/common/Autocomplete/index.tsx @@ -51,10 +51,12 @@ const Autocomplete: React.FC = ({ setQuery(value ?? ""); }; - const handleSelectionChange = (selection: string) => { - onSelectionChange(data, selection); - setSelected(selection); - setQuery(selection ?? ""); + const handleSelectionChange = (selection: string | null) => { + if (selection !== null) { + onSelectionChange(data, selection); + setSelected(selection); + setQuery(selection); + } }; return ( diff --git a/yarn.lock b/yarn.lock index cb9e072b..1fe20e65 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1647,20 +1647,12 @@ dependencies: fireworks-js "2.10.8" -"@floating-ui/core@^1.7.3": - version "1.7.3" - resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.3.tgz#462d722f001e23e46d86fd2bd0d21b7693ccb8b7" - integrity sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w== +"@floating-ui/core@^1.7.3", "@floating-ui/core@^1.7.5": + version "1.7.5" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.5.tgz#d4af157a03330af5a60e69da7a4692507ada0622" + integrity sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ== dependencies: - "@floating-ui/utils" "^0.2.10" - -"@floating-ui/dom@^1.7.3": - version "1.7.3" - resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.3.tgz#6174ac3409e6a064bbdf1f4bb07188ee9461f8cf" - integrity sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag== - dependencies: - "@floating-ui/core" "^1.7.3" - "@floating-ui/utils" "^0.2.10" + "@floating-ui/utils" "^0.2.11" "@floating-ui/dom@^1.7.4": version "1.7.4" @@ -1670,6 +1662,14 @@ "@floating-ui/core" "^1.7.3" "@floating-ui/utils" "^0.2.10" +"@floating-ui/dom@^1.7.6": + version "1.7.6" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.6.tgz#f915bba5abbb177e1f227cacee1b4d0634b187bf" + integrity sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ== + dependencies: + "@floating-ui/core" "^1.7.5" + "@floating-ui/utils" "^0.2.11" + "@floating-ui/react-dom@^2.0.0": version "2.1.6" resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.6.tgz#189f681043c1400561f62972f461b93f01bf2231" @@ -1678,11 +1678,11 @@ "@floating-ui/dom" "^1.7.4" "@floating-ui/react-dom@^2.1.2": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.5.tgz#d11e3726d2eb385d8cf3216348742907c1d49fcf" - integrity sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q== + version "2.1.8" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.8.tgz#5fb5a20d10aafb9505f38c24f38d00c8e1598893" + integrity sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A== dependencies: - "@floating-ui/dom" "^1.7.3" + "@floating-ui/dom" "^1.7.6" "@floating-ui/react@^0.26.16": version "0.26.28" @@ -1693,10 +1693,10 @@ "@floating-ui/utils" "^0.2.8" tabbable "^6.0.0" -"@floating-ui/utils@^0.2.10", "@floating-ui/utils@^0.2.8": - version "0.2.10" - resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c" - integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ== +"@floating-ui/utils@^0.2.10", "@floating-ui/utils@^0.2.11", "@floating-ui/utils@^0.2.8": + version "0.2.11" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.11.tgz#a269e055e40e2f45873bae9d1a2fdccbd314ea3f" + integrity sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg== "@grpc/grpc-js@~1.9.0": version "1.9.15" @@ -1717,9 +1717,9 @@ yargs "^17.7.2" "@headlessui/react@^2.2.0": - version "2.2.7" - resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-2.2.7.tgz#689443e19756f51ecc869866b3cdda19aebc38c3" - integrity sha512-WKdTymY8Y49H8/gUc/lIyYK1M+/6dq0Iywh4zTZVAaiTDprRfioxSgD0wnXTQTBpjpGJuTL1NO/mqEvc//5SSg== + version "2.2.9" + resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-2.2.9.tgz#213f78534c86e03a7c986d2c2abe1270622b3e13" + integrity sha512-Mb+Un58gwBn0/yWZfyrCh0TJyurtT+dETj7YHleylHk5od3dv2XqETPGWMyQ5/7sYN7oWdyM1u9MvC0OC8UmzQ== dependencies: "@floating-ui/react" "^0.26.16" "@react-aria/focus" "^3.20.2" @@ -2160,9 +2160,9 @@ "@opentelemetry/api" "^1.3.0" "@opentelemetry/api@^1.3.0", "@opentelemetry/api@^1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.0.tgz#d03eba68273dc0f7509e2a3d5cba21eae10379fe" - integrity sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg== + version "1.9.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.9.1.tgz#c1b0346de336ba55af2d5a7970882037baedec05" + integrity sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q== "@opentelemetry/core@2.2.0": version "2.2.0" @@ -2171,10 +2171,10 @@ dependencies: "@opentelemetry/semantic-conventions" "^1.29.0" -"@opentelemetry/core@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.6.0.tgz#719c829ed98bd7af808a2d2c83374df1fd1f3c66" - integrity sha512-HLM1v2cbZ4TgYN6KEOj+Bbj8rAKriOdkF9Ed3tG25FoprSiQl7kYc+RRT6fUZGOvx0oMi5U67GoFdT+XUn8zEg== +"@opentelemetry/core@2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-2.6.1.tgz#a59d22a9ae3be80bb41b280bbbe1fe9fbdb6c2a5" + integrity sha512-8xHSGWpJP9wBxgBpnqGL0R3PbdWQndL1Qp50qrg71+B28zK5OQmUgcDKLJgzyAAV38t4tOyLMGDD60LneR5W8g== dependencies: "@opentelemetry/semantic-conventions" "^1.29.0" @@ -2219,11 +2219,11 @@ "@opentelemetry/semantic-conventions" "^1.29.0" "@opentelemetry/resources@^2.2.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.6.0.tgz#1a945dbb8986043d8b593c358d5d8e3de6becf5a" - integrity sha512-D4y/+OGe3JSuYUCBxtH5T9DSAWNcvCb/nQWIga8HNtXTVPQn59j0nTBAgaAXxUVBDl40mG3Tc76b46wPlZaiJQ== + version "2.6.1" + resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-2.6.1.tgz#e1b02772c5f65c0e074d59e4743188f7575e97c7" + integrity sha512-lID/vxSuKWXM55XhAKNoYXu9Cutoq5hFdkbTdI/zDKQktXzcWBVhNsOkiZFTMU9UtEWuGRNe0HUgmsFldIdxVA== dependencies: - "@opentelemetry/core" "2.6.0" + "@opentelemetry/core" "2.6.1" "@opentelemetry/semantic-conventions" "^1.29.0" "@opentelemetry/sdk-logs@0.208.0", "@opentelemetry/sdk-logs@^0.208.0": @@ -2387,28 +2387,35 @@ dependencies: cross-spawn "^7.0.6" -"@posthog/nextjs-config@1.8.23": - version "1.8.23" - resolved "https://registry.yarnpkg.com/@posthog/nextjs-config/-/nextjs-config-1.8.23.tgz#b2a2bb642ffc33b1da31bfda68e2d92da9c824bc" - integrity sha512-x0vwmpy6KCw891hmh/Mfok49yMqaK6wLFPxPzbI2ifL/afqLKYRYYSUHm1pk5/lkMSBhI+rxBHDveKrBuiFyaQ== +"@posthog/core@1.24.2": + version "1.24.2" + resolved "https://registry.yarnpkg.com/@posthog/core/-/core-1.24.2.tgz#8f501e3c2a1233de407108a54ee1e58bbfa07ebf" + integrity sha512-Dpmodetbj4sASDKjmWfxJ2zC/rStd+hhW0E7Bru4IN5s2bTgpcPNwBoUwcCjdxPZ/02vbWwbJ88K3gmNJO5oxg== + dependencies: + cross-spawn "^7.0.6" + +"@posthog/nextjs-config@1.8.24": + version "1.8.24" + resolved "https://registry.yarnpkg.com/@posthog/nextjs-config/-/nextjs-config-1.8.24.tgz#cedae177495572c303ffae31c646e81e42370f4b" + integrity sha512-v1D01VWlWlMPw7cbo98NnDd+GAzVEOFlhENlP0OKVNk1fZrshRBHT5f3WrwzxDtTIA20JFhtBUA6i0OVwxRCLw== dependencies: "@posthog/cli" "~0.7.3" - "@posthog/core" "1.24.1" - "@posthog/webpack-plugin" "1.3.1" + "@posthog/core" "1.24.2" + "@posthog/webpack-plugin" "1.3.2" semver "^7.7.2" -"@posthog/types@1.363.3": - version "1.363.3" - resolved "https://registry.yarnpkg.com/@posthog/types/-/types-1.363.3.tgz#67deea0772d3fd229f5b20733edb5f8a5d219e3c" - integrity sha512-Wslj6BrDwIEkqoahJFE0DbqgoGsB/F9BC3XtzBQdUzr04XhVNriGQ7/lves9eCFwrpSiOHv/5xfSShRwiP3ciA== +"@posthog/types@1.363.6": + version "1.363.6" + resolved "https://registry.yarnpkg.com/@posthog/types/-/types-1.363.6.tgz#1a1a88c3796ebaf80fa31c5340a6fc2981459b32" + integrity sha512-SPU8psjrpK8prfFyYwvb25F1AgqSM32zdU1XPVIhUa107Cyw+VGw38Gv+AeqkEoAYQE2TFlWJT8DWUrw/mNDoQ== -"@posthog/webpack-plugin@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@posthog/webpack-plugin/-/webpack-plugin-1.3.1.tgz#42505b389b89c1d4a7a7e079faa39244d7996ae1" - integrity sha512-B63lo8iVZQMV3KK5xSnOyOR6bi7PFjgHJ+9ECWtYnF8/EP53v1in1N+Y6YNT4DEUSP5HsSCFaeekig9njtA8yQ== +"@posthog/webpack-plugin@1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@posthog/webpack-plugin/-/webpack-plugin-1.3.2.tgz#ffd1c6c6f48dece25491419545e8a8418da62e85" + integrity sha512-jcr9HkFtuNIX5BzPlnCtyXLW6YWnx18QimFvWxL8vt6o7eqJ6v4EtBOXEv9Sh4Hd8NlUMFJDzyzV6N4mtXOUlw== dependencies: "@posthog/cli" "~0.7.3" - "@posthog/core" "1.24.1" + "@posthog/core" "1.24.2" "@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2": version "1.1.2" @@ -2846,25 +2853,25 @@ integrity sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw== "@react-aria/focus@^3.20.2": - version "3.21.0" - resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.21.0.tgz#d5bc327bee25e981934ea0ddb1defbe020a84f6a" - integrity sha512-7NEGtTPsBy52EZ/ToVKCu0HSelE3kq9qeis+2eEq90XSuJOMaDHUQrA7RC2Y89tlEwQB31bud/kKRi9Qme1dkA== + version "3.21.5" + resolved "https://registry.yarnpkg.com/@react-aria/focus/-/focus-3.21.5.tgz#1d9692f9ac97057be83a5878382d1ddd3e443500" + integrity sha512-V18fwCyf8zqgJdpLQeDU5ZRNd9TeOfBbhLgmX77Zr5ae9XwaoJ1R3SFJG1wCJX60t34AW+aLZSEEK+saQElf3Q== dependencies: - "@react-aria/interactions" "^3.25.4" - "@react-aria/utils" "^3.30.0" - "@react-types/shared" "^3.31.0" + "@react-aria/interactions" "^3.27.1" + "@react-aria/utils" "^3.33.1" + "@react-types/shared" "^3.33.1" "@swc/helpers" "^0.5.0" clsx "^2.0.0" -"@react-aria/interactions@^3.25.0", "@react-aria/interactions@^3.25.4": - version "3.25.4" - resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.25.4.tgz#2f0e21e8187b7f0944b323f55696cae9accb39e0" - integrity sha512-HBQMxgUPHrW8V63u9uGgBymkMfj6vdWbB0GgUJY49K9mBKMsypcHeWkWM6+bF7kxRO728/IK8bWDV6whDbqjHg== +"@react-aria/interactions@^3.25.0", "@react-aria/interactions@^3.27.1": + version "3.27.1" + resolved "https://registry.yarnpkg.com/@react-aria/interactions/-/interactions-3.27.1.tgz#0f4d3eafb7a9acd25d864e9ab1e4a8a68602db2a" + integrity sha512-M3wLpTTmDflI0QGNK0PJNUaBXXfeBXue8ZxLMngfc1piHNiH4G5lUvWd9W14XVbqrSCVY8i8DfGrNYpyyZu0tw== dependencies: "@react-aria/ssr" "^3.9.10" - "@react-aria/utils" "^3.30.0" + "@react-aria/utils" "^3.33.1" "@react-stately/flags" "^3.1.2" - "@react-types/shared" "^3.31.0" + "@react-types/shared" "^3.33.1" "@swc/helpers" "^0.5.0" "@react-aria/ssr@^3.9.10": @@ -2874,15 +2881,15 @@ dependencies: "@swc/helpers" "^0.5.0" -"@react-aria/utils@^3.30.0": - version "3.30.0" - resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.30.0.tgz#68aa1d703c9e0468350bd1e3b583d99e9e69795a" - integrity sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw== +"@react-aria/utils@^3.33.1": + version "3.33.1" + resolved "https://registry.yarnpkg.com/@react-aria/utils/-/utils-3.33.1.tgz#a80321f51ad1dc09071b9c55863c0808ba5b3038" + integrity sha512-kIx1Sj6bbAT0pdqCegHuPanR9zrLn5zMRiM7LN12rgRf55S19ptd9g3ncahArifYTRkfEU9VIn+q0HjfMqS9/w== dependencies: "@react-aria/ssr" "^3.9.10" "@react-stately/flags" "^3.1.2" - "@react-stately/utils" "^3.10.8" - "@react-types/shared" "^3.31.0" + "@react-stately/utils" "^3.11.0" + "@react-types/shared" "^3.33.1" "@swc/helpers" "^0.5.0" clsx "^2.0.0" @@ -2893,17 +2900,17 @@ dependencies: "@swc/helpers" "^0.5.0" -"@react-stately/utils@^3.10.8": - version "3.10.8" - resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.10.8.tgz#fdb9d172f7bbc2d083e69190f5ef0edfa4b4392f" - integrity sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g== +"@react-stately/utils@^3.11.0": + version "3.11.0" + resolved "https://registry.yarnpkg.com/@react-stately/utils/-/utils-3.11.0.tgz#95a05d9633f4614ca89f630622566e7e5709d79e" + integrity sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw== dependencies: "@swc/helpers" "^0.5.0" -"@react-types/shared@^3.31.0": - version "3.31.0" - resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.31.0.tgz#014be53096c3728f0684550430807e9962365c15" - integrity sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg== +"@react-types/shared@^3.33.1": + version "3.33.1" + resolved "https://registry.yarnpkg.com/@react-types/shared/-/shared-3.33.1.tgz#2c0b97bef8f7c2f99d0a030eda083d32cf503629" + integrity sha512-oJHtjvLG43VjwemQDadlR5g/8VepK56B/xKO2XORPHt9zlW6IZs3tZrYlvH29BMvoqC7RtE7E5UjgbnbFtDGag== "@rtsao/scc@^1.1.0": version "1.1.0" @@ -3024,9 +3031,9 @@ tslib "^2.8.0" "@swc/helpers@^0.5.0": - version "0.5.17" - resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.17.tgz#5a7be95ac0f0bf186e7e6e890e7a6f6cda6ce971" - integrity sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A== + version "0.5.19" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.19.tgz#9a8c8a0bdaecfdfb9b8ae5421c0c8e09246dfee9" + integrity sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA== dependencies: tslib "^2.8.0" @@ -3050,16 +3057,16 @@ "@tanstack/query-core" "5.95.2" "@tanstack/react-virtual@^3.13.9": - version "3.13.12" - resolved "https://registry.yarnpkg.com/@tanstack/react-virtual/-/react-virtual-3.13.12.tgz#d372dc2783739cc04ec1a728ca8203937687a819" - integrity sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA== + version "3.13.23" + resolved "https://registry.yarnpkg.com/@tanstack/react-virtual/-/react-virtual-3.13.23.tgz#27e969396c39ee919dead847b2f513e2f3b707bf" + integrity sha512-XnMRnHQ23piOVj2bzJqHrRrLg4r+F86fuBcwteKfbIjJrtGxb4z7tIvPVAe4B+4UVwo9G4Giuz5fmapcrnZ0OQ== dependencies: - "@tanstack/virtual-core" "3.13.12" + "@tanstack/virtual-core" "3.13.23" -"@tanstack/virtual-core@3.13.12": - version "3.13.12" - resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz#1dff176df9cc8f93c78c5e46bcea11079b397578" - integrity sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA== +"@tanstack/virtual-core@3.13.23": + version "3.13.23" + resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.13.23.tgz#72bcaad8bbf6bd86e0d02776dc7dc968d0aba07b" + integrity sha512-zSz2Z2HNyLjCplANTDyl3BcdQJc2k1+yyFoKhNRmCr7V7dY8o8q5m8uFTI1/Pg1kL+Hgrz6u3Xo6eFUB7l66cg== "@trysound/sax@0.2.0": version "0.2.0" @@ -6091,9 +6098,9 @@ postcss@^8.4.47: source-map-js "^1.2.1" posthog-js@^1.257.0: - version "1.363.3" - resolved "https://registry.yarnpkg.com/posthog-js/-/posthog-js-1.363.3.tgz#91da5bcca9852ac86c70e9610ca9a62e79184a43" - integrity sha512-j1+MTbHO17kKXJMGDnaiW1EMOiA4AprE8EML6QnbSds+XbqHR2CdHa8T+/zIriZSoXlkZH4R+A4gY29lb5hdlA== + version "1.363.6" + resolved "https://registry.yarnpkg.com/posthog-js/-/posthog-js-1.363.6.tgz#853a48a4eae5804d9ae3b00077b29fc0520bfd73" + integrity sha512-eQ+Ypml3JOEMQWt21XEea6J8vD77TNyoz4Yv/xxjlTRja+ilmJtQw/SuVAB3BobjgHKYUomXX7Fc4gH/zTVpbg== dependencies: "@opentelemetry/api" "^1.9.0" "@opentelemetry/api-logs" "^0.208.0" @@ -6101,7 +6108,7 @@ posthog-js@^1.257.0: "@opentelemetry/resources" "^2.2.0" "@opentelemetry/sdk-logs" "^0.208.0" "@posthog/core" "1.24.1" - "@posthog/types" "1.363.3" + "@posthog/types" "1.363.6" core-js "^3.38.1" dompurify "^3.3.2" fflate "^0.4.8" @@ -6110,9 +6117,9 @@ posthog-js@^1.257.0: web-vitals "^5.1.0" posthog-node@^5.5.1: - version "5.28.5" - resolved "https://registry.yarnpkg.com/posthog-node/-/posthog-node-5.28.5.tgz#d4a45c278d824d42e9416710400de593a6338922" - integrity sha512-+8H7rMPB48cwKhzZmq0EQXDFWjdT6yQrecq+f7c7m19HMzyvYtm54I7vNncEr9lrkzczc4kcePxwLD4qgt/YXg== + version "5.28.6" + resolved "https://registry.yarnpkg.com/posthog-node/-/posthog-node-5.28.6.tgz#55e7434743e10feca38284c64f9dc2bb07076938" + integrity sha512-f3k45gplzVxbhIMj3x6jZP6iH1wacBurKrZxD1VwW+7f8L2DtjJbkiQw0oKwubgtCZcKNroPa8y6t/nDITgOMw== dependencies: "@posthog/core" "1.24.1" @@ -6921,14 +6928,14 @@ svgo@^3.0.2: picocolors "^1.0.0" swiper@^12.0.0: - version "12.1.2" - resolved "https://registry.yarnpkg.com/swiper/-/swiper-12.1.2.tgz#39eaad0c088def66a7eb8f6bae1439384586ab90" - integrity sha512-4gILrI3vXZqoZh71I1PALqukCFgk+gpOwe1tOvz5uE9kHtl2gTDzmYflYCwWvR4LOvCrJi6UEEU+gnuW5BtkgQ== + version "12.1.3" + resolved "https://registry.yarnpkg.com/swiper/-/swiper-12.1.3.tgz#0fd256e6ee043c85c077b0fa48faef7ed6acb051" + integrity sha512-XcWlVmkHFICI4fuoJKgbp8PscDcS4i7pBH8nwJRBi3dpQvhCySwsWRYm4bOf/BzKVWkHOYaFw7qz9uBSrY3oug== tabbable@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" - integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== + version "6.4.0" + resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.4.0.tgz#36eb7a06d80b3924a22095daf45740dea3bf5581" + integrity sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg== tailwind-merge@^3.3.1: version "3.5.0" @@ -7233,9 +7240,9 @@ web-vitals@^4.2.4: integrity sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw== web-vitals@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-5.1.0.tgz#2f117e92c8c4eeb107cb163cbb482ac20d685ebd" - integrity sha512-ArI3kx5jI0atlTtmV0fWU3fjpLmq/nD3Zr1iFFlJLaqa5wLBkUSzINwBPySCX/8jRyjlmy1Volw1kz1g9XE4Jg== + version "5.2.0" + resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-5.2.0.tgz#5de39106a652228bb5c40021d62b669d213e6e17" + integrity sha512-i2z98bEmaCqSDiHEDu+gHl/dmR4Q+TxFmG3/13KkMO+o8UxQzCqWaDRCiLgEa41nlO4VpXSI0ASa1xWmO9sBlA== websocket-driver@>=0.5.1: version "0.7.4"