diff --git a/components/bsx/Gallery/Item/GalleryItem.vue b/components/bsx/Gallery/Item/GalleryItem.vue index f273807ac1..306db4f326 100644 --- a/components/bsx/Gallery/Item/GalleryItem.vue +++ b/components/bsx/Gallery/Item/GalleryItem.vue @@ -217,6 +217,8 @@ import { mapToId } from '@/utils/mappers' OfferList: () => import('@/components/bsx/Offer/OfferList.vue'), History: () => import('@/components/rmrk/Gallery/History.vue'), Navigation: () => import('@/components/rmrk/Gallery/Item/Navigation.vue'), + GalleryItemCarousel: () => + import('@/components/carousel/GalleryItemCarousel.vue'), }, directives: { orientation: Orientation, diff --git a/components/base/CarouselCardList.vue b/components/carousel/CarouselCardList.vue similarity index 98% rename from components/base/CarouselCardList.vue rename to components/carousel/CarouselCardList.vue index bf78cb057a..2b60ec8dd7 100644 --- a/components/base/CarouselCardList.vue +++ b/components/carousel/CarouselCardList.vue @@ -85,7 +85,7 @@ import { Component, Prop, mixins } from 'nuxt-property-decorator' import AuthMixin from '@/utils/mixins/authMixin' import PrefixMixin from '@/utils/mixins/prefixMixin' -import type { CarouselNFT } from './types' +import type { CarouselNFT } from '@/components/base/types' const components = { Money: () => import('@/components/shared/format/Money.vue'), diff --git a/components/rmrk/Gallery/GalleryItemCarousel.vue b/components/carousel/GalleryItemCarousel.vue similarity index 85% rename from components/rmrk/Gallery/GalleryItemCarousel.vue rename to components/carousel/GalleryItemCarousel.vue index 38809a0f8a..93a90b0b1c 100644 --- a/components/rmrk/Gallery/GalleryItemCarousel.vue +++ b/components/carousel/GalleryItemCarousel.vue @@ -1,6 +1,6 @@