Cleanup: Organize Imports
This commit is contained in:
parent
446f8015e7
commit
525f3eb03d
@ -1,13 +1,10 @@
|
||||
<script>
|
||||
import moment from "moment";
|
||||
import Avatar from "./avatar.svelte";
|
||||
import Mention from "./mention.svelte";
|
||||
import Rating from "./rating.svelte";
|
||||
import Tablericon from "./tablericon.svelte";
|
||||
import Ago from "./ago.svelte";
|
||||
import ActionBar from "./actionbar.svelte";
|
||||
import { circOut } from "svelte/easing";
|
||||
import Ago from "./ago.svelte";
|
||||
import Avatar from "./avatar.svelte";
|
||||
import GlowFX from "./fx/glowfx.svelte";
|
||||
import Mention from "./mention.svelte";
|
||||
import Tablericon from "./tablericon.svelte";
|
||||
|
||||
/**
|
||||
* @type {import("$types/base").Comment}
|
||||
@ -43,15 +40,6 @@
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.background {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.glowContent {
|
||||
position: relative;
|
||||
display: flex;
|
||||
|
||||
@ -1,12 +1,5 @@
|
||||
<script>
|
||||
import moment from "moment";
|
||||
import Mention from "$comp/mention.svelte";
|
||||
import Comment from "$comp/comment.svelte";
|
||||
import UserItem from "$comp/useritem.svelte";
|
||||
import { buildCommentTree } from "$lib/client/nodetree";
|
||||
import { getNamedId, gotoNamedId } from "$lib/util";
|
||||
import { onMount } from "svelte";
|
||||
import Rating from "$comp/rating.svelte";
|
||||
|
||||
/**
|
||||
* @type {import("$types/base").CommentTreeNode[]}
|
||||
|
||||
@ -1,16 +1,9 @@
|
||||
<script>
|
||||
import moment from "moment";
|
||||
import Mention from "$comp/mention.svelte";
|
||||
import Comment from "$comp/comment.svelte";
|
||||
import UserItem from "$comp/useritem.svelte";
|
||||
import { buildCommentTree } from "$lib/client/nodetree";
|
||||
import { getNamedId, gotoNamedId } from "$lib/util";
|
||||
import { onMount } from "svelte";
|
||||
import Rating from "$comp/rating.svelte";
|
||||
import CommentList from "$comp/commentlist.svelte";
|
||||
import Avatar from "$comp/avatar.svelte";
|
||||
import Ago from "$comp/ago.svelte";
|
||||
import Actionbar from "$comp/actionbar.svelte";
|
||||
import Ago from "$comp/ago.svelte";
|
||||
import Avatar from "$comp/avatar.svelte";
|
||||
import CommentList from "$comp/commentlist.svelte";
|
||||
import Mention from "$comp/mention.svelte";
|
||||
|
||||
/**
|
||||
* @type {import("$types/base").Post}
|
||||
|
||||
@ -1,16 +1,10 @@
|
||||
<script>
|
||||
import moment from 'moment';
|
||||
import { getNamedId } from '$lib/util';
|
||||
import { createEventDispatcher } from 'svelte';
|
||||
import Avatar from './avatar.svelte';
|
||||
import GlowFX from './fx/glowfx.svelte';
|
||||
import PerspectiveFX from './fx/perspectivefx.svelte';
|
||||
import Mention from './mention.svelte';
|
||||
import Rating from './rating.svelte';
|
||||
import RatingVertical from './ratingvertical.svelte';
|
||||
import Useritem from './useritem.svelte';
|
||||
import { goto } from '$app/navigation';
|
||||
import { error } from '@sveltejs/kit';
|
||||
import { createEventDispatcher } from 'svelte';
|
||||
|
||||
/**
|
||||
* @type {import('$types/base').Post}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user