Skip to content

Commit

Permalink
fix(dashboard): use BIMDataCarousel from DS for dashboard lists
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Jun 8, 2022
1 parent 8ef1173 commit a22d89b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 182 deletions.
22 changes: 17 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@bimdata/bcf-components": "1.1.0-rc.13",
"@bimdata/design-system": "1.4.0-rc.13",
"@bimdata/design-system": "1.4.0-rc.15",
"@bimdata/guided-tour-components": "^0.0.2",
"@bimdata/typescript-fetch-api-client": "8.3.10",
"@bimdata/viewer": "^1.9.0-rc.114",
Expand Down
37 changes: 0 additions & 37 deletions src/components/generic/carousel-list/CarouselList.scss

This file was deleted.

131 changes: 0 additions & 131 deletions src/components/generic/carousel-list/CarouselList.vue

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</div>
<component
:class="isCarousel ? '' : 'dashboard-project-list__content'"
:is="isCarousel ? 'CarouselList' : 'div'"
:is="isCarousel ? 'BIMDataCarousel' : 'div'"
>
<ProjectCard
v-for="project in displayedProjects"
Expand All @@ -20,12 +20,10 @@
<script>
import { ref, watchEffect } from "vue";
// Components
import CarouselList from "@/components/generic/carousel-list/CarouselList";
import ProjectCard from "@/components/specific/projects/project-card/ProjectCard";
import ProjectCard from "@/components/specific/projects/project-card/ProjectCard.vue";
export default {
components: {
CarouselList,
ProjectCard
},
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</div>
<component
:class="isCarousel ? '' : 'dashboard-space-list__content'"
:is="isCarousel ? 'CarouselList' : 'div'"
:is="isCarousel ? 'BIMDataCarousel' : 'div'"
>
<SpaceCard
v-for="space in displayedSpaces"
Expand All @@ -21,12 +21,10 @@
<script>
import { ref, watchEffect } from "vue";
// Components
import CarouselList from "@/components/generic/carousel-list/CarouselList";
import SpaceCard from "@/components/specific/spaces/space-card/SpaceCard";
import SpaceCard from "@/components/specific/spaces/space-card/SpaceCard.vue";
export default {
components: {
CarouselList,
SpaceCard
},
props: {
Expand Down

0 comments on commit a22d89b

Please sign in to comment.