-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(version): release 0.30.3 version
- Loading branch information
1 parent
ef64c17
commit 7287478
Showing
11 changed files
with
183 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/components/BarcodeManagementButton/BarcodeManagementButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { ReactElement } from "react"; | ||
|
||
interface IBarcodeManagementButton { | ||
icon: ReactElement; | ||
onClick: () => void; | ||
} | ||
|
||
export default function BarcodeManagementButton({ | ||
icon, | ||
onClick, | ||
}: IBarcodeManagementButton): ReactElement { | ||
return ( | ||
<div | ||
className="transition-500 flex h-9 w-9 cursor-pointer items-center justify-center rounded border border-light-300 bg-light-50 opacity-60 hover:bg-light-100" | ||
onClick={onClick} | ||
> | ||
{icon} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export interface IBarcodeItem { | ||
robotId: string; | ||
fleetId: string; | ||
sensorId: string; | ||
barcode: string; | ||
waypoint: { | ||
x: number; | ||
y: number; | ||
z: number; | ||
yaw: number; | ||
}; | ||
} |
Oops, something went wrong.