diff options
author | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2024-01-22 03:30:30 +0100 |
commit | 61ba9fd1f62cb959f197cf95c2686809318c6482 (patch) | |
tree | 44bec06175f1b833f2131d14f461cf288e5b9200 /packages | |
parent | fbaa87ef4fcad18ac03cb0cfa82fb106751c1b38 (diff) | |
download | Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.gz Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.tar.bz2 Nexus-61ba9fd1f62cb959f197cf95c2686809318c6482.zip |
chore(deps): bump and format
Diffstat (limited to 'packages')
-rw-r--r-- | packages/config/package.json | 8 | ||||
-rw-r--r-- | packages/ui/package.json | 14 | ||||
-rw-r--r-- | packages/ui/src/keys.ts | 4 | ||||
-rw-r--r-- | packages/ui/src/utils.tsx | 2 |
4 files changed, 14 insertions, 14 deletions
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<string, { macOS?: string, Windows?: string, Other: string }> = { +export const keySymbols: Record<string, { macOS?: string; Windows?: string; Other: string }> = { ' ': { 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<JSX.IntrinsicElements[K]> >; } & { - <T>(c: T): ClassnameFactory<T> + <T>(c: T): ClassnameFactory<T>; }; export const tw = new Proxy((() => {}) as unknown as TailwindFactory, { |