-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjustment in prettier & added format check cmd
- Loading branch information
Showing
25 changed files
with
837 additions
and
812 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
node_modules/** | ||
vite.config.ts | ||
vite.config.ts | ||
src-tauri/target/** | ||
src-tauri/tauri.conf.json | ||
src-tauri/Cargo.toml | ||
src-tauri/Cargo.lock | ||
src-tauri/.gitignore | ||
docker/** | ||
.vscode/** | ||
public/** | ||
.eslintrc | ||
.github/workflows/dependency-review.yml | ||
.github/workflows/format.yml | ||
.prettierrc | ||
package.json | ||
postcss.config.cjs | ||
vite-env.d.ts |
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<link rel="stylesheet" href="/src/styles.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Magic-Eye</title> | ||
</head> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
||
<body> | ||
<div id="root"></div> | ||
|
||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<link rel="stylesheet" href="/src/styles.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Magic-Eye</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
|
||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {} | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,53 +1,54 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<link rel="stylesheet" href="/src/styles.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<link rel="stylesheet" href="/src/styles.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title>Loading Screen</title> | ||
<style> | ||
:root { | ||
background-color: #1c1c1c; | ||
} | ||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
50% { | ||
transform: rotate(180deg); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<svg | ||
style="position: fixed; | ||
left: 45%; | ||
top: 35%; | ||
-webkit-transform: translateY(25%); | ||
-ms-transform: translateY(25%); | ||
-webkit-transform: translateX(25%); | ||
-ms-transform: translateX(-45%); | ||
transform: translateX(-45%); | ||
transform: translateY(25%); | ||
animation: spin 2s linear infinite;" | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
width="120" | ||
height="120" | ||
preserveAspectRatio="xMaxYMax meet" | ||
> | ||
<path | ||
d="M18.364 5.63604L16.9497 7.05025C15.683 5.7835 13.933 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12H21C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604Z" | ||
fill="rgba(0,123,255,1)" | ||
></path> | ||
</svg> | ||
</body> | ||
<title>Loading Screen</title> | ||
<style> | ||
:root { | ||
background-color: #1c1c1c; | ||
} | ||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
50% { | ||
transform: rotate(180deg); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<svg | ||
style=" | ||
position: fixed; | ||
left: 45%; | ||
top: 35%; | ||
-webkit-transform: translateY(25%); | ||
-ms-transform: translateY(25%); | ||
-webkit-transform: translateX(25%); | ||
-ms-transform: translateX(-45%); | ||
transform: translateX(-45%); | ||
transform: translateY(25%); | ||
animation: spin 2s linear infinite; | ||
" | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 24 24" | ||
width="120" | ||
height="120" | ||
preserveAspectRatio="xMaxYMax meet" | ||
> | ||
<path | ||
d="M18.364 5.63604L16.9497 7.05025C15.683 5.7835 13.933 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12H21C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604Z" | ||
fill="rgba(0,123,255,1)" | ||
></path> | ||
</svg> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export interface IAlert { | ||
message: string; | ||
timer: number; | ||
OnClose: () => void; | ||
message: string; | ||
timer: number; | ||
OnClose: () => void; | ||
} |
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
export default interface ICheckbox { | ||
checked: boolean; | ||
|
||
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void; | ||
value: any | ||
value: any; | ||
className?: string; | ||
|
||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
interface ListBoxProps { | ||
data: Array<{ [key: string]: any }>; | ||
|
||
} | ||
data: Array<{ [key: string]: any }>; | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export interface IMenuItem { | ||
label: string; | ||
label: string; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export interface IModal { | ||
isOpen: boolean; | ||
onClose: () => void; | ||
children: React.ReactNode; | ||
isOpen: boolean; | ||
onClose: () => void; | ||
children: React.ReactNode; | ||
} |
Oops, something went wrong.