mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
add eventlistners jsfile
This commit is contained in:
Vendored
-2
@@ -1,2 +0,0 @@
|
||||
declare const About: React.FC;
|
||||
export default About;
|
||||
Vendored
-8
@@ -1,8 +0,0 @@
|
||||
import { SettingsState } from '../App';
|
||||
interface SettingsProps {
|
||||
settingsState: SettingsState;
|
||||
switchChange: (key: string, isOn: boolean) => void;
|
||||
colorChange: (color: string) => void;
|
||||
}
|
||||
declare const Settings: React.FC<SettingsProps>;
|
||||
export default Settings;
|
||||
Vendored
-1
@@ -1 +0,0 @@
|
||||
export default function Shortcuts(): import("react/jsx-runtime").JSX.Element;
|
||||
@@ -15,7 +15,6 @@ let SettingsClicked = false;
|
||||
let MenuOptionsOpen = false;
|
||||
let UserInitalCode = "";
|
||||
let currentSelectedDate = new Date();
|
||||
//let WhatsNewOpen = false;
|
||||
let LessonInterval;
|
||||
let DarkMode;
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
export function StorageListner() {
|
||||
chrome.storage.onChanged.addListener(function (changes) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
import { Color } from "color";
|
||||
|
||||
export function convertColor(inputColor, outputMode) {
|
||||
console.log(`Converting to ${outputMode}`);
|
||||
|
||||
// Convert color to desired output mode
|
||||
let convertedColor = Color[outputMode]().string();
|
||||
return convertedColor;
|
||||
}
|
||||
Reference in New Issue
Block a user