From 61ba9fd1f62cb959f197cf95c2686809318c6482 Mon Sep 17 00:00:00 2001 From: Pauline Date: Mon, 22 Jan 2024 03:30:30 +0100 Subject: chore(deps): bump and format --- packages/config/package.json | 8 ++++---- packages/ui/package.json | 14 +++++++------- packages/ui/src/keys.ts | 4 ++-- packages/ui/src/utils.tsx | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) (limited to 'packages') diff --git a/packages/config/package.json b/packages/config/package.json index 6f68aed..052012e 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -13,10 +13,10 @@ "devDependencies": { "@vitejs/plugin-react": "^4.2.1", "regexpp": "^3.2.0", - "vite": "^5.0.11", - "vite-plugin-html": "^3.2.1", + "vite": "^5.0.12", + "vite-plugin-html": "^3.2.2", "vite-plugin-svgr": "^4.2.0", - "vite-tsconfig-paths": "^4.2.3", - "vitest": "^1.1.3" + "vite-tsconfig-paths": "^4.3.1", + "vitest": "^1.2.1" } } diff --git a/packages/ui/package.json b/packages/ui/package.json index 3d63e4d..78c4328 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -31,7 +31,7 @@ "clsx": "^2.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-router-dom": "^6.21.1", + "react-router-dom": "^6.21.3", "sonner": "^1.3.1", "tailwindcss-radix": "^2.8.0", "ts-pattern": "^5.0.6", @@ -41,17 +41,17 @@ "devDependencies": { "@babel/core": "^7.23.7", "@polyfrost/config": "workspace:*", - "@storybook/types": "^7.6.7", + "@storybook/types": "^7.6.10", "@tailwindcss/typography": "^0.5.10", - "@types/node": "~20.10.8", - "@types/react": "^18.2.47", + "@types/node": "~20.11.5", + "@types/react": "^18.2.48", "@types/react-dom": "^18.2.18", - "autoprefixer": "^10.4.16", + "autoprefixer": "^10.4.17", "postcss": "^8.4.33", - "sass": "^1.69.7", + "sass": "^1.70.0", "tailwindcss": "^3.4.1", "tailwindcss-animate": "^1.0.7", "typescript": "^5.3.3", - "vitest": "^1.1.3" + "vitest": "^1.2.1" } } diff --git a/packages/ui/src/keys.ts b/packages/ui/src/keys.ts index bb8eaa4..c752ccc 100644 --- a/packages/ui/src/keys.ts +++ b/packages/ui/src/keys.ts @@ -34,7 +34,7 @@ export type OSforKeys = 'macOS' | 'Windows' | 'Other'; export const modifierSymbols: Record< ModifierKeys | EditingKeys | UIKeys | NavigationKeys, - { macOS?: string, Windows?: string, Other: string } + { macOS?: string; Windows?: string; Other: string } > = { Alt: { macOS: '⌥', Other: 'Alt' }, AltGraph: { macOS: '⌥', Other: 'Alt' }, @@ -57,7 +57,7 @@ export const modifierSymbols: Record< ArrowRight: { Other: '→' }, }; -export const keySymbols: Record = { +export const keySymbols: Record = { ' ': { Other: '␣' }, 'Tab': { macOS: '⇥', Other: '⭾' }, 'Enter': { macOS: '↩', Other: '↵' }, diff --git a/packages/ui/src/utils.tsx b/packages/ui/src/utils.tsx index 67782bb..e4e2f10 100644 --- a/packages/ui/src/utils.tsx +++ b/packages/ui/src/utils.tsx @@ -19,7 +19,7 @@ type TailwindFactory = { React.ForwardRefExoticComponent >; } & { - (c: T): ClassnameFactory + (c: T): ClassnameFactory; }; export const tw = new Proxy((() => {}) as unknown as TailwindFactory, { -- cgit