mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
chore: update paths to be more absolute
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import browser from 'webextension-polyfill'
|
||||
|
||||
import { closeSettings, MenuOptionsOpen, OpenMenuOptions, OpenWhatsNewPopup } from '../../../SEQTA';
|
||||
import { deleteTheme } from '../../ui/themes/deleteTheme';
|
||||
import { getAvailableThemes } from '../../ui/themes/getAvailableThemes';
|
||||
import { saveTheme } from '../../ui/themes/saveTheme';
|
||||
import { UpdateThemePreview } from '../../ui/themes/UpdateThemePreview';
|
||||
import { getTheme } from '../../ui/themes/getTheme';
|
||||
import { setTheme } from '../../ui/themes/setTheme';
|
||||
import { disableTheme } from '../../ui/themes/disableTheme';
|
||||
import { CloseThemeCreator, OpenThemeCreator } from '../../ui/ThemeCreator';
|
||||
import ShareTheme from '../../ui/themes/shareTheme';
|
||||
import sendThemeUpdate from '../sendThemeUpdate';
|
||||
import hideSensitiveContent from '../../ui/dev/hideSensitiveContent';
|
||||
import { deleteTheme } from '@/seqta/ui/themes/deleteTheme';
|
||||
import { getAvailableThemes } from '@/seqta/ui/themes/getAvailableThemes';
|
||||
import { saveTheme } from '@/seqta/ui/themes/saveTheme';
|
||||
import { UpdateThemePreview } from '@/seqta/ui/themes/UpdateThemePreview';
|
||||
import { getTheme } from '@/seqta/ui/themes/getTheme';
|
||||
import { setTheme } from '@/seqta/ui/themes/setTheme';
|
||||
import { disableTheme } from '@/seqta/ui/themes/disableTheme';
|
||||
import { CloseThemeCreator, OpenThemeCreator } from '@/seqta/ui/ThemeCreator';
|
||||
import ShareTheme from '@/seqta/ui/themes/shareTheme';
|
||||
import sendThemeUpdate from '@/seqta/utils/sendThemeUpdate';
|
||||
import hideSensitiveContent from '@/seqta/ui/dev/hideSensitiveContent';
|
||||
|
||||
export class MessageHandler {
|
||||
constructor() {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import browser from 'webextension-polyfill';
|
||||
import { SettingsState } from '../../../types/storage';
|
||||
import { SettingsState } from '@/types/storage';
|
||||
|
||||
type ChangeListener = (newValue: any, oldValue: any) => void;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { settingsState } from './SettingsState';
|
||||
import { updateAllColors } from '../../ui/colors/Manager';
|
||||
import { updateAllColors } from '@/seqta/ui/colors/Manager';
|
||||
import {
|
||||
addShortcuts,
|
||||
CreateBackground,
|
||||
@@ -9,10 +9,10 @@ import {
|
||||
FilterUpcomingAssessments,
|
||||
RemoveBackground,
|
||||
RemoveShortcutDiv,
|
||||
} from '../../../SEQTA';
|
||||
import { updateBgDurations } from '../../ui/Animation';
|
||||
} from '@/SEQTA';
|
||||
import { updateBgDurations } from '@/seqta/ui/Animation';
|
||||
import browser from 'webextension-polyfill';
|
||||
import { CustomShortcut } from '../../../types/storage';
|
||||
import { CustomShortcut } from '@/types/storage';
|
||||
|
||||
export class StorageChangeHandler {
|
||||
constructor() {
|
||||
|
||||
Reference in New Issue
Block a user