Skip to content

Commit 1ee938f

Browse files
committed
Feat: added seat hover animation
1 parent 4a7f005 commit 1ee938f

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.github/workflows/prerelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
30+
token: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
3031

3132
- name: Build 🏗️
3233
uses: sliit-foss/actions/bun/build@main

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
22+
token: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
2223

2324
- name: Build 🏗️
2425
uses: sliit-foss/actions/bun/build@main

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mezh-hq/react-seat-toolkit",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "React UI library to design and render seat layouts",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

src/components/workspace/elements/seat.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const Seat: React.FC<ISeatProps> = forwardRef(
7171
{...{ [dataAttributes.category]: category }}
7272
{...{ [dataAttributes.status]: status ?? SeatStatus.Available }}
7373
{...props}
74+
className={twMerge(props.className, "filter hover:brightness-[1.05]")}
7475
/>
7576
{label && showLabel && (
7677
<text

0 commit comments

Comments
 (0)