diff --git a/platforms/blabsy-w3ds-auth-api/package.json b/platforms/blabsy-w3ds-auth-api/package.json index 06d84693..78750975 100644 --- a/platforms/blabsy-w3ds-auth-api/package.json +++ b/platforms/blabsy-w3ds-auth-api/package.json @@ -26,7 +26,8 @@ "typeorm": "^0.3.20", "uuid": "^9.0.1", "graphql": "^16.8.1", - "graphql-request": "^6.1.0" + "graphql-request": "^6.1.0", + "web3-adapter": "workspace:*" }, "devDependencies": { "@types/cors": "^2.8.17", diff --git a/platforms/blabsy-w3ds-auth-api/src/controllers/WebhookController.ts b/platforms/blabsy-w3ds-auth-api/src/controllers/WebhookController.ts index 17f17541..7eb70941 100644 --- a/platforms/blabsy-w3ds-auth-api/src/controllers/WebhookController.ts +++ b/platforms/blabsy-w3ds-auth-api/src/controllers/WebhookController.ts @@ -1,5 +1,5 @@ import { Request, Response } from "express"; -import { Web3Adapter } from "../../../../infrastructure/web3-adapter/src/index"; +import { Web3Adapter } from "web3-adapter"; import path from "path"; import dotenv from "dotenv"; import { getFirestore } from "firebase-admin/firestore"; diff --git a/platforms/eVoting/package.json b/platforms/eVoting/package.json index 9d145122..e45f0b91 100644 --- a/platforms/eVoting/package.json +++ b/platforms/eVoting/package.json @@ -46,9 +46,9 @@ "lucide-react": "^0.453.0", "next": "15.4.2", "next-qrcode": "^2.5.1", - "qrcode.react": "^3.1.0", + "qrcode.react": "^4.2.0", "react": "19.1.0", - "react-day-picker": "^8.10.1", + "react-day-picker": "^9.11.1", "react-dom": "19.1.0", "react-hook-form": "^7.55.0", "react-resizable-panels": "^2.1.9", diff --git a/platforms/eVoting/src/app/(auth)/login/page.tsx b/platforms/eVoting/src/app/(auth)/login/page.tsx index 18cc48f2..a167aced 100644 --- a/platforms/eVoting/src/app/(auth)/login/page.tsx +++ b/platforms/eVoting/src/app/(auth)/login/page.tsx @@ -1,7 +1,7 @@ "use client"; import { useState, useEffect } from "react"; import { Card, CardHeader } from "@/components/ui/card"; -import QRCode from "qrcode.react"; +import { QRCodeSVG } from "qrcode.react"; import { useAuth } from "@/lib/auth-context"; import { setAuthToken, setAuthId } from "@/lib/authUtils"; import { isMobileDevice, getDeepLinkUrl } from "@/lib/utils/mobile-detection"; @@ -135,7 +135,7 @@ export default function LoginPage() { ) : (
- {qrCode ? (
- +export type CalendarProps = React.ComponentPropsWithoutRef function Calendar({ className, @@ -52,12 +52,10 @@ function Calendar({ ...classNames, }} components={{ - IconLeft: ({ className, ...props }) => ( - - ), - IconRight: ({ className, ...props }) => ( - - ), + Chevron: ({ orientation, ...props }) => { + const Icon = orientation === "left" ? ChevronLeft : ChevronRight + return + }, }} {...props} /> diff --git a/platforms/evoting-api/package.json b/platforms/evoting-api/package.json index 969d0f89..d00c6f90 100644 --- a/platforms/evoting-api/package.json +++ b/platforms/evoting-api/package.json @@ -25,7 +25,8 @@ "pg": "^8.11.3", "reflect-metadata": "^0.2.1", "typeorm": "^0.3.24", - "uuid": "^9.0.1" + "uuid": "^9.0.1", + "web3-adapter": "workspace:*" }, "devDependencies": { "@types/cors": "^2.8.17", diff --git a/platforms/evoting-api/src/web3adapter/watchers/subscriber.ts b/platforms/evoting-api/src/web3adapter/watchers/subscriber.ts index 51cb3a70..1a9096bb 100644 --- a/platforms/evoting-api/src/web3adapter/watchers/subscriber.ts +++ b/platforms/evoting-api/src/web3adapter/watchers/subscriber.ts @@ -6,7 +6,7 @@ import { RemoveEvent, ObjectLiteral, } from "typeorm"; -import { Web3Adapter } from "../../../../../infrastructure/web3-adapter/src/index"; +import { Web3Adapter } from "web3-adapter"; import path from "path"; import dotenv from "dotenv"; import { AppDataSource } from "../../database/data-source"; diff --git a/platforms/group-charter-manager-api/package.json b/platforms/group-charter-manager-api/package.json index fef2339e..3899f3c5 100644 --- a/platforms/group-charter-manager-api/package.json +++ b/platforms/group-charter-manager-api/package.json @@ -23,7 +23,8 @@ "pg": "^8.11.3", "reflect-metadata": "^0.2.1", "typeorm": "^0.3.24", - "uuid": "^9.0.1" + "uuid": "^9.0.1", + "web3-adapter": "workspace:*" }, "devDependencies": { "@types/cors": "^2.8.17", diff --git a/platforms/group-charter-manager-api/src/controllers/WebhookController.ts b/platforms/group-charter-manager-api/src/controllers/WebhookController.ts index 1c38cc44..b90f6854 100644 --- a/platforms/group-charter-manager-api/src/controllers/WebhookController.ts +++ b/platforms/group-charter-manager-api/src/controllers/WebhookController.ts @@ -1,7 +1,7 @@ import { Request, Response } from "express"; import { UserService } from "../services/UserService"; import { GroupService } from "../services/GroupService"; -import { Web3Adapter } from "../../../../infrastructure/web3-adapter/src"; +import { Web3Adapter } from "web3-adapter"; import { User } from "../database/entities/User"; import { Group } from "../database/entities/Group"; import axios from "axios"; diff --git a/platforms/group-charter-manager-api/src/scripts/migrate-eVaults.ts b/platforms/group-charter-manager-api/src/scripts/migrate-eVaults.ts index aad5722a..363b8de4 100644 --- a/platforms/group-charter-manager-api/src/scripts/migrate-eVaults.ts +++ b/platforms/group-charter-manager-api/src/scripts/migrate-eVaults.ts @@ -2,7 +2,7 @@ import { AppDataSource } from "../database/data-source"; import { Group } from "../database/entities/Group"; -import { createGroupEVault } from "../../../../infrastructure/web3-adapter/src/index"; +import { createGroupEVault } from "web3-adapter"; import path from "path"; import dotenv from "dotenv"; import { IsNull } from "typeorm"; diff --git a/platforms/group-charter-manager-api/src/web3adapter/watchers/subscriber.ts b/platforms/group-charter-manager-api/src/web3adapter/watchers/subscriber.ts index a5ffe8bb..96fd6316 100644 --- a/platforms/group-charter-manager-api/src/web3adapter/watchers/subscriber.ts +++ b/platforms/group-charter-manager-api/src/web3adapter/watchers/subscriber.ts @@ -6,8 +6,8 @@ import { RemoveEvent, ObjectLiteral, } from "typeorm"; -import { Web3Adapter } from "../../../../../infrastructure/web3-adapter/src/index"; -import { createGroupEVault } from "../../../../../infrastructure/web3-adapter/src/index"; +import { Web3Adapter } from "web3-adapter"; +import { createGroupEVault } from "web3-adapter"; import path from "path"; import dotenv from "dotenv"; import { AppDataSource } from "../../database/data-source"; diff --git a/platforms/group-charter-manager/package.json b/platforms/group-charter-manager/package.json index ad21a3f5..c71942e8 100644 --- a/platforms/group-charter-manager/package.json +++ b/platforms/group-charter-manager/package.json @@ -21,7 +21,7 @@ "@radix-ui/react-dropdown-menu": "^2.1.7", "@radix-ui/react-label": "^2.1.3", "@radix-ui/react-popover": "^1.1.7", - "@radix-ui/react-separator": "^1.1.0", + "@radix-ui/react-separator": "^1.1.7", "@radix-ui/react-slot": "^1.2.0", "@radix-ui/react-switch": "^1.1.4", "@radix-ui/react-toast": "^1.2.14", diff --git a/platforms/pictique-api/package.json b/platforms/pictique-api/package.json index 865b2dde..1d7f064f 100644 --- a/platforms/pictique-api/package.json +++ b/platforms/pictique-api/package.json @@ -23,7 +23,8 @@ "pg": "^8.11.3", "reflect-metadata": "^0.2.1", "typeorm": "^0.3.24", - "uuid": "^9.0.1" + "uuid": "^9.0.1", + "web3-adapter": "workspace:*" }, "devDependencies": { "@types/cors": "^2.8.17", diff --git a/platforms/pictique-api/src/controllers/WebhookController.ts b/platforms/pictique-api/src/controllers/WebhookController.ts index 4d1f8ca6..944078cb 100644 --- a/platforms/pictique-api/src/controllers/WebhookController.ts +++ b/platforms/pictique-api/src/controllers/WebhookController.ts @@ -3,7 +3,7 @@ import { UserService } from "../services/UserService"; import { ChatService } from "../services/ChatService"; import { PostService } from "../services/PostService"; import { CommentService } from "../services/CommentService"; -import { Web3Adapter } from "../../../../infrastructure/web3-adapter/src"; +import { Web3Adapter } from "web3-adapter"; import { User } from "database/entities/User"; import { Chat } from "database/entities/Chat"; import { Message } from "database/entities/Message"; diff --git a/platforms/pictique-api/src/web3adapter/watchers/subscriber.ts b/platforms/pictique-api/src/web3adapter/watchers/subscriber.ts index 7da2c6b7..20dff121 100644 --- a/platforms/pictique-api/src/web3adapter/watchers/subscriber.ts +++ b/platforms/pictique-api/src/web3adapter/watchers/subscriber.ts @@ -6,7 +6,7 @@ import { RemoveEvent, ObjectLiteral, } from "typeorm"; -import { Web3Adapter } from "../../../../../infrastructure/web3-adapter/src/index"; +import { Web3Adapter } from "web3-adapter"; import path from "path"; import dotenv from "dotenv"; import { AppDataSource } from "../../database/data-source"; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ac985ff4..d50d2788 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -322,7 +322,7 @@ importers: version: 5.33.1 svelte-check: specifier: ^4.0.0 - version: 4.2.1(picomatch@4.0.3)(svelte@5.33.1)(typescript@5.6.3) + version: 4.2.1(picomatch@4.0.2)(svelte@5.33.1)(typescript@5.6.3) svelte-gestures: specifier: ^5.1.3 version: 5.1.4 @@ -777,6 +777,9 @@ importers: uuid: specifier: ^9.0.1 version: 9.0.1 + web3-adapter: + specifier: workspace:* + version: link:../../infrastructure/web3-adapter devDependencies: '@types/cors': specifier: ^2.8.17 @@ -1316,14 +1319,14 @@ importers: specifier: ^2.5.1 version: 2.5.1(react@19.1.0) qrcode.react: - specifier: ^3.1.0 - version: 3.2.0(react@19.1.0) + specifier: ^4.2.0 + version: 4.2.0(react@19.1.0) react: specifier: 19.1.0 version: 19.1.0 react-day-picker: - specifier: ^8.10.1 - version: 8.10.1(date-fns@4.1.0)(react@19.1.0) + specifier: ^9.11.1 + version: 9.11.1(react@19.1.0) react-dom: specifier: 19.1.0 version: 19.1.0(react@19.1.0) @@ -1418,6 +1421,9 @@ importers: uuid: specifier: ^9.0.1 version: 9.0.1 + web3-adapter: + specifier: workspace:* + version: link:../../infrastructure/web3-adapter devDependencies: '@types/cors': specifier: ^2.8.17 @@ -1498,7 +1504,7 @@ importers: specifier: ^1.1.7 version: 1.1.14(@types/react-dom@19.1.7(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-separator': - specifier: ^1.1.0 + specifier: ^1.1.7 version: 1.1.7(@types/react-dom@19.1.7(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-slot': specifier: ^1.2.0 @@ -1663,6 +1669,9 @@ importers: uuid: specifier: ^9.0.1 version: 9.0.1 + web3-adapter: + specifier: workspace:* + version: link:../../infrastructure/web3-adapter devDependencies: '@types/cors': specifier: ^2.8.17 @@ -2098,7 +2107,7 @@ importers: version: 5.33.1 svelte-check: specifier: ^4.0.0 - version: 4.2.1(picomatch@4.0.2)(svelte@5.33.1)(typescript@5.8.3) + version: 4.2.1(picomatch@4.0.3)(svelte@5.33.1)(typescript@5.8.3) svelte-gestures: specifier: ^5.1.3 version: 5.1.4 @@ -2150,6 +2159,9 @@ importers: uuid: specifier: ^9.0.1 version: 9.0.1 + web3-adapter: + specifier: workspace:* + version: link:../../infrastructure/web3-adapter devDependencies: '@types/cors': specifier: ^2.8.17 @@ -2643,6 +2655,9 @@ packages: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} + '@date-fns/tz@1.4.1': + resolution: {integrity: sha512-P5LUNhtbj6YfI3iJjw5EL9eUAG6OitD0W3fWQcpQjDRc/QIsL0tRNuO1PcDvPccWL1fSTXXdE1ds+l95DV/OFA==} + '@drizzle-team/brocli@0.10.2': resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==} @@ -8608,6 +8623,9 @@ packages: resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} engines: {node: '>= 0.4'} + date-fns-jalali@4.1.0-0: + resolution: {integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg==} + date-fns@2.30.0: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} @@ -12656,11 +12674,6 @@ packages: qrcode-generator@1.5.2: resolution: {integrity: sha512-pItrW0Z9HnDBnFmgiNrY1uxRdri32Uh9EjNYLPVC2zZ3ZRIIEqBoDgm4DkvDwNNDHTK7FNkmr8zAa77BYc9xNw==} - qrcode.react@3.2.0: - resolution: {integrity: sha512-YietHHltOHA4+l5na1srdaMx4sVSOjV9tamHs+mwiLWAMr6QVACRUw1Neax5CptFILcNoITctJY0Ipyn5enQ8g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - qrcode.react@4.2.0: resolution: {integrity: sha512-QpgqWi8rD9DsS9EP3z7BT+5lY5SFhsqGjpgW5DY/i3mK4M9DTBNz3ErMi8BWYEfI3L0d8GIbGmcdFAS1uIRGjA==} peerDependencies: @@ -12736,6 +12749,12 @@ packages: date-fns: ^2.28.0 || ^3.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-day-picker@9.11.1: + resolution: {integrity: sha512-l3ub6o8NlchqIjPKrRFUCkTUEq6KwemQlfv3XZzzwpUeGwmDJ+0u0Upmt38hJyd7D/vn2dQoOoLV/qAp0o3uUw==} + engines: {node: '>=18'} + peerDependencies: + react: '>=16.8.0' + react-dom@18.2.0: resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: @@ -15564,6 +15583,8 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 + '@date-fns/tz@1.4.1': {} + '@drizzle-team/brocli@0.10.2': {} '@emnapi/core@1.4.3': @@ -23713,6 +23734,8 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.2 + date-fns-jalali@4.1.0-0: {} + date-fns@2.30.0: dependencies: '@babel/runtime': 7.27.1 @@ -24422,8 +24445,8 @@ snapshots: '@typescript-eslint/parser': 5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.27.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.27.0(jiti@2.4.2)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.27.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.27.0(jiti@2.4.2)) eslint-plugin-react: 7.37.5(eslint@9.27.0(jiti@2.4.2)) eslint-plugin-react-hooks: 5.2.0(eslint@9.27.0(jiti@2.4.2)) @@ -24458,33 +24481,33 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.21.0): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.1(supports-color@5.5.0) - eslint: 8.21.0 + eslint: 9.27.0(jiti@2.4.2) get-tsconfig: 4.10.1 is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.13 unrs-resolver: 1.7.11 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.21.0)(typescript@5.0.4))(eslint-import-resolver-typescript@3.10.1)(eslint@8.21.0) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.27.0(jiti@2.4.2)): + eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@8.21.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.1(supports-color@5.5.0) - eslint: 9.27.0(jiti@2.4.2) + eslint: 8.21.0 get-tsconfig: 4.10.1 is-bun-module: 2.0.0 stable-hash: 0.0.5 tinyglobby: 0.2.13 unrs-resolver: 1.7.11 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.27.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.21.0)(typescript@5.0.4))(eslint-import-resolver-typescript@3.10.1)(eslint@8.21.0) transitivePeerDependencies: - supports-color @@ -24510,14 +24533,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.27.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3) eslint: 9.27.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.27.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color @@ -24579,7 +24602,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.27.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -24590,7 +24613,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.27.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.27.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@9.27.0(jiti@2.4.2))(typescript@5.8.3))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)))(eslint@9.27.0(jiti@2.4.2)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -29313,10 +29336,6 @@ snapshots: qrcode-generator@1.5.2: {} - qrcode.react@3.2.0(react@19.1.0): - dependencies: - react: 19.1.0 - qrcode.react@4.2.0(react@19.1.0): dependencies: react: 19.1.0 @@ -29395,9 +29414,11 @@ snapshots: date-fns: 3.6.0 react: 18.3.1 - react-day-picker@8.10.1(date-fns@4.1.0)(react@19.1.0): + react-day-picker@9.11.1(react@19.1.0): dependencies: + '@date-fns/tz': 1.4.1 date-fns: 4.1.0 + date-fns-jalali: 4.1.0-0 react: 19.1.0 react-dom@18.2.0(react@18.2.0): @@ -30577,7 +30598,7 @@ snapshots: svelte: 5.33.1 zimmerframe: 1.1.2 - svelte-check@4.2.1(picomatch@4.0.2)(svelte@5.33.1)(typescript@5.8.3): + svelte-check@4.2.1(picomatch@4.0.2)(svelte@5.33.1)(typescript@5.6.3): dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 4.0.3 @@ -30585,18 +30606,6 @@ snapshots: picocolors: 1.1.1 sade: 1.8.1 svelte: 5.33.1 - typescript: 5.8.3 - transitivePeerDependencies: - - picomatch - - svelte-check@4.2.1(picomatch@4.0.3)(svelte@5.33.1)(typescript@5.6.3): - dependencies: - '@jridgewell/trace-mapping': 0.3.25 - chokidar: 4.0.3 - fdir: 6.4.4(picomatch@4.0.3) - picocolors: 1.1.1 - sade: 1.8.1 - svelte: 5.33.1 typescript: 5.6.3 transitivePeerDependencies: - picomatch