You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-07 17:03:01 +03:00
Bump most frontend dependencies
This commit is contained in:
@@ -20,6 +20,9 @@ use thiserror::Error;
|
||||
#[derive(serde::Deserialize, Debug, Clone)]
|
||||
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
||||
pub struct ManifestEntry {
|
||||
#[allow(dead_code)]
|
||||
name: Option<String>,
|
||||
|
||||
#[allow(dead_code)]
|
||||
src: Option<Utf8PathBuf>,
|
||||
|
||||
|
@@ -22,7 +22,6 @@ import i18n from "../src/i18n";
|
||||
import localazyMetadata from "./locales";
|
||||
|
||||
export const parameters: Parameters = {
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
|
4448
frontend/package-lock.json
generated
4448
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -25,7 +25,7 @@
|
||||
"@types/ua-parser-js": "^0.7.39",
|
||||
"@urql/core": "^4.3.0",
|
||||
"@urql/devtools": "^2.0.3",
|
||||
"@urql/exchange-graphcache": "^6.5.0",
|
||||
"@urql/exchange-graphcache": "^6.5.1",
|
||||
"@urql/exchange-refocus": "^1.0.2",
|
||||
"@urql/exchange-request-policy": "^1.1.0",
|
||||
"@vector-im/compound-design-tokens": "1.2.0",
|
||||
@@ -50,22 +50,22 @@
|
||||
"@browser-logos/firefox": "^3.0.10",
|
||||
"@browser-logos/safari": "^2.1.0",
|
||||
"@graphql-codegen/cli": "^5.0.2",
|
||||
"@graphql-codegen/client-preset": "^4.2.4",
|
||||
"@graphql-codegen/client-preset": "^4.2.5",
|
||||
"@graphql-codegen/urql-introspection": "^3.0.0",
|
||||
"@graphql-eslint/eslint-plugin": "^3.20.1",
|
||||
"@storybook/addon-essentials": "^8.0.2",
|
||||
"@storybook/react": "^8.0.2",
|
||||
"@storybook/react-vite": "^8.0.2",
|
||||
"@storybook/addon-essentials": "^8.0.5",
|
||||
"@storybook/react": "^8.0.5",
|
||||
"@storybook/react-vite": "^8.0.5",
|
||||
"@tanstack/router-devtools": "^1.20.1",
|
||||
"@tanstack/router-vite-plugin": "^1.20.2",
|
||||
"@testing-library/react": "^14.2.1",
|
||||
"@testing-library/react": "^14.2.2",
|
||||
"@types/node": "^20.11.30",
|
||||
"@types/react": "^18.2.67",
|
||||
"@types/react-dom": "^18.2.22",
|
||||
"@types/react": "^18.2.73",
|
||||
"@types/react-dom": "^18.2.23",
|
||||
"@types/react-test-renderer": "^18.0.7",
|
||||
"@vitejs/plugin-react": "^4.2.1",
|
||||
"@vitest/coverage-v8": "^1.4.0",
|
||||
"autoprefixer": "^10.4.18",
|
||||
"autoprefixer": "^10.4.19",
|
||||
"browserslist-to-esbuild": "^2.1.1",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
@@ -74,29 +74,23 @@
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-matrix-org": "^1.2.1",
|
||||
"eslint-plugin-prettier": "^5.1.3",
|
||||
"happy-dom": "^14.0.0",
|
||||
"happy-dom": "^14.3.9",
|
||||
"i18next-parser": "^8.13.0",
|
||||
"postcss": "^8.4.35",
|
||||
"postcss": "^8.4.38",
|
||||
"postcss-modules": "^6.0.0",
|
||||
"postcss-nesting": "^12.0.4",
|
||||
"postcss-nesting": "^12.1.0",
|
||||
"prettier": "3.2.5",
|
||||
"react-test-renderer": "^18.2.0",
|
||||
"rimraf": "^5.0.5",
|
||||
"storybook": "^8.0.2",
|
||||
"storybook": "^8.0.5",
|
||||
"storybook-react-i18next": "^3.0.1",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"typescript": "5.3.3",
|
||||
"vite": "5.1.6",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"typescript": "5.4.3",
|
||||
"vite": "5.2.7",
|
||||
"vite-plugin-compression": "^0.5.1",
|
||||
"vite-plugin-graphql-codegen": "^3.3.6",
|
||||
"vite-plugin-manifest-sri": "^0.2.0",
|
||||
"vite-plugin-svgr": "^4.2.0",
|
||||
"vitest": "^1.3.1"
|
||||
},
|
||||
"overrides": {
|
||||
"@storybook/react-vite": {
|
||||
"vite": "$vite",
|
||||
"@vitejs/plugin-react": "$@vitejs/plugin-react"
|
||||
}
|
||||
"vitest": "^1.4.0"
|
||||
}
|
||||
}
|
||||
|
@@ -23,7 +23,7 @@ export const mockLocale = (defaultLocale = "en-GB"): void => {
|
||||
const { DateTimeFormat } = Intl;
|
||||
vi.spyOn(Intl, "DateTimeFormat").mockImplementation(
|
||||
(
|
||||
locales?: string | string[] | undefined,
|
||||
locales?: Intl.LocalesArgument,
|
||||
options?: Intl.DateTimeFormatOptions | undefined,
|
||||
) => new DateTimeFormat(locales || defaultLocale, options),
|
||||
);
|
||||
|
Reference in New Issue
Block a user