mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-16 16:37:07 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b8709f6391 |
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "betterseqtaplus",
|
"name": "betterseqtaplus",
|
||||||
"version": "3.7.0",
|
"version": "3.7.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development and add heaps more features!",
|
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development and add heaps more features!",
|
||||||
"browserslist": "> 0.5%, last 2 versions, not dead",
|
"browserslist": "> 0.5%, last 2 versions, not dead",
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState";
|
import { settingsState } from "@/seqta/utils/listeners/SettingsState";
|
||||||
import { waitForElm } from "@/seqta/utils/waitForElm";
|
import { waitForElm } from "@/seqta/utils/waitForElm";
|
||||||
|
import { renderAnalyticsPage } from "./ui";
|
||||||
|
|
||||||
let loadInFlight: Promise<void> | null = null;
|
let loadInFlight: Promise<void> | null = null;
|
||||||
|
|
||||||
@@ -41,6 +42,5 @@ async function loadAnalyticsPageInner(): Promise<void> {
|
|||||||
const titlediv = document.getElementById("title")?.firstChild;
|
const titlediv = document.getElementById("title")?.firstChild;
|
||||||
if (titlediv) (titlediv as HTMLElement).innerText = "Analytics";
|
if (titlediv) (titlediv as HTMLElement).innerText = "Analytics";
|
||||||
|
|
||||||
const { renderAnalyticsPage } = await import("./ui");
|
|
||||||
renderAnalyticsPage(container);
|
renderAnalyticsPage(container);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import tailwindStyles from "@/interface/index.css?inline";
|
import tailwindStyles from "./tailwind.css?inline";
|
||||||
import pluginStyles from "./styles.css?inline";
|
import pluginStyles from "./styles.css?inline";
|
||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState";
|
import { settingsState } from "@/seqta/utils/listeners/SettingsState";
|
||||||
import { mount, unmount } from "svelte";
|
import { mount, unmount } from "svelte";
|
||||||
|
|||||||
Reference in New Issue
Block a user