chore: update dependencies and package manager versions across projects
Publish to NPM / Check version changes and publish (push) Failing after 10m54s

This commit is contained in:
2026-07-31 04:21:32 +07:00
parent 53e831894a
commit c6b6b93e81
20 changed files with 3375 additions and 3108 deletions
@@ -28,7 +28,8 @@ function toggle(key: (typeof categories)[number]['key']) {
consent.value = { ...consent.value, [key]: !consent.value[key] };
}
const supportsCookieStore = typeof window !== 'undefined' && 'cookieStore' in window;
// Probing `globalThis` keeps this SSR-safe without a browser-only guard.
const supportsCookieStore = 'cookieStore' in globalThis;
// Show the raw cookie as the browser stores it.
const rawCookie = ref('');