Fix import indenetation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import type { language } from "src/lang";
|
||||
import Help from "../Others/Help.svelte";
|
||||
import Help from "../Others/Help.svelte";
|
||||
|
||||
export let name = ""
|
||||
let open = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { ParseMarkdown } from "src/ts/parser";
|
||||
import { parseMultilangString, toLangName } from "src/ts/util";
|
||||
import { ParseMarkdown } from "src/ts/parser";
|
||||
import { parseMultilangString, toLangName } from "src/ts/util";
|
||||
|
||||
export let value: string
|
||||
export let markdown: boolean = false
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { ArrowLeft, ArrowRight } from "lucide-svelte";
|
||||
import { DynamicGUI, sideBarClosing, sideBarStore } from "src/ts/stores";
|
||||
import { ArrowLeft, ArrowRight } from "lucide-svelte";
|
||||
import { DynamicGUI, sideBarClosing, sideBarStore } from "src/ts/stores";
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
<script lang="ts">
|
||||
import { DataBase, appVer, webAppSubVer } from "src/ts/storage/database";
|
||||
import GithubStars from "../Others/GithubStars.svelte";
|
||||
import Hub from "./Realm/RealmMain.svelte";
|
||||
import { OpenRealmStore } from "src/ts/stores";
|
||||
import { ArrowLeft } from "lucide-svelte";
|
||||
import { isNodeServer, isTauri, openURL } from "src/ts/storage/globalApi";
|
||||
import { language } from "src/lang";
|
||||
import { getRisuHub } from "src/ts/characterCards";
|
||||
import RisuHubIcon from "./Realm/RealmHubIcon.svelte";
|
||||
import Title from "./Title.svelte";
|
||||
import { getPatchNote } from "src/etc/patchNote";
|
||||
import { parseMarkdownSafe } from "src/ts/parser";
|
||||
import { DataBase, appVer, webAppSubVer } from "src/ts/storage/database";
|
||||
import GithubStars from "../Others/GithubStars.svelte";
|
||||
import Hub from "./Realm/RealmMain.svelte";
|
||||
import { OpenRealmStore } from "src/ts/stores";
|
||||
import { ArrowLeft } from "lucide-svelte";
|
||||
import { isNodeServer, isTauri, openURL } from "src/ts/storage/globalApi";
|
||||
import { language } from "src/lang";
|
||||
import { getRisuHub } from "src/ts/characterCards";
|
||||
import RisuHubIcon from "./Realm/RealmHubIcon.svelte";
|
||||
import Title from "./Title.svelte";
|
||||
import { getPatchNote } from "src/etc/patchNote";
|
||||
import { parseMarkdownSafe } from "src/ts/parser";
|
||||
const patch = getPatchNote(appVer)
|
||||
let patchNodeHidden = true
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
import NumberInput from "./GUI/NumberInput.svelte";
|
||||
import CheckInput from "./GUI/CheckInput.svelte";
|
||||
import { ArrowDown, ArrowUp, XIcon } from "lucide-svelte";
|
||||
import TextInput from "./GUI/TextInput.svelte";
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
import TextInput from "./GUI/TextInput.svelte";
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
export let promptItem:PromptItem
|
||||
export let onRemove:() => void = () => {}
|
||||
export let moveUp:() => void = () => {}
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
import { BookIcon, ImageIcon, SmileIcon } from "lucide-svelte";
|
||||
import { alertNormal } from "src/ts/alert";
|
||||
import { hubURL, type hubType } from "src/ts/characterCards";
|
||||
import { trimNonLatin } from "src/ts/storage/globalApi";
|
||||
import { parseMultilangString } from "src/ts/util";
|
||||
import { trimNonLatin } from "src/ts/storage/globalApi";
|
||||
import { parseMultilangString } from "src/ts/util";
|
||||
|
||||
export let onClick = () => {}
|
||||
export let chara:hubType
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
import TextInput from "../GUI/TextInput.svelte";
|
||||
import RealmPopUp from "./RealmPopUp.svelte";
|
||||
import { SizeStore } from "src/ts/stores";
|
||||
import { SizeStore } from "src/ts/stores";
|
||||
|
||||
let openedData:null|hubType = null
|
||||
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
import { parseMarkdownSafe } from "src/ts/parser";
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
import RealmLicense from "./RealmLicense.svelte";
|
||||
import MultiLangDisplay from "../GUI/MultiLangDisplay.svelte";
|
||||
import { tooltip } from "src/ts/gui/tooltip";
|
||||
import MultiLangDisplay from "../GUI/MultiLangDisplay.svelte";
|
||||
import { tooltip } from "src/ts/gui/tooltip";
|
||||
|
||||
export let openedData:hubType
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import { alertMd, alertNormal } from "src/ts/alert";
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
import { alertMd, alertNormal } from "src/ts/alert";
|
||||
import { DataBase } from "src/ts/storage/database";
|
||||
import { openURL } from "src/ts/storage/globalApi";
|
||||
import { sideBarStore } from "src/ts/stores";
|
||||
import { sideBarStore } from "src/ts/stores";
|
||||
|
||||
let specialDay = ''
|
||||
const today = new Date()
|
||||
|
||||
Reference in New Issue
Block a user