Update dependency versions across multiple packages

A broad range of dependency versions have been updated in numerous packages. This includes updates to major libraries such as supabase-js, react, i18next and multiple typescript definitions. The version specifier has been standardized for some packages to maintain consistency.
This commit is contained in:
giancarlo
2024-04-13 02:13:11 +08:00
parent bb608f5312
commit f6800d3763
26 changed files with 1280 additions and 1414 deletions

View File

@@ -40,8 +40,4 @@ export class AccountPageObject {
getProfileName() {
return this.page.locator('[data-test="account-dropdown-display-name"]');
}
getProfileEmail() {
return this.page.locator('[data-test="account-dropdown-email"]');
}
}

View File

@@ -11,15 +11,11 @@ export class AuthPageObject {
}
goToSignIn() {
return this.page.goto('/auth/sign-in', {
waitUntil: 'networkidle',
});
return this.page.goto('/auth/sign-in');
}
goToSignUp() {
return this.page.goto('/auth/sign-up', {
waitUntil: 'networkidle',
});
return this.page.goto('/auth/sign-up');
}
async signOut() {
@@ -31,6 +27,8 @@ export class AuthPageObject {
email: string,
password: string
}) {
await this.page.waitForTimeout(100);
await this.page.fill('input[name="email"]', params.email);
await this.page.fill('input[name="password"]', params.password);
await this.page.click('button[type="submit"]');
@@ -41,6 +39,8 @@ export class AuthPageObject {
password: string,
repeatPassword: string
}) {
await this.page.waitForTimeout(100);
await this.page.fill('input[name="email"]', params.email);
await this.page.fill('input[name="password"]', params.password);
await this.page.fill('input[name="repeatPassword"]', params.repeatPassword);
@@ -64,9 +64,7 @@ export class AuthPageObject {
async signUpFlow(path: string) {
const email = this.createRandomEmail();
await this.page.goto(`/auth/sign-up?next=${path}`, {
waitUntil: 'networkidle',
});
await this.page.goto(`/auth/sign-up?next=${path}`);
await this.signUp({
email,

View File

@@ -49,23 +49,23 @@
"@makerkit/data-loader-supabase-nextjs": "^1.0.0",
"@marsidev/react-turnstile": "^0.5.4",
"@radix-ui/react-icons": "^1.3.0",
"@supabase/supabase-js": "^2.42.0",
"@supabase/supabase-js": "^2.42.3",
"@tanstack/react-query": "5.29.0",
"@tanstack/react-query-next-experimental": "^5.29.0",
"@tanstack/react-query-next-experimental": "^5.29.2",
"@tanstack/react-table": "^8.15.3",
"date-fns": "^3.6.0",
"edge-csrf": "^1.0.9",
"i18next": "^23.11.0",
"i18next-resources-to-backend": "^1.2.0",
"i18next": "^23.11.1",
"i18next-resources-to-backend": "^1.2.1",
"lucide-react": "^0.367.0",
"next": "14.2.0",
"next-sitemap": "^4.2.3",
"next-themes": "0.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.2",
"react-hook-form": "^7.51.3",
"react-i18next": "^14.1.0",
"recharts": "^2.12.4",
"recharts": "^2.12.5",
"sonner": "^1.4.41",
"zod": "^3.22.4"
},
@@ -75,17 +75,17 @@
"@kit/tailwind-config": "workspace:^",
"@kit/tsconfig": "workspace:^",
"@next/bundle-analyzer": "14.2.0",
"@types/mdx": "^2.0.12",
"@types/mdx": "^2.0.13",
"@types/node": "^20.12.7",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.22",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"supabase": "^1.153.4",
"tailwindcss": "3.4.1",
"typescript": "^5.4.3"
"typescript": "^5.4.5"
},
"eslintConfig": {
"root": true,