refactor: ♻️ Use new Versia branding everywhere

This commit is contained in:
Jesse Wierzbinski 2024-08-28 00:23:29 +02:00
parent b734d8ad67
commit cc54e95e92
No known key found for this signature in database
68 changed files with 147 additions and 154 deletions

View file

@ -44,7 +44,7 @@
<script lang="ts" setup>
import { Dialog } from "@ark-ui/vue";
import type { Attachment } from "@lysand-org/client/types";
import type { Attachment } from "@versia/client/types";
const lightbox = ref(false);
const attachment = ref<Attachment | null>(null);

View file

@ -39,7 +39,7 @@
<script lang="ts" setup>
import { Popover } from "@ark-ui/vue";
import type { Attachment } from "@lysand-org/client/types";
import type { Attachment } from "@versia/client/types";
const props = defineProps<{
attachment: Attachment;

View file

@ -68,7 +68,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import Avatar from "~/components/avatars/avatar.vue";
import Skeleton from "~/components/skeleton/Skeleton.vue";
import UserCard from "~/components/social-elements/users/UserCard.vue";

View file

@ -8,7 +8,7 @@
</template>
<script lang="ts" setup>
import type { Account } from "@lysand-org/client/types";
import type { Account } from "@versia/client/types";
defineProps<{
account: Account;

View file

@ -25,7 +25,7 @@
</template>
<script lang="ts" setup>
import type { Status } from "@lysand-org/client/types";
import type { Status } from "@versia/client/types";
import Skeleton from "~/components/skeleton/Skeleton.vue";
import Button from "~/packages/ui/components/buttons/button.vue";
import Attachment from "./attachment.vue";

View file

@ -147,7 +147,7 @@
<script lang="ts" setup>
import { Menu } from "@ark-ui/vue";
import { RolePermission, type Status } from "@lysand-org/client/types";
import { RolePermission, type Status } from "@versia/client/types";
import Avatar from "~/components/avatars/avatar.vue";
import ButtonDropdown from "~/components/buttons/button-dropdown.vue";
import AdaptiveDropdown from "~/components/dropdowns/AdaptiveDropdown.vue";