Merge branch 'main' into shuuji3/feat/emoji-reactions

# Conflicts:
#	app/components/status/StatusEmojiReaction.vue
#	shared/types/global.d.ts
This commit is contained in:
TAKAHASHI Shuuji 2025-05-20 23:27:44 +09:00
commit 8b0dca0a59
344 changed files with 1201 additions and 2933 deletions

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import type { mastodon } from 'masto'
import { toggleFollowAccount, useRelationship } from '~~/composables/masto/relationship'
import { toggleFollowAccount, useRelationship } from '~/composables/masto/relationship'
const { account, context, command, ...props } = defineProps<{
account: mastodon.v1.Account

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import type { mastodon } from 'masto'
import { toggleBlockAccount, toggleBlockDomain, toggleMuteAccount } from '~~/composables/masto/relationship'
import { toggleBlockAccount, toggleBlockDomain, toggleMuteAccount } from '~/composables/masto/relationship'
const { account } = defineProps<{
account: mastodon.v1.Account

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { CommonRouteTabOption } from '~/types'
import type { CommonRouteTabOption } from '#shared/types'
const { t } = useI18n()
const route = useRoute()

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { CommonRouteTabMoreOption, CommonRouteTabOption } from '~/types'
import type { CommonRouteTabMoreOption, CommonRouteTabOption } from '#shared/types'
const { options, command, preventScrollTop = false } = defineProps<{
options: CommonRouteTabOption[]

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { ConfirmDialogChoice, ConfirmDialogOptions } from '~/types'
import type { ConfirmDialogChoice, ConfirmDialogOptions } from '#shared/types'
const { extraOptionType } = defineProps<ConfirmDialogOptions>()

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import type { ConfirmDialogChoice } from '#shared/types'
import type { mastodon } from 'masto'
import type { ConfirmDialogChoice } from '~/types'
import {
isCommandPanelOpen,
isConfirmDialogOpen,

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { ErrorDialogData } from '~/types'
import type { ErrorDialogData } from '#shared/types'
defineProps<ErrorDialogData>()
</script>

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { GroupedNotifications } from '~/types'
import type { GroupedNotifications } from '#shared/types'
const { items } = defineProps<{
items: GroupedNotifications

View file

@ -1,5 +1,5 @@
<script setup lang="ts">
import type { GroupedLikeNotifications } from '~/types'
import type { GroupedLikeNotifications } from '#shared/types'
const { group } = defineProps<{
group: GroupedLikeNotifications

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
import type { GroupedAccountLike, NotificationSlot } from '#shared/types'
import type { mastodon } from 'masto'
import type { GroupedAccountLike, NotificationSlot } from '~/types'
// @ts-expect-error missing types
import { DynamicScrollerItem } from 'vue-virtual-scroller'

Some files were not shown because too many files have changed in this diff Show more