Skip to content

Commit e7183fa

Browse files
authored
Merge pull request #17 from pheralb/next
🚀 v0.2.2
2 parents fb00df9 + 81fe978 commit e7183fa

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

docs/src/components/layout/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Header = () => {
2727
title="Logo"
2828
/>
2929
<h3 className="text-xl font-medium">Superkey</h3>
30-
<span className="text-sm font-bold dark:text-neutral-600 text-neutral-500">0.2.1</span>
30+
<span className="text-sm font-bold dark:text-neutral-600 text-neutral-500">0.2.2</span>
3131
</div>
3232
</Link>
3333
<div className="flex items-center space-x-2">

packages/component/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "superkey",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"author": "@pheralb_",
55
"description": "A stylized command menu for React.",
66
"type": "module",
@@ -23,14 +23,16 @@
2323
"dev": "concurrently \"swc ./src -d ./dist -w\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
2424
"clean": "npx rimraf dist"
2525
},
26+
"dependencies": {
27+
"clsx": "1.2.1"
28+
},
2629
"devDependencies": {
27-
"@swc/cli": "0.1.60",
28-
"@swc/core": "1.3.31",
30+
"@swc/cli": "0.1.61",
31+
"@swc/core": "1.3.32",
2932
"@types/react": "18.0.27",
3033
"@types/react-dom": "18.0.10",
3134
"chokidar": "3.5.3",
3235
"concurrently": "7.6.0",
33-
"clsx": "1.2.1",
3436
"eslint": "8.33.0",
3537
"eslint-config-custom": "*",
3638
"react": "18.2.0",

packages/component/src/components/command.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const Command = ({
2020
>
2121
<Dialog
2222
onClose={onClose}
23-
className="fixed inset-0 p-5 pt-[25vh] overflow-y-auto w-screen h-screen"
23+
className="fixed inset-0 p-5 pt-[25vh] overflow-y-auto mx-auto max-w-xl h-screen"
2424
>
2525
<Transition.Child
2626
enter="ease-out duration-300"

0 commit comments

Comments
 (0)